:root {
  --ink: #0a0a0a;
  --paper: #f7f7f4;
  --white: #ffffff;
  --gray-50: #f1f1ee;
  --gray-100: #e7e7e2;
  --gray-300: #b9bbb6;
  --gray-500: #73766f;
  --gray-700: #333530;
  --amber: #ffcc00;
  --amber-pale: #fff1a3;
  --amber-deep: #b89200;
  --line: rgba(10, 10, 10, 0.14);
  --radius: 26px;
  --shell: min(1240px, calc(100% - 64px));
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

::selection {
  color: var(--ink);
  background: var(--amber);
}

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

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-gray {
  background: var(--gray-100);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 244, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
}

.brand-lockup {
  display: block;
  width: auto;
  height: 32px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 620;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
  gap: 14px;
  font-size: 13px;
  font-weight: 680;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--amber);
  transform: translateY(-2px);
}

.header-cta span {
  font-size: 17px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 880px;
  padding-top: 128px;
  padding-bottom: 42px;
}

.hero-glow {
  position: absolute;
  top: -240px;
  left: 58%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 204, 0, 0.35);
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0, rgba(255, 204, 0, 0.04) 45%, transparent 72%);
  border-radius: 50%;
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 58px;
}

.section-kicker {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
  color: var(--gray-500);
  gap: 10px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.problem h2,
.overview-copy h2,
.row-heading h2,
.beta h2,
.faq h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 660px;
}

.scribble {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.scribble::after {
  position: absolute;
  z-index: -1;
  right: -6px;
  bottom: 2px;
  left: -6px;
  height: 18px;
  content: "";
  background: var(--amber);
  clip-path: polygon(0 33%, 100% 0, 98% 75%, 2% 100%);
  opacity: 0.85;
}

.typing-line {
  display: inline-flex;
  align-items: baseline;
  min-height: 0.98em;
  white-space: nowrap;
}

.typing-text {
  display: inline-block;
}

.typing-cursor {
  display: inline-block;
  margin-left: 0.035em;
  color: var(--amber);
  font-weight: 520;
  animation: typing-cursor-blink 0.78s steps(1, end) infinite;
}

@keyframes typing-cursor-blink {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

.hero-lede {
  max-width: 580px;
  margin: 34px 0 30px;
  color: var(--gray-700);
  font-size: 19px;
  line-height: 1.55;
}

.signup-form {
  max-width: 600px;
}

.form-row {
  display: flex;
  overflow: hidden;
  min-height: 62px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 100px;
  box-shadow: 0 12px 34px rgba(10, 10, 10, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.25), 0 12px 34px rgba(10, 10, 10, 0.07);
}

.form-row input {
  min-width: 0;
  flex: 1;
  padding: 0 26px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.form-row input::placeholder {
  color: #858781;
}

.form-row input[aria-invalid="true"] {
  color: #9e2222;
}

.form-row button {
  min-width: 178px;
  margin: 5px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--amber);
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-row button:hover {
  background: var(--amber-pale);
}

.form-row button:active {
  transform: scale(0.98);
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-row button span {
  margin-left: 10px;
  font-size: 18px;
}

.form-meta {
  min-height: 30px;
  padding: 10px 20px 0;
}

.form-meta p {
  margin: 0;
  color: var(--gray-500);
  font-size: 11px;
  line-height: 1.4;
}

.form-status:not(:empty) {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 52px 8px 54px 12px;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(10, 10, 10, 0.17);
  border-radius: 50%;
}

.orbit-one {
  inset: -32px -76px -12px -46px;
  animation: spin 32s linear infinite;
}

.orbit-plane {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border: 1px solid rgba(10, 10, 10, 0.24);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(10, 10, 10, 0.14);
  place-items: center;
}

.orbit-plane svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}

.orbit-plane-one {
  left: 0;
  transform: translate(-50%, -50%);
}

.orbit-plane-two {
  right: 0;
  transform: translate(50%, -50%) rotate(180deg);
}

.orbit-two {
  inset: 20px -25px 30px 10px;
  border-style: solid;
  border-color: rgba(255, 204, 0, 0.25);
  animation: spin 24s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.app-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 560px;
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(10, 10, 10, 0.18), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
}

.mini-brand,
.topbar-actions,
.trip-heading,
.day-head,
.progress-head,
.decision-row,
.settlement,
.check-row,
.weather-note,
.packing-head {
  display: flex;
  align-items: center;
}

.mini-brand { gap: 8px; font-size: 12px; }
.mini-logo { display: block; width: 18px; height: 18px; border-radius: 4px; }
.topbar-actions { gap: 14px; }
.mini-avatars { display: flex; }
.mini-avatars span { display: grid; place-items: center; width: 24px; height: 24px; margin-left: -6px; color: var(--ink); background: #d9dad5; border: 2px solid var(--ink); border-radius: 50%; font-size: 8px; font-weight: 800; }
.mini-avatars span:first-child { margin-left: 0; background: var(--amber); }
.topbar-actions button { height: 30px; padding: 0 12px; color: var(--ink); background: var(--amber); border: 0; border-radius: 20px; font-size: 9px; font-weight: 800; }

.trip-heading { justify-content: space-between; padding: 26px 28px 18px; }
.trip-heading p { margin: 0 0 5px; color: var(--gray-500); font-size: 9px; }
.trip-heading h2 { margin: 0; font-size: 23px; letter-spacing: -0.045em; }
.trip-status { padding: 7px 10px; background: var(--amber-pale); border: 1px solid #e0b500; border-radius: 20px; font-size: 8px; font-weight: 800; }

.app-tabs { display: flex; padding: 0 28px; border-bottom: 1px solid var(--line); gap: 20px; }
.app-tabs span { position: relative; padding: 10px 0 11px; color: var(--gray-500); font-size: 9px; font-weight: 650; }
.app-tabs .active { color: var(--ink); }
.app-tabs .active::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; content: ""; background: var(--amber-deep); }

.app-content { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 12px; padding: 18px; }
.progress-card,
.day-card { padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.progress-head { justify-content: space-between; }
.progress-head p { margin: 0 0 4px; color: var(--gray-500); font-size: 8px; }
.progress-head strong { font-size: 25px; letter-spacing: -0.05em; }
.progress-ring { display: grid; place-items: center; width: 48px; height: 48px; background: conic-gradient(var(--amber) 68%, var(--gray-100) 0); border-radius: 50%; }
.progress-ring::after { width: 36px; height: 36px; content: ""; background: var(--white); border-radius: 50%; }
.progress-ring span { position: absolute; z-index: 1; font-size: 8px; font-weight: 800; }
.progress-line { height: 5px; margin: 20px 0; background: var(--gray-100); border-radius: 8px; }
.progress-line span { display: block; width: 68%; height: 100%; background: var(--amber); border-radius: inherit; }
.progress-stats { display: grid; gap: 12px; }
.progress-stats span { display: grid; grid-template-columns: auto 1fr auto; align-items: center; color: var(--gray-700); gap: 7px; font-size: 8px; }
.progress-stats i { width: 8px; height: 8px; border: 1px solid #999; border-radius: 50%; }
.progress-stats i.done { background: var(--amber); border-color: var(--amber-deep); }
.progress-stats b { color: var(--ink); }

.day-head { justify-content: space-between; margin-bottom: 14px; }
.day-head div { display: flex; align-items: baseline; gap: 8px; }
.day-head span { color: var(--gray-500); font-size: 8px; }
.day-head strong { font-size: 13px; }
.day-head p { margin: 0; color: var(--gray-500); font-size: 8px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 32px 8px 1fr; align-items: start; min-height: 73px; gap: 7px; }
.timeline-item:not(:last-child)::after { position: absolute; top: 13px; bottom: -2px; left: 43px; width: 1px; content: ""; background: var(--gray-100); }
.timeline-item time { padding-top: 1px; color: var(--gray-500); font-size: 8px; }
.timeline-dot { position: relative; z-index: 1; width: 8px; height: 8px; background: var(--white); border: 2px solid var(--gray-500); border-radius: 50%; }
.timeline-dot.amber { background: var(--amber); border-color: var(--amber-deep); }
.timeline-item div { display: grid; gap: 5px; }
.timeline-item strong { font-size: 9px; line-height: 1.3; }
.timeline-item small { color: var(--gray-500); font-size: 7px; line-height: 1.35; }
.timeline-item.muted strong { color: var(--gray-500); }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(10px);
}

.vote-float { right: -24px; bottom: 14px; gap: 10px; animation: float 4.6s ease-in-out infinite; }
.float-icon { display: grid; place-items: center; width: 31px; height: 31px; color: var(--ink); background: var(--amber); border-radius: 50%; font-size: 13px; font-weight: 900; }
.floating-card div { display: grid; gap: 2px; }
.floating-card small { color: var(--gray-500); font-size: 7px; }
.floating-card strong { font-size: 9px; }
.vote-float > b { margin-left: 12px; font-size: 13px; }
.calm-float { top: 14px; left: -18px; gap: 10px; animation: float 5.3s 0.6s ease-in-out infinite; }
.pulse-dot { position: relative; width: 10px; height: 10px; background: var(--amber); border-radius: 50%; }
.pulse-dot::after { position: absolute; inset: -5px; content: ""; border: 1px solid var(--amber-deep); border-radius: 50%; animation: pulse 1.8s ease-out infinite; }

@keyframes float { 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { opacity: 1; transform: scale(0.5); } 100% { opacity: 0; transform: scale(1.25); } }

.ticker-wrap { margin-top: 54px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker { display: flex; align-items: center; justify-content: space-between; min-width: 960px; height: 58px; }
.ticker span { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; }
.ticker i { color: var(--amber-deep); font-size: 16px; font-style: normal; }

.problem-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 100px; }
.section-dark .section-kicker { color: #8d918a; }
.problem h2 { max-width: 480px; font-size: clamp(45px, 5vw, 70px); }
.chaos-list { border-top: 1px solid rgba(255, 255, 255, 0.22); }
.chaos-item { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; min-height: 86px; border-bottom: 1px solid rgba(255, 255, 255, 0.22); gap: 18px; }
.chaos-item span { color: var(--gray-500); font-size: 11px; }
.chaos-item p { margin: 0; color: #d2d4d0; font-size: 18px; line-height: 1.4; }
.chaos-item i { display: grid; place-items: center; width: 30px; height: 30px; color: var(--gray-500); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; font-style: normal; }
.relief-line { position: relative; display: flex; align-items: baseline; justify-content: center; margin-top: 110px; gap: 13px; text-align: center; }
.relief-line p { margin: 0; color: #8d918a; font-size: clamp(23px, 2.6vw, 38px); letter-spacing: -0.04em; }
.relief-line span { color: var(--amber); font-size: clamp(23px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.05em; }
.relief-line svg { position: absolute; right: 50px; bottom: -35px; width: 180px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) 0.65fr; align-items: end; margin-bottom: 70px; gap: 60px; }
.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -30px; }
.section-heading h2 { font-size: clamp(50px, 5.7vw, 80px); }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--gray-500); font-size: 17px; line-height: 1.6; }

.bento-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 580px; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-ai { grid-column: 1 / -1; min-height: 490px; background: var(--gray-100); }
.feature-copy { position: relative; z-index: 2; display: grid; grid-template-columns: 64px minmax(0, 1fr); max-width: 820px; gap: 25px; }
.feature-copy.stacked { display: block; }
.feature-number { display: grid; place-items: center; width: 44px; height: 28px; color: var(--gray-700); border: 1px solid var(--line); border-radius: 100px; font-size: 14px; font-weight: 800; }
.feature-copy.stacked .feature-number { margin-bottom: 70px; }
.feature-copy h3,
.collab-copy h3 { margin: 0 0 18px; font-size: clamp(32px, 3.4vw, 48px); font-weight: 660; letter-spacing: -0.06em; line-height: 1.02; }
.feature-copy p,
.collab-copy p { max-width: 520px; margin: 0; color: var(--gray-500); font-size: 15px; line-height: 1.55; }

.ai-demo { position: absolute; right: 34px; bottom: 36px; left: 123px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; }
.prompt-box,
.ai-result { display: flex; align-items: center; min-height: 112px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: 0 14px 34px rgba(10, 10, 10, 0.06); }
.prompt-box p { flex: 1; margin: 0; color: var(--gray-700); font-size: 14px; line-height: 1.5; }
.prompt-box > span { display: grid; place-items: center; width: 42px; height: 42px; margin-left: 20px; color: var(--ink); background: var(--amber); border-radius: 50%; font-size: 20px; }
.ai-result { background: var(--ink); color: var(--white); gap: 12px; }
.ai-spark { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; color: var(--ink); background: var(--amber); border-radius: 12px; font-size: 18px; }
.ai-result div { display: grid; gap: 4px; }
.ai-result small { color: #8d918a; font-size: 8px; }
.ai-result strong { font-size: 11px; }
.ai-result > span { margin-left: auto; color: var(--amber); font-size: 9px; font-weight: 750; }

.feature-poll { display: flex; background: #f9f9f6; flex-direction: column; }
.poll-demo { position: relative; margin-top: 44px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; }
.poll-demo > small { display: block; color: var(--gray-500); font-size: 9px; }
.poll-demo > strong { display: block; margin: 6px 0 18px; font-size: 13px; }
.poll-option { position: relative; display: flex; align-items: center; justify-content: space-between; overflow: hidden; height: 49px; margin-top: 8px; padding: 0 15px; background: var(--gray-50); border: 1px solid var(--line); border-radius: 11px; font-size: 11px; }
.poll-option::before { position: absolute; z-index: 0; inset: 0 auto 0 0; width: 22%; content: ""; background: rgba(255, 204, 0, 0.18); }
.poll-option.selected::before { width: 78%; }
.poll-option span,
.poll-option b { position: relative; z-index: 1; }
.poll-people { display: flex; align-items: center; margin-top: 18px; }
.poll-people span { display: grid; place-items: center; width: 26px; height: 26px; margin-left: -5px; background: #d9dbd6; border: 2px solid var(--white); border-radius: 50%; font-size: 8px; font-weight: 800; }
.poll-people span:first-child { margin-left: 0; background: var(--amber); }
.poll-people small { margin-left: auto; color: var(--gray-500); font-size: 8px; }

.feature-budget { background: var(--ink); color: var(--white); }
.feature-budget .feature-number { color: var(--amber); border-color: rgba(255, 255, 255, 0.2); }
.feature-budget .feature-copy p { color: #91958e; }
.budget-demo { position: absolute; right: 34px; bottom: 34px; left: 34px; padding: 22px; color: var(--ink); background: var(--white); border-radius: 17px; }
.budget-total { display: flex; justify-content: space-between; align-items: baseline; }
.budget-total span { color: var(--gray-500); font-size: 9px; }
.budget-total strong { font-size: 22px; letter-spacing: -0.05em; }
.budget-bars { display: grid; grid-template-columns: 1.3fr 0.85fr 0.6fr 0.45fr 0.3fr; height: 14px; margin: 18px 0; overflow: hidden; border-radius: 8px; gap: 2px; }
.budget-bars i { background: var(--amber); }
.budget-bars i:nth-child(2) { background: #ffda3d; }
.budget-bars i:nth-child(3) { background: #ffe680; }
.budget-bars i:nth-child(4) { background: #fff0a8; }
.budget-bars i:nth-child(5) { background: #e7e8e4; }
.settlement { padding-top: 17px; border-top: 1px solid var(--line); gap: 10px; }
.settlement > span { display: grid; place-items: center; width: 32px; height: 32px; background: var(--gray-100); border-radius: 50%; font-size: 8px; font-weight: 800; }
.settlement p { display: grid; flex: 1; margin: 0; gap: 3px; }
.settlement b { font-size: 10px; }
.settlement small { color: var(--gray-500); font-size: 8px; }
.settlement > strong { font-size: 11px; }

.feature-packing { display: flex; background: var(--amber-pale); flex-direction: column; }
.packing-demo { position: relative; margin-top: 44px; padding: 21px; background: var(--white); border: 1px solid rgba(10, 10, 10, 0.18); border-radius: 17px; }
.packing-head { justify-content: space-between; margin-bottom: 8px; }
.packing-head span { font-size: 11px; font-weight: 800; }
.packing-head small { color: var(--gray-500); font-size: 8px; }
.check-row { height: 40px; border-bottom: 1px solid var(--line); gap: 10px; }
.check-row i { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid #959892; border-radius: 50%; font-size: 9px; font-style: normal; }
.check-row.done i { background: var(--amber); border-color: var(--amber-deep); }
.check-row span { flex: 1; font-size: 10px; }
.check-row b { display: grid; place-items: center; width: 23px; height: 23px; background: var(--gray-100); border-radius: 50%; font-size: 8px; }
.weather-note { margin-top: 14px; padding: 10px; background: #fff9dc; border-radius: 10px; gap: 9px; }
.weather-note > span { font-size: 16px; }
.weather-note p { display: grid; flex: 1; margin: 0; gap: 2px; }
.weather-note b { font-size: 9px; }
.weather-note small { color: var(--gray-500); font-size: 7px; }
.weather-note > strong { display: grid; place-items: center; width: 23px; height: 23px; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 12px; }

.feature-collab { grid-column: 1 / -1; display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 480px; padding: 0; background: var(--gray-100); }
.collab-copy { padding: 40px; }
.collab-copy .feature-number { margin-bottom: 70px; }
.collab-tags { display: flex; flex-wrap: wrap; margin-top: 28px; gap: 7px; }
.collab-tags span { padding: 8px 11px; background: var(--white); border: 1px solid var(--line); border-radius: 100px; color: var(--gray-700); font-size: 12px; font-weight: 700; }
.collab-visual { position: relative; min-height: 100%; background: var(--amber); border-left: 1px solid var(--line); }
.link-card { position: absolute; top: 80px; right: 48px; left: 48px; display: grid; padding: 23px; background: var(--ink); color: var(--white); border-radius: 17px; gap: 8px; transform: rotate(2deg); box-shadow: 0 20px 48px rgba(10, 10, 10, 0.2); }
.link-card small { color: #969a92; font-size: 9px; }
.link-card strong { font-size: 16px; letter-spacing: -0.03em; }
.link-card span { color: var(--amber); font-size: 9px; font-weight: 800; }
.join-stack { position: absolute; right: 74px; bottom: 42px; left: 74px; display: grid; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 20px 45px rgba(10, 10, 10, 0.15); transform: rotate(-2deg); }
.join-stack > div { display: flex; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--line); gap: 10px; }
.join-stack > div:last-child { border-bottom: 0; }
.join-stack span { display: grid; place-items: center; width: 28px; height: 28px; background: var(--gray-100); border-radius: 50%; font-size: 8px; font-weight: 800; }
.join-stack div:first-child span { background: var(--amber); }
.join-stack p { display: grid; margin: 0; gap: 2px; }
.join-stack b { font-size: 9px; }
.join-stack small { color: var(--gray-500); font-size: 7px; }

.section-heading.compact { display: block; max-width: 900px; }
.section-heading.compact .section-kicker { margin-bottom: 24px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 80px 0 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { position: relative; min-height: 410px; padding: 28px 38px 0 0; border-right: 1px solid var(--line); }
.steps li + li { padding-left: 38px; }
.steps li:last-child { border-right: 0; }
.step-number { color: var(--gray-500); font-size: 14px; font-weight: 800; }
.step-icon { display: grid; width: 100%; height: 104px; margin: 65px 0 48px; place-items: center start; }
.step-icon svg { width: 88px; height: 88px; overflow: visible; fill: none; stroke: var(--ink); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.steps h3 { margin: 0 0 15px; font-size: 24px; letter-spacing: -0.04em; }
.steps p { max-width: 330px; margin: 0; color: var(--gray-500); font-size: 14px; line-height: 1.6; }

.overview-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 90px; }
.overview-copy h2 { max-width: 520px; font-size: clamp(48px, 5.5vw, 76px); }
.overview-copy > p:not(.section-kicker) { max-width: 520px; margin: 30px 0; color: #9a9e96; font-size: 17px; line-height: 1.6; }
.overview-copy ul { display: grid; padding: 0; margin: 38px 0 0; list-style: none; gap: 14px; }
.overview-copy li { display: flex; align-items: center; color: #d6d8d3; gap: 11px; font-size: 13px; }
.overview-copy li span { display: grid; place-items: center; width: 21px; height: 21px; color: var(--ink); background: var(--amber); border-radius: 50%; font-size: 9px; font-weight: 900; }
.overview-board { padding: 28px; color: var(--ink); background: #f7f7f4; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 24px; box-shadow: 0 36px 100px rgba(0, 0, 0, 0.35); transform: rotate(1.2deg); }
.board-top { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.board-top div { display: grid; gap: 3px; }
.board-top small { color: var(--gray-500); font-size: 8px; }
.board-top strong { font-size: 28px; letter-spacing: -0.06em; }
.board-top > span { color: var(--gray-500); font-size: 9px; }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 14px 0; gap: 10px; }
.board-card { display: grid; grid-template-columns: 37px 1fr auto; align-items: center; min-height: 80px; padding: 13px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; gap: 10px; }
.board-card > span { display: grid; place-items: center; width: 37px; height: 37px; background: var(--gray-100); border-radius: 10px; font-size: 13px; font-weight: 800; }
.board-card.attention > span { background: var(--amber); }
.board-card p { display: grid; margin: 0; gap: 3px; }
.board-card small { color: var(--gray-500); font-size: 7px; }
.board-card strong { font-size: 10px; }
.board-card > b { color: var(--gray-500); font-size: 8px; }
.decision-row { padding: 18px; background: var(--ink); color: var(--white); border-radius: 13px; gap: 16px; }
.decision-row > div:first-child { display: grid; min-width: 160px; gap: 5px; }
.decision-row small { color: #8d918a; font-size: 7px; }
.decision-row strong { font-size: 10px; }
.decision-progress { flex: 1; height: 5px; overflow: hidden; background: #373a36; border-radius: 5px; }
.decision-progress span { display: block; width: var(--value); height: 100%; background: var(--amber); }
.decision-row > b { color: var(--amber); font-size: 9px; }

.row-heading { grid-template-columns: 1.3fr 0.5fr; }
.row-heading .section-kicker { margin-bottom: 20px; }
.row-heading h2 { font-size: clamp(45px, 5vw, 68px); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-grid article { min-height: 390px; padding: 24px 26px; border-right: 1px solid var(--line); }
.audience-grid article:last-child { border-right: 0; }
.audience-grid article > span { color: var(--gray-500); font-size: 9px; }
.audience-symbol { display: grid; width: 100%; height: 140px; place-items: center start; }
.audience-symbol svg { width: 88px; height: 88px; overflow: visible; fill: none; stroke: var(--ink); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.audience-symbol .audience-icon-route { stroke-dasharray: 3 4; }
.audience-grid h3 { margin: 0 0 14px; font-size: 20px; letter-spacing: -0.04em; }
.audience-grid p { margin: 0; color: var(--gray-500); font-size: 13px; line-height: 1.6; }

.beta { padding-top: 70px; padding-bottom: 70px; overflow: visible; }
.beta-panel { position: relative; overflow: hidden; padding: 65px; background: var(--amber); border-radius: 34px; box-shadow: 0 28px 80px rgba(10, 10, 10, 0.12); }
.beta-badge { display: inline-flex; align-items: center; margin-bottom: 52px; padding: 9px 13px; background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(10, 10, 10, 0.18); border-radius: 100px; gap: 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.beta-badge span { font-size: 8px; animation: pulse-opacity 1.8s ease-in-out infinite; }
@keyframes pulse-opacity { 50% { opacity: 0.25; } }
.beta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.85fr; align-items: end; gap: 90px; }
.beta .section-kicker { color: rgba(10, 10, 10, 0.58); }
.beta h2 { font-size: clamp(50px, 5.8vw, 80px); }
.beta-copy { margin: 0 0 28px; font-size: 16px; line-height: 1.55; }
.beta-form .form-row { border-color: var(--gray-300); box-shadow: none; }
.beta-form .form-row button { color: var(--white); background: var(--ink); }
.beta-form .form-row button:hover { color: var(--ink); background: var(--white); }
.beta-form .form-meta p { color: rgba(10, 10, 10, 0.6); }
.beta-route { position: absolute; right: -70px; bottom: -75px; display: flex; align-items: center; opacity: 0.22; transform: rotate(-9deg); }
.beta-route span { width: 75px; height: 75px; background: var(--ink); border-radius: 50%; }
.beta-route i { width: 170px; height: 4px; background: var(--ink); }

.faq-grid { display: grid; grid-template-columns: 0.66fr 1.34fr; gap: 100px; }
.faq h2 { font-size: clamp(45px, 5vw, 68px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; min-height: 84px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 640; letter-spacing: -0.03em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.faq-list summary span::before,
.faq-list summary span::after { position: absolute; top: 11px; left: 4px; width: 16px; height: 2px; content: ""; background: var(--ink); transition: transform 0.2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary span::before { background: var(--amber-deep); }
.faq-list details p { max-width: 680px; margin: -5px 0 28px; color: var(--gray-500); font-size: 14px; line-height: 1.65; }

.site-footer { padding: 78px 0 24px; color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 0.5fr 1fr 0.5fr; align-items: center; padding-bottom: 72px; }
.footer-top > * { align-self: center; }
.footer-top p { justify-self: center; margin: 0; color: #9da19a; font-size: 15px; line-height: 1.5; white-space: nowrap; }
.footer-top > a:last-child { justify-self: end; color: var(--amber); font-size: 13px; font-weight: 700; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: #73776f; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { justify-self: center; }
.footer-bottom a { justify-self: end; color: #a9ada5; }

:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 1000px); }
  .hero { padding-top: 128px; }
  .hero-grid { grid-template-columns: 0.82fr 1.18fr; gap: 25px; }
  .hero h1 { font-size: 52px; }
  .hero-lede { font-size: 16px; }
  .app-content { grid-template-columns: 1fr; }
  .progress-card { display: none; }
  .app-window { min-height: 520px; }
  .feature-card { min-height: 550px; }
  .problem-grid,
  .overview-grid { gap: 55px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid article:nth-child(2) { border-right: 0; }
  .audience-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .beta-grid { gap: 55px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); --radius: 22px; }
  .section { padding: 88px 0; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 70px; }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; padding: 12px 9px; background: var(--ink); border: 0; border-radius: 50%; place-content: center; gap: 5px; }
  .menu-toggle span { width: 18px; height: 2px; background: var(--white); transition: transform 0.2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 999; top: 70px; right: 0; left: 0; display: grid; padding: 10px 16px 20px; background: rgba(247, 247, 244, 0.98); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.3s ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 650; }
  .mobile-nav a:last-child { margin-top: 10px; color: var(--ink); background: var(--amber); border: 0; border-radius: 100px; text-align: center; }

  .hero { min-height: 0; padding-top: 128px; padding-bottom: 35px; }
  .hero-grid { display: block; }
  .hero-copy { position: relative; z-index: 2; }
  .hero h1 { font-size: clamp(47px, 12vw, 70px); }
  .hero-lede { max-width: 650px; }
  .hero-form { max-width: 620px; }
  .hero-visual { max-width: 650px; margin: 54px auto 0; }
  .hero-glow { top: 290px; left: 0; }
  .ticker-wrap { margin-top: 30px; overflow-x: hidden; }
  .ticker { justify-content: flex-start; width: max-content; gap: 38px; animation: ticker-mobile 18s linear infinite; }
  @keyframes ticker-mobile { to { transform: translateX(-45%); } }

  .problem-grid,
  .section-heading,
  .overview-grid,
  .row-heading,
  .beta-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .problem h2 { max-width: 640px; }
  .relief-line { display: block; margin-top: 75px; }
  .relief-line p,
  .relief-line span { display: inline; }
  .relief-line svg { right: 15%; }
  .section-heading .section-kicker { margin-bottom: -15px; }
  .section-heading > p:last-child { max-width: 600px; }

  .bento-grid { grid-template-columns: 1fr; }
  .feature-ai,
  .feature-collab { grid-column: auto; }
  .feature-collab { grid-template-columns: 1fr; }
  .collab-visual { min-height: 430px; border-top: 1px solid var(--line); border-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li,
  .steps li + li { min-height: 0; padding: 30px 0 50px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  .step-icon { margin: 40px 0 30px; }
  .overview-copy h2 { max-width: 700px; }
  .overview-board { max-width: 700px; }
  .row-heading .section-kicker { margin-bottom: 18px; }
  .row-heading > p:last-child { max-width: 600px; }
  .beta-panel { padding: 48px 40px; }
  .faq h2 br { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-top p { display: none; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 24px); }
  .section { padding: 72px 0; }
  .brand-lockup { height: 30px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(43px, 11.5vw, 61px); line-height: 1.01; }
  .scribble { white-space: normal; }
  .scribble::after { height: 13px; }
  .hero-lede { margin-top: 26px; font-size: 16px; }
  .form-row { min-height: 0; overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; flex-direction: column; gap: 8px; }
  .form-row:focus-within { border-color: transparent; box-shadow: none; }
  .form-row input { min-height: 58px; background: var(--white); border: 1px solid rgba(10, 10, 10, 0.22); border-radius: 100px; }
  .form-row input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.25); }
  .form-row button { min-height: 58px; width: 100%; margin: 0; }
  .form-meta { padding-inline: 8px; }
  .hero-visual { margin-top: 25px; padding: 45px 0 45px; }
  .app-window { min-height: 450px; }
  .app-topbar { padding: 0 15px; }
  .mini-avatars { display: none; }
  .trip-heading { padding: 22px 16px 14px; }
  .trip-heading h2 { font-size: 19px; }
  .app-tabs { padding: 0 16px; overflow: hidden; gap: 17px; }
  .app-content { padding: 12px; }
  .day-card { padding: 15px; }
  .vote-float { right: -4px; bottom: 12px; }
  .calm-float { top: 10px; left: -2px; }
  .orbit-one { inset: 0 -90px; }
  .orbit-two { inset: 25px -45px; }
  .orbit-plane { width: 30px; height: 30px; }
  .orbit-plane svg { width: 15px; height: 15px; }

  .problem h2,
  .section-heading h2,
  .overview-copy h2,
  .row-heading h2,
  .beta h2,
  .faq h2 { font-size: clamp(40px, 11.7vw, 58px); }
  .chaos-item { grid-template-columns: 28px 1fr auto; min-height: 82px; gap: 8px; }
  .chaos-item p { font-size: 15px; }
  .relief-line { text-align: left; }
  .relief-line p,
  .relief-line span { font-size: 27px; line-height: 1.3; }
  .relief-line svg { right: 50%; width: 150px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading .section-kicker { margin-bottom: -25px; }
  .row-heading .section-kicker { margin-bottom: 24px; }
  .feature-card { min-height: 530px; padding: 24px; }
  .feature-ai { min-height: 590px; }
  .feature-copy { display: block; }
  .feature-copy > .feature-number,
  .feature-copy.stacked .feature-number { margin-bottom: 44px; }
  .feature-copy h3,
  .collab-copy h3 { font-size: 36px; }
  .ai-demo { right: 24px; bottom: 24px; left: 24px; grid-template-columns: 1fr; }
  .prompt-box,
  .ai-result { min-height: 96px; padding: 18px; }
  .budget-demo { right: 24px; bottom: 24px; left: 24px; }
  .poll-demo { margin-top: 36px; }
  .packing-demo { margin-top: 36px; }
  .feature-collab { padding: 0; }
  .collab-copy { padding: 26px; }
  .collab-copy .feature-number { margin-bottom: 44px; }
  .collab-visual { min-height: 360px; }
  .link-card { top: 45px; right: 22px; left: 22px; }
  .join-stack { right: 38px; bottom: 28px; left: 38px; }
  .steps { margin-top: 50px; }
  .overview-grid { gap: 42px; }
  .overview-board { padding: 14px; transform: none; }
  .board-grid { grid-template-columns: 1fr; }
  .decision-row { display: grid; grid-template-columns: 1fr auto; }
  .decision-progress { grid-column: 1 / -1; width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-grid article:last-child { border-bottom: 0; }
  .audience-grid article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .audience-symbol { height: 130px; }
  .beta { padding: 22px 0 58px; }
  .beta-panel { width: calc(100% - 16px); padding: 37px 24px; border-radius: 26px; }
  .beta-badge { margin-bottom: 42px; }
  .beta-grid { gap: 38px; }
  .beta-form .form-row input { border-color: var(--gray-300); }
  .faq-grid { gap: 42px; }
  .faq-list summary { min-height: 76px; padding-right: 5px; font-size: 16px; gap: 18px; }
  .footer-top { display: grid; grid-template-columns: 1fr; gap: 30px; }
  .footer-top > a:last-child { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 18px; }
  .footer-bottom p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .typing-cursor { display: none; }
}
