@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f8fb;
  --paper: #ffffff;
  --paper-soft: #f0f3f7;
  --ink: #20252e;
  --heading: #242936;
  --muted: #6f7784;
  --line: #dfe4ec;
  --orange: #ff6a1a;
  --orange-soft: #fff1e9;
  --green: #18b969;
  --sky-soft: #edf7ff;
  --mint-soft: #effbf4;
  --lilac-soft: #f7f2ff;
  --warm-soft: #fff7f1;
  --shadow: 0 18px 60px rgba(24, 31, 44, 0.12);
  --font-text: "Nunito Sans", "Avenir Next", "SF Pro Text", "Segoe UI Variable", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Nunito Sans", "Avenir Next", "SF Pro Rounded", "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font: var(--font-text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(255, 247, 241, 0.82) 0%, rgba(247, 250, 255, 0.94) 36%, rgba(240, 251, 246, 0.86) 68%, rgba(247, 248, 251, 1) 100%);
  font-weight: 400;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px 34px;
  background: rgba(250, 252, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.hamburger,
.close-menu,
.dialog-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger {
  display: grid;
  gap: 9px;
  width: 42px;
  height: 42px;
  padding: 11px 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 34px;
  background: var(--ink);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Arial Rounded MT Bold", "Nunito Sans", "Avenir Next", var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  color: #24272f;
  transform: translateY(-1px);
}

.brand span,
.hero h1 {
  display: inline-block;
  font-family: "Arial Rounded MT Bold", "Nunito Sans", "Avenir Next", var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  color: #24272f;
}

.brand img {
  width: 42px;
  height: 42px;
  margin-left: 1px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.soft-button,
.solid-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 650;
  cursor: pointer;
}

.soft-button {
  background: var(--paper);
  color: #343841;
}

.soft-button:hover {
  border-color: #cfd6e2;
  background: #fafcff;
}

.solid-button {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 106, 26, 0.24);
}

.solid-button:hover {
  background: #f45f11;
}

.solid-button.large,
.ghost-link {
  min-height: 52px;
  padding: 0 22px;
}

.ghost-link {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
}

.play-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.side-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: min(420px, calc(100vw - 28px));
  height: 100vh;
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-104%);
  transition: transform 180ms ease;
}

.side-menu.open {
  transform: translateX(0);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  background: rgba(9, 12, 18, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.menu-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

.close-menu,
.dialog-close {
  width: 44px;
  height: 44px;
  position: relative;
}

.close-menu::before,
.close-menu::after,
.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 21px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.close-menu::before,
.dialog-close::before {
  transform: rotate(45deg);
}

.close-menu::after,
.dialog-close::after {
  transform: rotate(-45deg);
}

.menu-links {
  display: grid;
  gap: 20px;
  margin-top: 44px;
  font-size: 34px;
  line-height: 1.1;
}

.menu-social {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.12fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: 46px 6vw 38px;
  background:
    linear-gradient(135deg, rgba(255, 244, 236, 0.94) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(238, 248, 255, 0.82) 66%, rgba(240, 251, 246, 0.84) 100%),
    linear-gradient(28deg, rgba(255, 106, 26, 0.1) 0%, transparent 38%, rgba(91, 166, 255, 0.08) 74%, transparent 100%);
}

.hero-copy {
  transform: translateX(clamp(18px, 2.2vw, 34px));
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 106, 26, 0.9);
  font-size: 13px;
  font-weight: 620;
  text-transform: none;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(108px, 12vw, 188px);
  line-height: 0.82;
}

.hero-kicker {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 680;
}

.hero-lede {
  max-width: 630px;
  margin: 28px 0 0;
  color: #24272f;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 520;
  line-height: 1.18;
}

.hero-actions {
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 0;
  width: min(100%, 860px);
  max-height: 650px;
  justify-self: end;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  pointer-events: none;
  user-select: none;
  background: #fff;
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 140ms ease;
}

.hero-video-buffer {
  opacity: 0;
}

.stage-panel {
  position: absolute;
  display: grid;
  gap: 3px;
  width: min(218px, calc(100% - 36px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(20, 28, 40, 0.12);
  backdrop-filter: blur(14px);
}

.hero-todo-toggle {
  position: relative;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 32px 11px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-todo-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hero-todo-toggle::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(40, 45, 52, 0.48);
  border-bottom: 2px solid rgba(40, 45, 52, 0.48);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.hero-todo-toggle[aria-expanded="true"]::after {
  transform: translateY(4px) rotate(225deg);
}

.stage-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-todo-toggle strong {
  font-size: 15px;
  line-height: 1.15;
}

.stage-panel-top {
  top: 18px;
  right: 18px;
}

.hero-progress {
  display: block;
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.14);
}

.hero-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.hero-todo-popover {
  width: 100%;
  padding: 3px 16px 15px;
  border-top: 1px solid rgba(223, 228, 236, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.32));
}

.hero-todo-popover[hidden] {
  display: none;
}

.todo-popover-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(223, 228, 236, 0.9);
}

.todo-popover-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.todo-popover-head strong {
  font-size: 20px;
}

.hero-task-list {
  display: grid;
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.hero-task-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #363c46;
  font-weight: 750;
  font-size: 13px;
}

.hero-task-list li span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid #ccd4df;
  border-radius: 50%;
  background: #fff;
}

.hero-task-list li.done {
  color: #737983;
  text-decoration: line-through;
}

.hero-task-list li.done span {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 4px #fff;
}

.pillar-tabs {
  padding: 58px 6vw 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 243, 234, 0.98) 0%, rgba(255, 255, 255, 0.84) 35%, rgba(238, 248, 255, 0.92) 68%, rgba(239, 251, 244, 0.96) 100%),
    linear-gradient(70deg, rgba(255, 106, 26, 0.08), transparent 34%, rgba(99, 179, 237, 0.07) 70%, rgba(24, 185, 105, 0.06));
}

.pillar-heading {
  max-width: 1240px;
  margin: 0 auto 22px;
  text-align: left;
}

.pillar-heading h2 {
  max-width: 980px;
  font-size: clamp(31px, 3.5vw, 44px);
}

.pillar-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pillar-tab-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto 24px;
  padding: 7px;
  border: 1px solid rgba(255, 106, 26, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 34px rgba(24, 31, 44, 0.06);
}

.pillar-tab {
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #5c636e;
  font-weight: 850;
  font-size: clamp(17px, 1.5vw, 22px);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pillar-tab:hover {
  background: rgba(255, 255, 255, 0.76);
}

.pillar-tab.active {
  background: linear-gradient(135deg, #fff, #fff4ec);
  color: var(--orange);
  box-shadow: 0 12px 30px rgba(255, 106, 26, 0.13);
}

.pillar-slider {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.pillar-panel {
  display: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 34px;
  align-items: stretch;
  max-width: none;
  height: 720px;
  margin: 0;
  padding: 42px;
  border: 1px solid rgba(255, 106, 26, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 249, 244, 0.9) 38%, rgba(241, 249, 255, 0.9) 72%, rgba(245, 252, 248, 0.9) 100%);
  box-shadow: 0 26px 76px rgba(24, 31, 44, 0.11);
}

.pillar-panel.active {
  display: grid;
}
.pillar-slide-controls {
  position: absolute;
  inset: 0 -58px;
  z-index: 4;
  pointer-events: none;
}

.pillar-slide-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 26, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(36, 41, 54, 0.68);
  box-shadow: 0 14px 36px rgba(24, 31, 44, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pillar-slide-arrow:hover {
  border-color: rgba(255, 106, 26, 0.28);
  background: rgba(255, 255, 255, 0.86);
  color: var(--orange);
  box-shadow: 0 18px 42px rgba(255, 106, 26, 0.1);
  transform: translateY(-50%) translateX(var(--slide-arrow-nudge, 0));
}

.pillar-slide-arrow[hidden] {
  display: none;
}

.pillar-slide-arrow span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.95;
}

.pillar-slide-prev {
  left: 0;
  --slide-arrow-nudge: -2px;
}

.pillar-slide-prev span {
  transform: rotate(-135deg);
}

.pillar-slide-next {
  right: 0;
  --slide-arrow-nudge: 2px;
}

.pillar-slide-next span {
  transform: rotate(45deg);
}

.pillar-copy {
  display: grid;
  align-content: center;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.pillar-copy .index {
  margin-bottom: 30px;
}

.pillar-copy h2 {
  max-width: 680px;
  font-size: clamp(31px, 3.4vw, 44px);
  line-height: 1.08;
}

.pillar-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.pillar-visual {
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 241, 0.76) 44%, rgba(244, 251, 255, 0.86)),
    #fff;
  overflow: hidden;
}

.plan-visual {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  padding: 24px;
}

.plan-visual span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  color: #2a3039;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(24, 31, 44, 0.08);
}

.plan-visual i {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

.focus-visual {
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 106, 26, 0.18), transparent 34%),
    #fff;
}

.focus-visual strong {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 13px solid rgba(255, 106, 26, 0.22);
  border-radius: 50%;
  background: #fff;
  font-size: 54px;
  line-height: 1;
}

.focus-visual span,
.focus-visual em,
.reminder-visual span,
.reminder-visual em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.grow-visual {
  grid-template-columns: repeat(5, minmax(28px, 1fr));
  align-items: end;
  gap: 14px;
  padding: 34px;
}

.grow-visual div {
  width: 100%;
  min-height: 34px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #5aa6ff, var(--orange));
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.12);
}

.reminder-visual {
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 30px;
  background:
    linear-gradient(145deg, #fff, #fff7f2),
    #fff;
}

.reminder-visual span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
}

.reminder-visual strong {
  font-size: 24px;
}

.care-visual {
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 106, 26, 0.16), transparent 32%),
    #fff;
}

.care-visual img {
  width: 138px;
  height: 138px;
  object-fit: contain;
}

.care-visual span {
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  color: #2a3039;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(24, 31, 44, 0.08);
}

.feature-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #363d47;
  font-weight: 700;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px var(--orange-soft);
}

.plan-board {
  place-items: stretch;
  align-content: center;
  gap: 16px;
  padding: 30px;
}

.plan-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 31, 44, 0.08);
}

.plan-card.main {
  background: linear-gradient(135deg, #fff, #fff4ed);
  border-color: rgba(255, 106, 26, 0.22);
}

.plan-card span,
.focus-context span,
.focus-mini-card span,
.focus-playlist-card span,
.focus-lock-card span,
.focus-result-card span,
.reminder-mode-copy span,
.phone-alert-card span,
.message-bubble-preview span,
.call-sheet span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-card strong {
  color: #242a33;
  font-size: 22px;
}

.focus-dashboard {
  place-items: center;
  align-content: center;
  padding: 30px;
  background:
    linear-gradient(145deg, #fff9f4 0%, #f8fbff 54%, #f3fbf6 100%);
}

.focus-interface-showcase {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: center;
  justify-items: center;
  padding: 0;
  background: transparent;
}

.focus-interface-showcase .focus-window {
  display: none;
}

.interface-frame {
  width: min(100%, 760px);
  margin: 0;
  border: 1px solid rgba(30, 36, 46, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 31, 44, 0.16);
}

.interface-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.interface-frame figcaption {
  display: grid;
  gap: 4px;
  padding: 15px 18px 17px;
  background: rgba(255, 255, 255, 0.92);
}

.interface-frame figcaption span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.interface-frame figcaption strong {
  color: #252b34;
  font-size: 16px;
  line-height: 1.35;
}

.interface-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin-top: 14px;
}

.interface-note-grid span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 106, 26, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #414954;
  font-size: 12.5px;
  font-weight: 850;
}

#pillar-plan,
#pillar-focus {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  gap: clamp(32px, 4vw, 48px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#pillar-plan .pillar-copy,
#pillar-focus .pillar-copy {
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.44fr);
  gap: clamp(22px, 3.2vw, 42px);
  align-content: end;
  align-items: end;
  overflow: visible;
  padding-right: 0;
}

#pillar-plan .pillar-copy .index,
#pillar-focus .pillar-copy .index {
  grid-column: 1;
  margin-bottom: 4px;
}

#pillar-plan .pillar-copy h2,
#pillar-plan .pillar-copy p,
#pillar-focus .pillar-copy h2,
#pillar-focus .pillar-copy p {
  grid-column: 1;
}

#pillar-plan .pillar-copy h2,
#pillar-focus .pillar-copy h2 {
  max-width: 620px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  font-weight: 720;
}

#pillar-plan .pillar-copy p,
#pillar-focus .pillar-copy p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 460px;
  margin: 0;
  color: #4c5562;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
}

#pillar-plan .plan-interface-showcase,
#pillar-focus .focus-interface-showcase {
  width: 100%;
  display: grid;
  place-items: stretch;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

#pillar-plan .plan-direct-preview,
#pillar-focus .focus-direct-preview {
  display: block;
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 78px rgba(24, 31, 44, 0.16);
}

#pillar-plan .plan-session-caption,
#pillar-focus .focus-session-caption {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 0 4px;
}

#pillar-plan .plan-session-caption p,
#pillar-focus .focus-session-caption p {
  max-width: 660px;
  margin: 0;
  color: #596170;
  font-size: clamp(15px, 1.08vw, 16px);
  line-height: 1.7;
}

#pillar-plan .plan-session-points,
#pillar-focus .focus-session-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 360px;
  margin-top: 28px;
}

#pillar-plan .plan-session-points span,
#pillar-focus .focus-session-points span {
  border: 1px solid rgba(30, 36, 46, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.66);
  color: #2f3641;
  font-size: 12.5px;
  font-weight: 850;
}

.focus-window {
  width: min(680px, 100%);
  border: 1px solid rgba(30, 36, 46, 0.1);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(24, 31, 44, 0.14);
}

.focus-window-top {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(30, 36, 46, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9dde3;
}

.window-dots span:first-child {
  background: #ff6a1a;
}

.focus-window-top strong {
  justify-self: center;
  color: #242a33;
  font-size: 15px;
  letter-spacing: 0;
}

.focus-window-top small {
  justify-self: end;
  color: #1f8f51;
  font-size: 12px;
  font-weight: 850;
}

.focus-window-body {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(190px, 0.72fr);
  gap: 16px;
  padding: 20px;
}

.focus-timer-card,
.focus-mini-card,
.focus-playlist-card,
.focus-lock-card,
.focus-result-card {
  border: 1px solid rgba(30, 36, 46, 0.08);
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 31, 44, 0.07);
}

.focus-timer-card {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 392px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 246, 239, 0.72), rgba(255, 255, 255, 0.94)),
    #fff;
}

.focus-ring {
  display: grid;
  place-items: center;
  width: min(210px, 78%);
  aspect-ratio: 1;
  border: 14px solid rgba(255, 106, 26, 0.22);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 48px rgba(255, 106, 26, 0.14);
}

.focus-ring strong {
  font-size: clamp(54px, 6vw, 76px);
  line-height: 0.9;
}

.focus-ring span {
  color: var(--muted);
  font-weight: 850;
}

.focus-context {
  max-width: 330px;
  text-align: center;
}

.focus-context strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.focus-context p {
  margin: 10px 0 0;
  color: var(--muted);
}

.focus-start-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.focus-start-row button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: #ff6a1a;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.focus-start-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.focus-side-stack {
  display: grid;
  gap: 12px;
  align-content: stretch;
}

.focus-mini-card,
.focus-playlist-card,
.focus-lock-card,
.focus-result-card {
  display: grid;
  gap: 8px;
  border-radius: 18px;
  padding: 18px;
}

.focus-mini-card {
  min-height: 112px;
  background: linear-gradient(135deg, #fff, #fff5ef);
}

.focus-mini-card strong,
.focus-lock-card strong,
.focus-result-card strong,
.focus-playlist-card strong {
  color: #242a33;
  line-height: 1.25;
}

.focus-playlist-card {
  grid-template-columns: 54px 1fr;
  align-items: center;
}

.focus-playlist-card i {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.95), rgba(255, 192, 120, 0.85)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.6), transparent 34%);
  box-shadow: inset 0 -10px 18px rgba(104, 42, 8, 0.12);
}

.focus-lock-card {
  background: #f8fafc;
}

.focus-result-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.grow-dashboard {
  place-items: stretch;
  padding: 30px;
  background:
    linear-gradient(145deg, #fff8f2 0%, #f7fbff 46%, #effaf4 100%);
}

.grow-dashboard .analytics-board {
  align-self: center;
  box-shadow: 0 18px 48px rgba(24, 31, 44, 0.1);
}

.reminder-showcase {
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, #fff7f1 0%, #fff 42%, #f3fbff 100%),
    #fff;
}

.reminder-slide-stage {
  position: relative;
  min-height: 424px;
  overflow: hidden;
  border: 1px solid rgba(30, 36, 46, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 106, 26, 0.16), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(88, 165, 255, 0.13), transparent 34%),
    #fff;
}

.reminder-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.reminder-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.reminder-mode-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.phone-preview {
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(260px, 82%);
  min-height: 268px;
  padding: 18px;
  border: 10px solid #242a33;
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: 0 22px 54px rgba(24, 31, 44, 0.18);
}

.phone-topline {
  width: 46%;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #d9dde3;
}

.phone-alert-card,
.message-bubble-preview,
.call-sheet {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(30, 36, 46, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 31, 44, 0.08);
}

.phone-alert-card strong,
.message-bubble-preview strong,
.call-sheet strong {
  color: #242a33;
  font-size: 18px;
}

.phone-alert-card p,
.message-bubble-preview p,
.reminder-mode-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.phone-list-row {
  height: 16px;
  border-radius: 999px;
  background: #e8edf3;
}

.phone-list-row.done {
  width: 68%;
  background: rgba(34, 197, 94, 0.22);
}

.message-preview {
  place-items: center start;
  padding: 28px;
}

.message-thread-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: end;
  gap: 12px;
  width: min(360px, 100%);
}

.mini-avatar,
.call-avatar {
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 42%, #ff9b28 0 44%, #ff6a1a 45% 72%, transparent 73%),
    #fff;
  box-shadow: inset 0 -10px 18px rgba(113, 45, 7, 0.12), 0 12px 24px rgba(24, 31, 44, 0.12);
}

.mini-avatar {
  width: 58px;
  height: 58px;
}

.message-bubble-preview {
  border-color: rgba(255, 106, 26, 0.18);
  background: #fff8f3;
}

.call-preview {
  gap: 20px;
}

.call-ring {
  display: grid;
  place-items: center;
  width: 178px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.12) 0 44%, rgba(255, 106, 26, 0.08) 45% 62%, transparent 63%);
  box-shadow: 0 0 0 16px rgba(255, 106, 26, 0.08), 0 0 0 36px rgba(255, 106, 26, 0.045);
}

.call-avatar {
  width: 112px;
  height: 112px;
  border: 6px solid #fff;
}

.call-sheet {
  width: min(340px, 100%);
  text-align: center;
}

.accountability-preview {
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.accountability-node {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(30, 36, 46, 0.08);
  border-radius: 20px;
  color: #242a33;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 31, 44, 0.08);
  font-weight: 850;
  text-align: center;
}

.uni-node {
  border-color: rgba(255, 106, 26, 0.22);
  background: #fff6ef;
}

.person-node {
  border-color: rgba(34, 197, 94, 0.22);
  background: #f5fff8;
}

.accountability-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.2), rgba(255, 106, 26, 0.65));
}

.accountability-line.second {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.55));
}

.reminder-mode-copy {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.reminder-mode-copy strong {
  color: #242a33;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.reminder-slide-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reminder-slide-controls button {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(30, 36, 46, 0.08);
  border-radius: 16px;
  color: #59616f;
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.reminder-slide-controls button span {
  color: #9aa3af;
  font-size: 12px;
}

.reminder-slide-controls button.active {
  color: #ff6a1a;
  border-color: rgba(255, 106, 26, 0.24);
  background: #fff;
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.1);
}

.reminder-slide-controls button.active span {
  color: #ff6a1a;
}

.care-panel {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  padding: 42px 0 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.care-panel .companion-visual {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: auto;
}

.care-panel .companion-visual::before,
.care-panel .skin-fan::before {
  content: none;
}

.care-panel .companion-visual::after {
  content: "";
  position: absolute;
  inset: 6% 4%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 33%, rgba(255, 197, 73, 0.34) 0 8px, transparent 9px),
    radial-gradient(circle at 23% 18%, rgba(255, 106, 26, 0.2) 0 12px, transparent 13px),
    radial-gradient(circle at 78% 20%, rgba(91, 166, 255, 0.24) 0 11px, transparent 12px),
    radial-gradient(circle at 86% 39%, rgba(24, 185, 105, 0.2) 0 9px, transparent 10px),
    radial-gradient(circle at 13% 70%, rgba(255, 106, 26, 0.13) 0 18px, transparent 19px),
    radial-gradient(circle at 84% 72%, rgba(255, 197, 73, 0.18) 0 17px, transparent 18px);
}

.care-panel .skin-fan {
  z-index: 1;
}

.care-panel .skin-fan::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 62px;
  z-index: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 184, 54, 0.72);
  box-shadow:
    54px -26px 0 -1px rgba(255, 106, 26, 0.54),
    112px -42px 0 -2px rgba(255, 210, 96, 0.62),
    360px -34px 0 -1px rgba(91, 166, 255, 0.48),
    432px 0 0 -1px rgba(24, 185, 105, 0.5),
    456px 94px 0 -2px rgba(255, 197, 73, 0.58),
    20px 180px 0 -2px rgba(91, 166, 255, 0.42);
}

.care-panel .skin-card img {
  filter: none;
}

.care-panel .companion-copy {
  align-self: center;
}

.care-panel .companion-copy .index {
  margin-bottom: 28px;
}

.section {
  padding: 92px 6vw;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.problem .section-heading {
  max-width: 1040px;
}

.section-heading.compact {
  max-width: 720px;
}

.problem {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 248, 255, 0.72) 45%, rgba(240, 251, 246, 0.8) 100%),
    linear-gradient(36deg, rgba(255, 106, 26, 0.055), transparent 48%, rgba(91, 166, 255, 0.055));
  border-bottom: 1px solid rgba(223, 228, 236, 0.9);
}



h2 {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
}

.section-heading p,
.definition p,
.split-section p,
.early-copy p {
  color: var(--muted);
  font-size: 18px;
}

.problem-grid,
.progress-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(199, 214, 230, 0.66);
  border: 1px solid rgba(210, 220, 232, 0.92);
}

.problem-grid article,
.progress-list article {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.problem-grid p,
.progress-list p,
.workflow-card p,
.workspace-main p,
.workspace-uni p {
  color: var(--muted);
}

.index {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
}

.definition {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  padding: 88px 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 255, 0.72) 58%, rgba(255, 247, 241, 0.86));
}

.definition p {
  margin: 0;
  align-self: end;
}

.workflow {
  display: grid;
  gap: 16px;
}

.workflow-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mock {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  overflow: hidden;
}

.chat-mock {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.bubble {
  width: fit-content;
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(24, 31, 44, 0.08);
}

.bubble.user {
  justify-self: end;
  background: var(--orange);
  color: #fff;
}

.focus-mock,
.grow-mock {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.timer {
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 14px solid rgba(255, 106, 26, 0.24);
  background: var(--paper);
}

.timer strong {
  font-size: 54px;
  line-height: 0.9;
}

.timer span {
  color: var(--muted);
  font-weight: 800;
}

.grow-mock img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.mini-analytics-card {
  width: min(280px, 92%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(24, 31, 44, 0.1);
  text-align: left;
}

.mini-analytics-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mini-analytics-card strong {
  display: block;
  margin-top: 6px;
  font-size: 42px;
  line-height: 1;
}

.mini-bars {
  height: 90px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
}

.mini-bars i {
  flex: 1;
  min-height: 18px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--orange), #ffb285);
}

.status-lines {
  width: min(220px, 80%);
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.status-lines span {
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}

.workflow-copy {
  max-width: 620px;
}

.companion-section {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 239, 0.86) 38%, rgba(238, 248, 255, 0.88) 72%, rgba(239, 251, 244, 0.9) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.companion-grid,
.consistency-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.companion-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 52% 58%, rgba(255, 106, 26, 0.14), transparent 42%),
    #fff;
  overflow: hidden;
}

.companion-visual::before {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255, 106, 26, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.skin-fan {
  position: relative;
  width: min(100%, 540px);
  height: 520px;
  max-height: 100%;
  display: block;
}

.skin-fan::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 31, 44, 0.16), transparent 68%);
  filter: blur(4px);
  z-index: 0;
}

.skin-card {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform-origin: 50% 92%;
  will-change: transform;
}

.skin-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(24, 31, 44, 0.2));
}

.skin-card-main {
  left: 50%;
  bottom: 18px;
  width: 52%;
  height: 88%;
  z-index: 3;
  transform: translateX(-50%) rotate(-1.5deg);
}

.skin-card-left {
  left: 9%;
  bottom: 58px;
  width: 40%;
  height: 66%;
  z-index: 2;
  opacity: 0.98;
  transform: rotate(-11deg);
}

.skin-card-right {
  right: 9%;
  bottom: 48px;
  width: 40%;
  height: 71%;
  z-index: 1;
  opacity: 0.98;
  transform: rotate(11deg);
}

@media (max-width: 1100px) {
  .skin-fan {
    height: 470px;
    max-height: 100%;
  }

  .skin-card-main {
    width: 54%;
    height: 86%;
  }

  .skin-card-left {
    left: 7%;
    bottom: 52px;
    width: 40%;
    height: 64%;
  }

  .skin-card-right {
    right: 7%;
    bottom: 44px;
    width: 40%;
    height: 69%;
  }
}

@media (max-width: 760px) {
  .care-panel .companion-visual {
    min-height: 390px;
  }

  .skin-fan {
    width: min(100%, 350px);
    height: 350px;
    max-height: none;
  }

  .skin-card-main {
    bottom: 14px;
    width: 53%;
    height: 86%;
  }

  .skin-card-left {
    left: 7%;
    bottom: 44px;
    width: 38%;
    height: 59%;
    transform: rotate(-10deg);
  }

  .skin-card-right {
    right: 8%;
    bottom: 40px;
    width: 38%;
    height: 64%;
    transform: rotate(10deg);
  }
}

.companion-copy,
.consistency-copy {
  max-width: 680px;
}

.companion-copy p,
.consistency-copy p {
  color: var(--muted);
  font-size: 19px;
}

.companion-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.companion-points span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #3b414b;
  font-weight: 800;
}

.consistency-section {
  background:
    linear-gradient(155deg, rgba(247, 252, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(240, 251, 246, 0.88) 100%);
  border-bottom: 1px solid var(--line);
}

.analytics-board {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fbfcfe;
  box-shadow: var(--shadow);
}

.analytics-header {
  display: grid;
  gap: 4px;
}

.analytics-header span,
.metric-card span,
.task-progress-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.analytics-header strong {
  font-size: clamp(22px, 2vw, 26px);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
}

.task-progress-row {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: #e9edf4;
  overflow: hidden;
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.product-preview {
  padding: 36px 6vw 96px;
}

.browser-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(240, 243, 247, 0.78);
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-top span:nth-child(1) {
  background: #ff5f57;
}

.browser-top span:nth-child(2) {
  background: #ffbd2e;
}

.browser-top span:nth-child(3) {
  background: #28c840;
}

.browser-top strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 290px;
  min-height: 440px;
}

.workspace-grid aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #fbfcfe;
}

.workspace-grid aside button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--muted);
}

.workspace-grid aside button:first-child {
  color: var(--orange);
  background: var(--orange-soft);
}

.workspace-main {
  padding: 42px;
}

.workspace-main h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.task-line {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.task-line span {
  color: var(--muted);
}

.workspace-uni {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 28px;
  border-left: 1px solid var(--line);
  background: var(--paper-soft);
  text-align: center;
}

.workspace-uni img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.progress-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 248, 243, 0.94), rgba(239, 248, 255, 0.82) 52%, rgba(247, 242, 255, 0.78));
}

.split-section article {
  min-height: 460px;
  display: grid;
  align-content: center;
  padding: 72px 6vw;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.split-section article:last-child {
  border-right: 0;
}

.qa-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.92fr);
  align-items: start;
  gap: clamp(38px, 7vw, 112px);
  padding: clamp(78px, 9vw, 124px) 7vw;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 248, 255, 0.9) 40%, rgba(240, 251, 246, 0.86) 100%),
    linear-gradient(65deg, rgba(255, 106, 26, 0.055), transparent 42%, rgba(125, 92, 255, 0.045));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.qa-heading {
  position: sticky;
  top: 116px;
  max-width: 430px;
  margin: 0;
}

.qa-heading h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.qa-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.qa-list {
  display: grid;
  gap: 0;
  max-width: none;
  border-top: 1px solid rgba(24, 31, 44, 0.1);
}

.qa-item {
  border: 0;
  border-bottom: 1px solid rgba(24, 31, 44, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.qa-item summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 18px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.1);
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.qa-item summary strong {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.32;
  font-weight: 650;
}

.qa-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(24, 31, 44, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.qa-item[open] summary::after {
  content: "-";
  color: var(--orange);
  border-color: rgba(255, 106, 26, 0.25);
  background: rgba(255, 106, 26, 0.1);
}

.qa-answer {
  padding: 0 54px 28px 62px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.68;
}

.qa-answer p {
  max-width: 820px;
  margin: 0 0 10px;
}

.qa-answer p:last-child {
  margin-bottom: 0;
}

.early-access {
  padding: clamp(52px, 6.4vw, 82px) 6vw clamp(82px, 9vw, 124px);
  border-bottom: 1px solid rgba(223, 228, 236, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 244, 236, 0.98) 0%, rgba(255, 255, 255, 0.82) 43%, rgba(238, 248, 255, 0.86) 100%),
    linear-gradient(40deg, rgba(255, 106, 26, 0.1), transparent 54%, rgba(24, 185, 105, 0.06));
  overflow-x: clip;
}

.early-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.early-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.early-copy p {
  max-width: 680px;
  margin: 0;
}

.early-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.early-request-button {
  width: fit-content;
}

.early-inline-link {
  min-height: 52px;
  padding: 0 12px;
}

.early-uni-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.early-uni-visual::after {
  content: none;
}

.early-uni-orbit {
  display: none;
}

.early-uni-visual img {
  position: relative;
  z-index: 1;
  width: min(122%, 620px);
  max-height: 600px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.early-research-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: clamp(24px, 3.6vw, 42px) auto 0;
  padding-top: 24px;
}

.research-rail {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.45), rgba(91, 166, 255, 0.22), rgba(24, 185, 105, 0.32));
}

.research-card {
  position: relative;
  isolation: isolate;
  min-height: 306px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 12px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(208, 219, 232, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 255, 0.64)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(24, 31, 44, 0.05);
  backdrop-filter: blur(12px);
}

.research-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 44%);
}

.research-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 22px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.2);
}

.research-card > * {
  position: relative;
  z-index: 1;
}

.research-card-primary {
  border-color: rgba(255, 106, 26, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 243, 0.68)),
    radial-gradient(circle at 92% 8%, rgba(255, 106, 26, 0.08), transparent 32%);
}

.flow-step {
  color: var(--orange);
  font-size: 12px;
  font-weight: 680;
}

.research-card h3 {
  max-width: 100%;
  color: #2f3745;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 560;
  line-height: 1.3;
}

.research-card p {
  max-width: 100%;
  margin: 0;
  color: #657184;
  font-size: 15px;
  line-height: 1.64;
}

.pattern-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin-top: 8px;
}

.pattern-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 106, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #4c5663;
  font-size: 12px;
  font-weight: 620;
}

#early-access,
#research,
#problem {
  scroll-margin-top: 112px;
}

.beta-dialog {
  width: min(860px, calc(100vw - 36px));
  max-height: min(860px, calc(100vh - 36px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--ink);
}

.beta-dialog::backdrop {
  background: rgba(19, 24, 32, 0.34);
  backdrop-filter: blur(8px);
}

.beta-form-modal {
  gap: 14px;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(18, 24, 33, 0.22);
}

.beta-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 6px;
}

.beta-dialog-header .eyebrow {
  margin-bottom: 8px;
}

.beta-dialog-header h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.beta-dialog-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.beta-dialog-close:hover {
  border-color: rgba(255, 111, 32, 0.28);
  color: var(--orange);
}

.beta-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(24, 31, 44, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(168px, 0.62fr);
  gap: 12px;
  align-items: end;
}

.form-submit-row .solid-button {
  min-height: 46px;
  align-self: end;
}

.beta-form label {
  display: grid;
  gap: 7px;
  color: #39404a;
  font-weight: 800;
  font-size: 13px;
}

.beta-form input,
.beta-form select,
.beta-form textarea {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 0 12px;
  color: var(--ink);
}

.conditional-field.hidden {
  display: none;
}

.beta-form textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
}

.interest-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 111, 32, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 111, 32, 0.06), rgba(255, 255, 255, 0.88));
  overflow: hidden;
}

.interest-group-heading {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #39404a;
  font-size: 13px;
  font-weight: 850;
}

.interest-group-heading strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 12px;
}

.interest-options label {
  min-height: 38px;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 27, 35, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #343a44;
  font-size: 12px;
  font-weight: 700;
}

.interest-options input {
  width: 15px;
  min-height: 15px;
  height: 15px;
  accent-color: var(--orange);
  flex: 0 0 auto;
}

.interest-group > .conditional-field {
  margin: 0 14px 14px;
  width: calc(100% - 28px);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 247, 241, 0.84), rgba(238, 248, 255, 0.72) 56%, rgba(240, 251, 246, 0.78));
}

.community-links a {
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  align-content: center;
  gap: 3px 13px;
  padding: 14px 22px;
  border-right: 1px solid rgba(210, 220, 232, 0.78);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.community-links a:last-child {
  border-right: 0;
}

.community-links a:hover {
  background: var(--orange-soft);
}

.community-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  justify-self: start;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 9px 22px rgba(24, 31, 44, 0.07);
}

.community-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.community-icon img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.uni-card-icon {
  border-color: rgba(255, 106, 26, 0.18);
  background: rgba(255, 106, 26, 0.08);
}

.discord-icon {
  color: #5865f2;
  border-color: rgba(88, 101, 242, 0.16);
  background: rgba(88, 101, 242, 0.08);
}

.survey-icon {
  color: #ff6a1a;
  border-color: rgba(255, 106, 26, 0.18);
  background: rgba(255, 106, 26, 0.08);
}

.interview-icon {
  color: #111216;
  border-color: rgba(17, 18, 22, 0.12);
  background: rgba(17, 18, 22, 0.045);
}

.interview-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.community-label {
  grid-column: 2;
  grid-row: 1;
  color: var(--orange);
  font-weight: 620;
  font-size: 11px;
  text-transform: uppercase;
}

.community-links strong {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  display: block;
  max-width: none;
  margin-top: 0;
  font-size: clamp(14px, 1.04vw, 16px);
  line-height: 1.22;
}

.contact-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(560px, 52vw, 680px);
  padding: 88px clamp(22px, 3.2vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 240, 0.72) 38%, rgba(239, 248, 255, 0.82) 72%, rgba(240, 251, 246, 0.72) 100%);
  overflow: visible;
}

.contact-note-stack {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  width: 100%;
  max-width: 1680px;
  padding: clamp(40px, 5.4vw, 78px);
  border: 1px solid rgba(223, 228, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(24, 31, 44, 0.08);
  backdrop-filter: blur(14px);
}

.contact-copy {
  max-width: 520px;
}

.contact-copy h2 {
  max-width: 10ch;
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: #536071;
  font-size: 17px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(223, 228, 236, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(24, 31, 44, 0.06);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #39404a;
  font-size: 13px;
  font-weight: 680;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 0 13px;
}

.contact-form input {
  min-height: 46px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 106, 26, 0.26);
  border-color: rgba(255, 106, 26, 0.48);
}

.contact-form .solid-button {
  min-height: 48px;
  margin-top: 2px;
}

.netlify-hidden {
  display: none;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 6vw 36px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-size: 24px;
}

.footer-brand-block {
  display: grid;
  gap: 10px;
}

.footer-brand-block p {
  margin: 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 18, 22, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #20242b;
  box-shadow: 0 10px 24px rgba(24, 31, 44, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 26, 0.32);
  background: var(--orange-soft);
  color: var(--orange);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
  stroke: none;
}

.footer-socials a:nth-child(2) svg,
.footer-socials a:nth-child(4) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:nth-child(4) path {
  fill: currentColor;
  stroke: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.demo-dialog {
  width: min(920px, calc(100vw - 36px));
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #0f1115;
  box-shadow: var(--shadow);
}

.demo-dialog::backdrop {
  background: rgba(8, 12, 20, 0.48);
}

.demo-dialog video {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.site-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.site-chat-launcher {
  position: relative;
  width: 78px;
  height: 78px;
  padding: 0;
  border: 1px solid rgba(255, 116, 32, 0.2);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(255, 106, 36, 0.2), 0 14px 34px rgba(22, 26, 35, 0.16);
  cursor: pointer;
  pointer-events: auto;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(255, 106, 36, 0.25), 0 16px 38px rgba(22, 26, 35, 0.18);
}

.site-chat-launcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-chat-launcher-dot {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #20c96f;
  box-shadow: 0 0 0 6px rgba(32, 201, 111, 0.13);
}

.site-chat-panel {
  position: absolute;
  right: 0;
  bottom: 92px;
  width: min(390px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 130px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(223, 226, 232, 0.92);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(18, 24, 34, 0.22);
  pointer-events: auto;
}

.site-chat-panel[hidden] {
  display: none;
}

.site-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(229, 232, 237, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 253, 0.94));
}

.site-chat-identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.site-chat-identity img {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.site-chat-identity strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}

.site-chat-identity span {
  display: block;
  max-width: 240px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-chat-close {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(219, 223, 230, 0.9);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.site-chat-close::before,
.site-chat-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-chat-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, #fbfcfd 0%, #fff 100%);
}

.site-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.site-chat-row img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.site-chat-row p {
  max-width: 78%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.site-chat-row.uni p {
  border: 1px solid rgba(232, 235, 240, 0.95);
  border-bottom-left-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 28, 38, 0.06);
}

.site-chat-row.user {
  justify-content: flex-end;
}

.site-chat-row.user p {
  border-bottom-right-radius: 6px;
  background: linear-gradient(180deg, #ff8233, #ff6420);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 98, 32, 0.2);
}

.site-chat-row.typing p {
  color: var(--muted);
  font-size: 13px;
}

.site-chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 9px;
  padding: 13px;
  border-top: 1px solid rgba(229, 232, 237, 0.9);
  background: rgba(255, 255, 255, 0.98);
}

.site-chat-composer input {
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(218, 223, 231, 0.95);
  border-radius: 15px;
  padding: 0 13px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.site-chat-composer input:focus {
  border-color: rgba(255, 106, 36, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 106, 36, 0.1);
}

.site-chat-composer button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #ff8233, #ff6420);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255, 98, 32, 0.18);
}

.site-chat-composer svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .site-chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .site-chat-launcher {
    width: 68px;
    height: 68px;
    border-radius: 24px;
  }

  .site-chat-panel {
    right: 0;
    bottom: 82px;
    width: calc(100vw - 28px);
    height: min(540px, calc(100vh - 108px));
    border-radius: 22px;
  }

  .site-chat-identity span {
    max-width: 190px;
  }

  .site-chat-row p {
    max-width: 82%;
  }
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 112px;
  z-index: 80;
  max-width: 320px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Typography polish: softer weights and more readable rhythm. */
.hero h1,
h2,
h3,
.pillar-heading h2,
.pillar-copy h2,
.reminder-mode-copy strong,
.community-copy strong,
.definition h2,
.split-section h2,
.early-copy h2,
.contact-copy h2,
.qa-heading h2 {
  font-family: var(--font-display);
  font-weight: 570;
  color: var(--heading);
}

.hero h1 {
  font-weight: 800;
}

h2 {
  line-height: 1.12;
}

h3 {
  line-height: 1.32;
}

p,
li {
  line-height: 1.72;
}

.section-heading p,
.definition p,
.split-section p,
.early-copy p,
.pillar-heading p:not(.eyebrow),
.pillar-copy p,
.hero-lede {
  font-weight: 400;
}

.eyebrow,
.plan-card span,
.focus-context span,
.focus-mini-card span,
.focus-playlist-card span,
.focus-lock-card span,
.focus-result-card span,
.reminder-mode-copy span,
.phone-alert-card span,
.message-bubble-preview span,
.call-sheet span,
.stage-panel-title,
.stage-stat span,
.source-item span {
  font-weight: 600;
}

.pillar-tab,
.solid-button,
.soft-button,
.ghost-link,
.focus-start-row button,
.reminder-slide-controls button,
.community-link-card {
  font-weight: 590;
}

.feature-list li,
.problem-grid h3,
.progress-list h3,
.qa-item summary strong,
.community-links strong {
  font-weight: 620;
}

.desktop-nav,
.site-footer,
.menu-social {
  font-weight: 420;
}

.stage-panel span,
.todo-popover-head span,
.plan-card span,
.plan-visual span,
.focus-context span,
.focus-mini-card span,
.focus-playlist-card span,
.focus-lock-card span,
.focus-result-card span,
.focus-visual span,
.focus-visual em,
.reminder-mode-copy span,
.reminder-visual span,
.reminder-visual em,
.phone-alert-card span,
.message-bubble-preview span,
.call-sheet span,
.focus-ring span,
.stage-panel-title,
.stage-stat span,
.source-item span,
.community-label,
.interface-frame figcaption span,
.index {
  font-weight: 620;
  text-transform: none;
}

.interview-icon {
  color: var(--heading);
}

/* Hierarchy reset: keep the hero memorable, make the rest feel quieter. */
h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.18;
}

h3 {
  font-size: 19px;
  font-weight: 560;
}

.pillar-heading h2 {
  max-width: 860px;
  font-size: clamp(28px, 2.9vw, 38px);
  font-weight: 520;
}

.section-heading h2,
.definition h2,
.split-section h2,
.early-copy h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 500;
}

.pillar-copy h2,
#pillar-plan .pillar-copy h2,
#pillar-focus .pillar-copy h2,
.care-panel .companion-copy h2,
.reminder-mode-copy strong,
.workspace-main h3 {
  max-width: 620px;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 520;
  line-height: 1.22;
}

.qa-heading h2 {
  font-size: clamp(28px, 2.9vw, 36px);
  font-weight: 500;
  line-height: 1.16;
}

.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.pillar-tab {
  font-size: clamp(15px, 1.15vw, 18px);
}

.pillar-copy p,
.companion-copy p,
.consistency-copy p,
.qa-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  font-size: 17px;
}

/* UNI wordmark: keep the brand text chunky and simple across hero and header. */
.brand span,
.hero h1 {
  font-family: "Arial Rounded MT Bold", "Nunito Sans", "Avenir Next", var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  color: #24272f;
}

.hero h1 {
  font-size: clamp(108px, 12vw, 188px);
  line-height: 0.82;
  margin-left: -0.045em;
}

.hero-lede {
  margin-top: 28px;
  color: #24272f;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 520;
  line-height: 1.18;
}

/* How slides: consistent numbering and denser product previews. */
.pillar-panel {
  position: relative;
  --slide-index-top: 0;
  --slide-index-left: 0;
}

#pillar-plan,
#pillar-focus,
.care-panel {
  --slide-index-top: 0;
  --slide-index-left: 0;
}

.pillar-panel .pillar-copy .index,
.care-panel .companion-copy .index {
  position: absolute;
  top: var(--slide-index-top);
  left: var(--slide-index-left);
  z-index: 5;
  margin: 0;
}

#pillar-plan .pillar-copy,
#pillar-focus .pillar-copy,
#pillar-grow .pillar-copy,
#pillar-reminder .pillar-copy,
.care-panel .companion-copy {
  padding-top: 44px;
}

#pillar-grow,
#pillar-reminder {
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 32px;
  padding: 42px 0 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#pillar-grow .pillar-copy,
#pillar-reminder .pillar-copy {
  align-content: start;
  overflow: visible;
}

#pillar-grow .pillar-visual,
#pillar-reminder .pillar-visual {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#pillar-grow .grow-dashboard,
#pillar-reminder .reminder-showcase {
  padding: 0;
}

#pillar-grow .feature-list,
#pillar-reminder .feature-list {
  gap: 10px;
  margin-top: 24px;
}

#pillar-grow .feature-list li,
#pillar-reminder .feature-list li {
  font-size: 15px;
  font-weight: 560;
  color: #4b5563;
}

.growth-board {
  width: 100%;
  height: 100%;
  min-height: 548px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.growth-topbar,
.growth-footer,
.growth-project div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.growth-topbar span,
.growth-card span,
.growth-chart-head span,
.growth-project span,
.growth-uni span,
.growth-note span,
.reminder-side-panel span,
.reminder-card span,
.reminder-chat-head span,
.reminder-call-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 620;
}

.growth-topbar strong,
.growth-chart-head strong,
.growth-project strong,
.growth-uni strong,
.growth-note strong,
.reminder-side-panel strong,
.reminder-card strong,
.reminder-chat-head strong,
.reminder-call-card strong {
  color: #242936;
}

.growth-status {
  padding: 8px 11px;
  border: 1px solid rgba(24, 185, 105, 0.18);
  border-radius: 999px;
  background: rgba(24, 185, 105, 0.08);
  color: #168a52 !important;
}

.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.growth-card,
.growth-chart,
.growth-projects,
.growth-uni,
.growth-note,
.reminder-side-panel,
.reminder-chat-window,
.reminder-call-card,
.reminder-node {
  border: 1px solid rgba(30, 36, 46, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(24, 31, 44, 0.06);
}

.growth-card {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 14px;
  border-radius: 18px;
}

.growth-card strong {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
}

.growth-card small,
.growth-note strong,
.growth-uni strong {
  color: #66707e;
  font-size: 12px;
  line-height: 1.35;
}

.growth-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr);
  gap: 12px;
  min-height: 0;
}

.growth-chart,
.growth-projects {
  border-radius: 22px;
}

.growth-chart {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.growth-chart-head {
  display: grid;
  gap: 3px;
}

.growth-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 190px;
  padding: 0 0 24px;
}

.growth-bars i {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.78);
  overflow: visible;
}

.growth-bars i::before {
  content: "";
  width: 100%;
  height: var(--bar);
  border-radius: inherit;
  background: linear-gradient(180deg, #ff9c58, var(--orange));
  box-shadow: 0 10px 20px rgba(255, 106, 26, 0.14);
}

.growth-bars span {
  position: absolute;
  bottom: -24px;
  color: #7a8390;
  font-size: 11px;
  font-style: normal;
}

.growth-projects {
  display: grid;
  gap: 11px;
  align-content: center;
  padding: 16px;
}

.growth-project {
  display: grid;
  gap: 8px;
}

.growth-project i {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.9);
}

.growth-project b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffc08a);
}

.growth-footer {
  align-items: stretch;
}

.growth-uni,
.growth-note {
  min-width: 0;
  flex: 1;
  padding: 13px;
  border-radius: 18px;
}

.growth-uni {
  display: flex;
  align-items: center;
  gap: 12px;
  border-color: rgba(255, 106, 26, 0.16);
  background: rgba(255, 247, 241, 0.84);
}

.growth-uni img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.growth-note {
  display: grid;
  gap: 4px;
}

.reminder-showcase {
  place-items: stretch;
  justify-items: stretch;
  align-items: stretch;
  padding: 22px;
}

.reminder-slide-stage {
  width: 100%;
  min-height: 460px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reminder-slide {
  padding: 0;
}

.reminder-mode-preview.reminder-command {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(190px, 0.72fr);
  gap: 18px;
  align-items: center;
  min-height: 300px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.reminder-phone {
  justify-self: center;
  width: min(260px, 100%);
  min-height: 292px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 9px solid #242936;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #f8fafc, #fff),
    #fff;
  box-shadow: 0 22px 54px rgba(24, 31, 44, 0.16);
}

.reminder-phone-bar {
  width: 44%;
  height: 7px;
  margin: 0 auto 2px;
  border-radius: 999px;
  background: #d9dee6;
}

.reminder-lock-time {
  justify-self: center;
  color: #242936;
  font-size: 30px;
  font-weight: 560;
  line-height: 1;
}

.reminder-card,
.reminder-bubble {
  border: 1px solid rgba(30, 36, 46, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 31, 44, 0.08);
}

.reminder-card {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.reminder-card p,
.reminder-side-panel p,
.reminder-call-card p {
  margin: 0;
  color: #66707e;
  line-height: 1.5;
}

.reminder-mini-row {
  height: 14px;
  border-radius: 999px;
  background: #e6ebf2;
}

.reminder-mini-row.done {
  width: 66%;
  background: rgba(24, 185, 105, 0.2);
}

.reminder-side-panel {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 190px;
  padding: 18px;
  border-radius: 20px;
}

.reminder-chat-window {
  display: grid;
  gap: 10px;
  width: min(360px, 100%);
  justify-self: center;
  padding: 16px;
  border-radius: 22px;
}

.reminder-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30, 36, 46, 0.08);
}

.reminder-chat-head img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.reminder-bubble {
  max-width: 88%;
  padding: 11px 13px;
  color: #3c4550;
  font-size: 13px;
  line-height: 1.45;
}

.reminder-bubble.user {
  justify-self: end;
  background: #ff6a1a;
  color: #fff;
}

.reminder-call-card {
  justify-self: center;
  width: min(320px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px 18px;
  border-radius: 28px;
  text-align: center;
}

.reminder-call-avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 106, 26, 0.16);
  border-radius: 28px;
  background: rgba(255, 247, 241, 0.9);
  box-shadow: 0 18px 36px rgba(255, 106, 26, 0.12);
}

.reminder-call-avatar img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.reminder-call-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.reminder-call-actions i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #24b768;
}

.reminder-call-actions i.call-decline {
  background: #ef4444;
}

.reminder-call-actions svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reminder-call-actions .call-decline svg {
  transform: rotate(135deg);
}

.reminder-call-actions .call-accept svg {
  transform: rotate(-8deg);
}

.reminder-escalation-map {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
}

.reminder-node {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 12px;
  border-radius: 20px;
  color: #242936;
  font-weight: 620;
  text-align: center;
}

.reminder-node.uni {
  border-color: rgba(255, 106, 26, 0.2);
  background: rgba(255, 247, 241, 0.88);
}

.reminder-node.trusted {
  border-color: rgba(24, 185, 105, 0.18);
  background: rgba(240, 251, 246, 0.88);
}

.reminder-escalation-map i {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 106, 26, 0.18), rgba(255, 106, 26, 0.62));
}

.reminder-slide-controls button {
  min-height: 54px;
  padding: 10px 12px;
  font-weight: 620;
}

#pillar-reminder .reminder-showcase {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 0;
}

#pillar-reminder .reminder-slide-stage {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(210, 220, 232, 0.7);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 248, 255, 0.58) 58%, rgba(255, 247, 241, 0.68)),
    #fff;
  box-shadow: 0 24px 64px rgba(24, 31, 44, 0.08);
}

#pillar-reminder .reminder-slide {
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.72fr);
  grid-template-rows: 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 22px;
}

#pillar-reminder .reminder-mode-preview.reminder-command {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  min-height: 0;
  height: 100%;
}

#pillar-reminder .reminder-side-panel {
  display: none;
}

#pillar-reminder .reminder-phone,
#pillar-reminder .reminder-chat-window,
#pillar-reminder .reminder-call-card {
  align-self: center;
}

#pillar-reminder .reminder-mode-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  min-height: 300px;
  padding: 22px;
  border: 1px solid rgba(210, 220, 232, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(24, 31, 44, 0.06);
}

#pillar-reminder .reminder-mode-copy strong {
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.14;
}

#pillar-reminder .reminder-mode-copy p {
  font-size: 15px;
  line-height: 1.58;
}

#pillar-reminder .reminder-slide-controls {
  gap: 10px;
}

#pillar-reminder .reminder-slide-controls button {
  min-height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

/* How tabs: one shared slide system, with mirrored layout only for Care. */
#pillar-plan,
#pillar-focus,
#pillar-grow,
#pillar-reminder {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

#pillar-care {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

#pillar-plan,
#pillar-focus,
#pillar-grow,
#pillar-reminder,
#pillar-care {
  grid-template-rows: 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
  height: 680px;
  min-height: 680px;
  padding: 42px 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#pillar-plan .pillar-copy,
#pillar-focus .pillar-copy,
#pillar-grow .pillar-copy,
#pillar-reminder .pillar-copy,
#pillar-care .companion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: initial;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow: visible;
  padding-top: 44px;
  padding-right: 0;
}

#pillar-plan .pillar-copy .index,
#pillar-focus .pillar-copy .index,
#pillar-grow .pillar-copy .index,
#pillar-reminder .pillar-copy .index,
#pillar-care .companion-copy .index {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

#pillar-plan .pillar-copy h2,
#pillar-plan .pillar-copy p,
#pillar-focus .pillar-copy h2,
#pillar-focus .pillar-copy p {
  grid-column: auto;
  grid-row: auto;
}

#pillar-plan .pillar-copy h2,
#pillar-focus .pillar-copy h2,
#pillar-grow .pillar-copy h2,
#pillar-reminder .pillar-copy h2,
#pillar-care .companion-copy h2 {
  max-width: 390px;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 520;
  line-height: 1.18;
}

#pillar-plan .pillar-copy p,
#pillar-focus .pillar-copy p,
#pillar-grow .pillar-copy p,
#pillar-reminder .pillar-copy p,
#pillar-care .companion-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 16px 0 0;
  color: #536071;
  font-size: 17px;
  line-height: 1.62;
}

#pillar-grow .feature-list,
#pillar-reminder .feature-list {
  max-width: 390px;
  margin-top: clamp(28px, 5vh, 54px);
}

#pillar-plan .pillar-visual,
#pillar-focus .pillar-visual,
#pillar-grow .pillar-visual,
#pillar-reminder .pillar-visual,
#pillar-care .companion-visual {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

#pillar-plan .plan-interface-showcase,
#pillar-focus .focus-interface-showcase {
  align-content: center;
  justify-items: stretch;
  gap: 18px;
}

#pillar-plan .plan-direct-preview,
#pillar-focus .focus-direct-preview,
#pillar-plan .plan-session-caption,
#pillar-focus .focus-session-caption {
  width: 100%;
  max-width: none;
  margin: 0;
}

#pillar-plan .plan-direct-preview,
#pillar-focus .focus-direct-preview {
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(24, 31, 44, 0.14);
}

#pillar-plan .plan-session-caption,
#pillar-focus .focus-session-caption {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 4px;
}

#pillar-plan .plan-session-points,
#pillar-focus .focus-session-points {
  justify-content: flex-start;
}

#pillar-grow .growth-board,
#pillar-reminder .reminder-showcase {
  height: 100%;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    max-height: none;
  }

  .problem-grid,
  .progress-list,
  .community-links,
  .companion-grid,
  .consistency-grid,
  .pillar-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace-grid {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .pillar-panel {
    height: 660px;
    padding: 34px;
  }

  #pillar-plan,
  #pillar-focus {
    min-height: 0;
  }

  #pillar-plan .pillar-copy,
  #pillar-focus .pillar-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  #pillar-plan .pillar-copy .index,
  #pillar-plan .pillar-copy h2,
  #pillar-plan .pillar-copy p,
  #pillar-focus .pillar-copy .index,
  #pillar-focus .pillar-copy h2,
  #pillar-focus .pillar-copy p,
  #pillar-focus .feature-list {
    grid-column: 1;
    grid-row: auto;
  }

  #pillar-focus .feature-list {
    margin-top: 10px;
  }

  .workspace-uni {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .early-entry {
    grid-template-columns: 1fr;
  }

  .early-uni-visual {
    min-height: 380px;
  }

  .early-research-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-top: 0;
    padding-left: 28px;
  }

  .research-rail {
    top: 8px;
    bottom: 8px;
    left: 7px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 106, 26, 0.45), rgba(91, 166, 255, 0.22), rgba(24, 185, 105, 0.32));
  }

  .research-card {
    min-height: 330px;
    grid-template-rows: auto;
  }

  .research-card::before {
    top: 30px;
    left: -27px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 38px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .header-actions .soft-button,
  .header-actions .solid-button {
    flex: 1;
  }

  .hero {
    min-height: auto;
    padding: 52px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(92px, 26vw, 118px);
  }

  .hero-lede {
    font-size: 24px;
  }

  .hero-stage {
    aspect-ratio: 4 / 5;
  }

  .problem-grid,
  .progress-list,
  .community-links,
  .contact-section,
  .definition,
  .split-section,
  .early-access,
  .companion-grid,
  .consistency-grid,
  .workflow-card,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .pillar-tabs {
    padding: 54px 18px 34px;
  }

  .pillar-tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-tab:last-child {
    grid-column: 1 / -1;
  }

  .pillar-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 22px;
  }
  .pillar-heading {
    text-align: center;
  }

  .pillar-heading h2,
  .pillar-heading p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .pillar-slide-controls {
    position: static;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
  }

  .pillar-slide-arrow {
    position: static;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .pillar-slide-arrow:hover {
    transform: translateY(-1px);
  }

  #pillar-plan,
  #pillar-focus {
    min-height: 0;
    padding: 22px;
  }

  .pillar-copy {
    min-height: auto;
  }

  .pillar-copy h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .feature-list {
    margin-top: 20px;
  }

  .focus-dashboard {
    padding: 18px;
  }

  .focus-interface-showcase {
    padding: 16px;
  }

  #pillar-plan .plan-interface-showcase,
  #pillar-focus .focus-interface-showcase {
    padding: 0;
  }

  #pillar-plan .plan-direct-preview,
  #pillar-focus .focus-direct-preview {
    border-radius: 22px;
  }

  #pillar-plan .plan-session-caption,
  #pillar-focus .focus-session-caption {
    grid-template-columns: 1fr;
  }

  #pillar-plan .plan-session-points,
  #pillar-focus .focus-session-points {
    justify-content: flex-start;
  }

  .interface-note-grid {
    grid-template-columns: 1fr;
  }

  .focus-window-body {
    grid-template-columns: 1fr;
  }

  .focus-timer-card {
    min-height: 340px;
  }

  .focus-ring {
    width: min(220px, 84%);
    border-width: 14px;
  }

  .reminder-showcase {
    padding: 18px;
  }

  .reminder-slide-stage {
    min-height: 460px;
  }

  .reminder-slide {
    padding: 18px;
  }

  .reminder-slide-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accountability-preview {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .accountability-line {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .plan-visual {
    grid-template-columns: 1fr;
  }

  .plan-visual i {
    width: 2px;
    height: 22px;
  }

  .companion-visual {
    min-height: 430px;
  }

  .community-links a {
    min-height: 78px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 3px 12px;
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .community-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .community-icon svg {
    width: 22px;
    height: 22px;
  }

  .community-icon img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .interview-icon svg {
    width: 23px;
    height: 23px;
  }

  .community-links strong {
    font-size: 15px;
  }

  .section,
  .definition,
  .contact-section,
  .qa-section,
  .early-access {
    padding: 64px 18px;
  }

  .early-access {
    padding: 46px 18px 64px;
  }

  .contact-section {
    min-height: 0;
    padding: 58px 18px;
    overflow: visible;
  }

  .contact-note-stack {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 560px;
    padding: 22px;
  }

  .contact-form {
    padding: 18px;
  }

  .qa-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .qa-heading {
    position: static;
    max-width: 680px;
  }

  .early-request-button {
    width: 100%;
  }

  .early-actions {
    align-items: stretch;
  }

  .early-inline-link {
    width: 100%;
    justify-content: center;
  }

  .early-uni-visual {
    min-height: 390px;
    border-radius: 0;
  }

  .early-research-flow {
    margin-top: 30px;
    padding-left: 24px;
  }

  .research-card {
    min-height: 352px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .research-card::before {
    left: -23px;
  }

  .early-uni-visual img {
    width: min(122%, 430px);
    max-height: 470px;
  }

  .beta-dialog {
    width: min(720px, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
  }

  .beta-form-modal {
    padding: 22px;
    border-radius: 20px;
  }

  .beta-dialog-header {
    align-items: flex-start;
    gap: 14px;
  }

  .form-row,
  .form-submit-row,
  .interest-options {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }

  .section-heading p,
  .definition p,
  .split-section p,
  .qa-heading p:not(.eyebrow),
  .early-copy p {
    font-size: 17px;
  }

  .menu-links {
    font-size: clamp(22px, 2vw, 26px);
  }

  .workspace-grid aside,
  .workspace-uni {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .workspace-main {
    padding: 26px;
  }

  .split-section article {
    min-height: 360px;
    padding: 52px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .qa-heading h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .qa-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 20px 0;
  }

  .qa-item summary span {
    width: 30px;
    height: 30px;
  }

  .qa-item summary strong {
    font-size: 18px;
  }

  .qa-answer {
    padding: 0 0 22px 48px;
    font-size: 16px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 760px) {
  #pillar-grow,
  #pillar-reminder {
    --slide-index-top: 22px;
    --slide-index-left: 22px;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 0 0;
  }

  #pillar-grow .pillar-copy,
  #pillar-reminder .pillar-copy {
    padding-top: 44px;
  }

  .growth-board {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    overflow: visible;
  }

  .grow-dashboard,
  .reminder-showcase {
    width: 100%;
    min-width: 0;
  }

  .growth-metrics,
  .growth-main {
    grid-template-columns: 1fr;
  }

  .growth-card {
    min-height: 82px;
  }

  .growth-bars {
    min-height: 150px;
    gap: 6px;
  }

  .growth-footer {
    display: grid;
    gap: 10px;
  }

  .reminder-mode-preview.reminder-command {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  .reminder-phone,
  .reminder-chat-window,
  .reminder-call-card {
    width: 100%;
  }

  .reminder-side-panel {
    min-height: 0;
  }

  .reminder-escalation-map {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reminder-escalation-map i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }
}

@media (max-width: 1100px) {
  #pillar-plan,
  #pillar-focus,
  #pillar-grow,
  #pillar-reminder {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 32px;
    height: 660px;
    min-height: 660px;
    padding: 34px 0 24px;
  }

  #pillar-care {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    grid-template-rows: 1fr;
    gap: 32px;
    height: 660px;
    min-height: 660px;
    padding: 34px 0 24px;
  }

  #pillar-plan .pillar-copy,
  #pillar-focus .pillar-copy,
  #pillar-grow .pillar-copy,
  #pillar-reminder .pillar-copy,
  #pillar-care .companion-copy {
    display: flex;
    height: 100%;
    padding-top: 44px;
  }
}

@media (max-width: 760px) {
  #pillar-plan,
  #pillar-focus,
  #pillar-grow,
  #pillar-reminder,
  #pillar-care {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    height: auto;
    min-height: 0;
    padding: 22px 0 0;
  }

  #pillar-plan .pillar-copy,
  #pillar-focus .pillar-copy,
  #pillar-grow .pillar-copy,
  #pillar-reminder .pillar-copy,
  #pillar-care .companion-copy {
    height: auto;
    justify-content: flex-start;
    padding-top: 44px;
  }

  #pillar-plan .pillar-copy p,
  #pillar-focus .pillar-copy p,
  #pillar-grow .pillar-copy p,
  #pillar-reminder .pillar-copy p,
  #pillar-care .companion-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  #pillar-plan .plan-session-caption,
  #pillar-focus .focus-session-caption {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #pillar-plan .plan-session-points,
  #pillar-focus .focus-session-points {
    justify-content: flex-start;
  }

  #pillar-grow .growth-board,
  #pillar-reminder .reminder-showcase {
    height: auto;
  }

  #pillar-reminder .reminder-showcase {
    gap: 12px;
  }

  #pillar-reminder .reminder-slide-stage {
    min-height: 620px;
    height: auto;
    border-radius: 24px;
  }

  #pillar-reminder .reminder-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 18px;
  }

  #pillar-reminder .reminder-mode-preview.reminder-command {
    min-height: 300px;
    height: auto;
  }

  #pillar-reminder .reminder-mode-copy {
    min-height: 0;
    padding: 18px;
  }

  #pillar-reminder .reminder-slide-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #pillar-care .companion-visual {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .hero-video {
    display: none;
  }

  .hero-stage {
    background: #fff url("./assets/app-icon.png") center / 62% auto no-repeat;
  }
}


