:root {
  --ink: #080808;
  --ink-soft: #28282b;
  --gray: #66686d;
  --gray-light: #9b9da1;
  --line: rgba(8, 8, 8, 0.1);
  --paper: #ffffff;
  --warm: #f6f0e2;
  --surface: #f6f6f6;
  --accent: #ff7733;
  --accent-deep: #a75d46;
  --accent-soft: #fff0e8;
  --green: #40c878;
  --blue: #4ea9ff;
  --purple: #bc62e8;
  --yellow: #f7bc37;
  --black: #0b0b0c;
  --black-card: #171719;
  --font-round: "SF Pro Rounded", ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "New York", "Iowan Old Style", Georgia, serif;
  --shadow-soft: 0 18px 50px rgba(20, 20, 22, 0.08), 0 2px 8px rgba(20, 20, 22, 0.04);
  --shadow-card: 0 28px 70px rgba(20, 20, 22, 0.13), 0 5px 16px rgba(20, 20, 22, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-round);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.page-dark { color: #fff; background: var(--black); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: 8px; z-index: 200;
  transform: translateY(-150%); border-radius: 999px; padding: 10px 16px;
  color: #fff; background: #000; font-weight: 700;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

/* Announcement */
.announcement {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 54px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #f0f2f6; background: #000;
  border-bottom: 0.5px solid rgb(66, 66, 66);
  font-size: 12px; font-weight: 700;
}
.announce-copy { position: relative; z-index: 3; display: flex; align-items: center; gap: 7px; }
.announce-copy a { color: var(--accent); border-bottom: 1px solid currentColor; }
.announce-new { color: var(--accent); font-size: 10px; letter-spacing: 0.04em; }
.announce-cloud { position: absolute; top: 0; width: 250px; height: 54px; }
.announce-left { left: -10px; }
.announce-right { right: -10px; }
.announce-chip {
  position: absolute; display: grid; place-items: center; width: 27px; height: 27px;
  border-radius: 50%; border: 2px solid #000; color: #c9c9ce; background: #444448;
}
.announce-chip svg { width: 12px; height: 12px; }
.announce-chip:nth-child(2n) { color: #ff9f0a; background: #3a250d; }
.announce-chip:nth-child(3n) { color: #ff375f; background: #3a1220; }
.announce-chip:nth-child(4n) { color: #bf5af2; background: #2a1440; }
.announce-chip:nth-child(5n) { color: #30d158; background: #122f1c; }
.announce-chip:nth-child(7n) { color: #64d2ff; background: #102636; }
.announce-left .chip-1 { left: -7px; top: 13px; }
.announce-left .chip-2 { left: 15px; top: -5px; }
.announce-left .chip-3 { left: 42px; top: 23px; }
.announce-left .chip-4 { left: 64px; top: 3px; }
.announce-left .chip-5 { left: 91px; top: -7px; }
.announce-left .chip-6 { left: 112px; top: 20px; }
.announce-left .chip-7 { left: 139px; top: 7px; }
.announce-left .chip-8 { left: 166px; top: 25px; }
.announce-left .chip-9 { left: 190px; top: -5px; }
.announce-right .chip-1 { right: -7px; top: 10px; }
.announce-right .chip-2 { right: 18px; top: 29px; }
.announce-right .chip-3 { right: 42px; top: -4px; }
.announce-right .chip-4 { right: 67px; top: 17px; }
.announce-right .chip-5 { right: 94px; top: 2px; }
.announce-right .chip-6 { right: 117px; top: 28px; }
.announce-right .chip-7 { right: 143px; top: 8px; }
.announce-right .chip-8 { right: 169px; top: -6px; }
.announce-right .chip-9 { right: 194px; top: 24px; }

/* Shared nav */
.site-header { position: fixed; z-index: 90; top: 54px; left: 0; right: 0; padding: 14px 16px; }
.site-nav {
  width: 100%; max-width: 1160px; min-height: 58px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 9px 11px 9px 13px; border: 1px solid transparent; border-radius: 999px;
  transition: max-width 0.42s cubic-bezier(.22,.8,.32,1), background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled .site-nav,
.site-header.is-menu-open .site-nav {
  max-width: 1040px; background: rgba(255,255,255,.84); border-color: rgba(0,0,0,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.page-dark .site-header.is-scrolled .site-nav,
.page-dark .site-header.is-menu-open .site-nav {
  background: rgba(22,22,24,.84); border-color: rgba(255,255,255,.08); box-shadow: 0 10px 38px rgba(0,0,0,.35);
}
.site-brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 720; }
.site-brand img, .footer-brand img { border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,.1); }
.site-nav-links { display: flex; align-items: center; gap: 28px; color: var(--gray); font-size: 14px; font-weight: 650; }
.site-nav-links a, .footer-group a { transition: color .2s, opacity .2s; }
.site-nav-links a:hover { color: var(--ink); }
.page-dark .site-nav-links { color: rgba(255,255,255,.48); }
.page-dark .site-nav-links a:hover { color: #fff; }
.nav-action, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  color: #fff; background: #000; font-size: 14px; font-weight: 720;
  box-shadow: 0 7px 18px rgba(0,0,0,.14); transition: transform .25s cubic-bezier(.3,1.4,.5,1), box-shadow .25s, background .2s;
}
.nav-action:hover, .button:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.button[aria-disabled="true"] { cursor: default; box-shadow: none; }
.button[aria-disabled="true"]:hover { transform: none; box-shadow: none; }
.page-dark .nav-action { color: #000; background: #fff; }
.nav-menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: rgba(127,127,127,.1); }
.nav-menu-button span { display: block; width: 17px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .2s; }
.site-header.is-menu-open .nav-menu-button span:first-child { transform: translateY(3.25px) rotate(45deg); }
.site-header.is-menu-open .nav-menu-button span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* Type and shared sections */
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.display { margin: 0; font-size: clamp(46px, 6.8vw, 86px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.display.small { font-size: clamp(38px, 5.1vw, 64px); line-height: 1.02; }
.lede { margin: 22px auto 0; max-width: 700px; color: var(--gray); font-size: clamp(17px, 2vw, 21px); font-weight: 520; line-height: 1.55; text-wrap: balance; }
.page-dark .lede { color: rgba(255,255,255,.52); }
.hero { position: relative; overflow: hidden; padding: 194px 20px 94px; text-align: center; }
.hero.compact { padding-bottom: 68px; }
.hero-glow {
  position: absolute; z-index: 0; left: 50%; top: 45%; width: 780px; height: 600px;
  transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,119,51,.14), rgba(246,240,226,.2) 36%, transparent 68%); filter: blur(8px);
}
.page-dark .hero-glow { background: radial-gradient(circle, rgba(255,119,51,.22), rgba(255,119,51,.04) 40%, transparent 69%); }
.hero > *:not(.hero-glow) { position: relative; z-index: 1; }
.hero-icon { width: 82px; height: 82px; margin: 0 auto 26px; border-radius: 22px; box-shadow: 0 16px 42px rgba(0,0,0,.16); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button.secondary { color: var(--ink); background: #fff; border-color: var(--line); box-shadow: none; }
.page-dark .button.secondary { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.button.orange { color: #fff; background: var(--accent); }
.button.large { min-height: 54px; padding: 0 28px; font-size: 16px; }
.section { padding: 98px 0; }
.section.alt { background: linear-gradient(180deg,#fff,#f6f6f6); }
.page-dark .section.alt { background: #111113; }
.section-heading { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(34px,4.6vw,56px); line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.section-heading p { margin: 18px auto 0; color: var(--gray); font-size: 18px; line-height: 1.55; }
.page-dark .section-heading p { color: rgba(255,255,255,.48); }
.card {
  border: 1px solid rgba(0,0,0,.06); border-radius: 34px; background: linear-gradient(180deg,#fff,#f7f7f7);
  box-shadow: var(--shadow-soft);
}
.page-dark .card { border-color: rgba(255,255,255,.07); background: linear-gradient(180deg,#1c1c1f,#141416); box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.feature-card { min-height: 320px; padding: 34px; overflow: hidden; }
.feature-icon, .tool-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px;
  color: var(--accent); background: var(--accent-soft); font-size: 21px;
}
.feature-card h2, .feature-card h3 { margin: 24px 0 10px; font-size: 28px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--gray); font-size: 16px; line-height: 1.55; }
.media-card { position: relative; min-height: 540px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 46px; padding: 58px; overflow: hidden; }
.media-copy h2 { margin: 0; font-size: clamp(36px,4vw,56px); line-height: 1.02; letter-spacing: -.045em; }
.media-copy p { color: var(--gray); font-size: 18px; line-height: 1.58; }
.phone-shot { position: relative; justify-self: center; width: min(310px,100%); padding: 7px; border-radius: 55px; background: #252527; box-shadow: var(--shadow-card); }
.phone-shot::after { content: ""; position: absolute; top: 17px; left: 50%; width: 91px; height: 27px; transform: translateX(-50%); border-radius: 20px; background: #000; }
.phone-shot img { width: 100%; border-radius: 48px; }
.screenshot-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; align-items: end; }
.screenshot-row .phone-shot:nth-child(1) { transform: rotate(-5deg) translateY(30px); }
.screenshot-row .phone-shot:nth-child(3) { transform: rotate(5deg) translateY(30px); }

/* Pricing, modeled on Tripsy Pro */
.pricing-hero { padding-bottom: 52px; }
.pro-wordmark { color: var(--accent); }
.pricing-stage { padding: 0 0 100px; }
.pricing-stage .shell { max-width: 1040px; }
.plan-intro { margin: 0 0 26px; color: rgba(255,255,255,.38); text-align: center; font-size: 13px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.plan-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.plan-card { min-height: 450px; display: flex; flex-direction: column; padding: 42px; border-radius: 32px; background: #1b1b1d; border: 1px solid rgba(255,255,255,.06); }
.plan-card.recommended { background: linear-gradient(145deg,#25211f,#1b1b1d); box-shadow: inset 0 0 0 1px rgba(255,119,51,.24); }
.plan-kicker { color: var(--accent); font-size: 21px; font-weight: 780; }
.plan-price { margin: 30px 0 8px; font-size: clamp(48px,6vw,76px); font-weight: 750; letter-spacing: -.06em; line-height: .95; }
.plan-price span { color: rgba(255,255,255,.38); font-size: 17px; letter-spacing: 0; }
.plan-detail { margin: 0; color: rgba(255,255,255,.45); font-size: 17px; line-height: 1.55; }
.plan-note { margin: auto 0 20px; padding-top: 32px; color: rgba(255,255,255,.34); font-size: 13px; line-height: 1.5; }
.plan-card .button { width: 100%; color: #000; background: #fff; box-shadow: none; }
.pricing-fineprint { max-width: 760px; margin: 24px auto 0; color: rgba(255,255,255,.32); text-align: center; font-size: 12px; line-height: 1.55; }
.included { padding: 95px 0 125px; background: #0b0b0c; }
.included-wrap { max-width: 920px; }
.included-title { margin: 0 0 38px; font-size: clamp(38px,5vw,60px); letter-spacing: -.05em; }
.included-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; min-height: 82px; border-top: 1px solid rgba(255,255,255,.08); }
.included-row:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.included-row span:first-child { font-size: 17px; font-weight: 650; }
.included-row small { display: block; margin-top: 4px; color: rgba(255,255,255,.34); font-size: 13px; font-weight: 500; }
.check { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--accent); font-weight: 900; }

/* MCP */
.provider-stack { display: flex; justify-content: center; align-items: center; margin-bottom: 32px; }
.provider-mark { display: grid; place-items: center; width: 66px; height: 66px; margin-left: -10px; border: 4px solid var(--black); border-radius: 50%; background: #fff; color: #111; font-weight: 900; box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.provider-mark:first-child { margin-left: 0; }
.provider-mark.claude { color: #d97757; background: #f0eee6; font-size: 28px; }
.provider-mark.chatgpt { color: #fff; background: #161616; font-size: 24px; }
.provider-mark.codex { color: #fff; background: #413b36; font-family: ui-monospace,monospace; font-size: 16px; }
.provider-mark.gemini { color: #4285f4; font-size: 24px; }
.mcp-connect { padding: 0 0 80px; }
.connection-panel { max-width: 1080px; margin: 0 auto; padding: 26px; border-radius: 36px; background: #171719; border: 1px solid rgba(255,255,255,.07); }
.provider-tabs { display: flex; gap: 8px; padding: 5px; overflow-x: auto; border-radius: 999px; background: rgba(255,255,255,.04); }
.provider-tab { flex: 1; min-width: 120px; min-height: 46px; padding: 0 18px; border: 0; border-radius: 999px; color: rgba(255,255,255,.48); background: transparent; font-weight: 720; }
.provider-tab[aria-selected="true"] { color: #111; background: #fff; }
.endpoint-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; margin-top: 20px; padding: 18px 18px 18px 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: #101012; }
.endpoint-row code { min-width: 0; overflow: hidden; color: rgba(255,255,255,.75); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.copy-button { min-height: 42px; padding: 0 17px; border: 0; border-radius: 999px; color: #111; background: #fff; font-weight: 750; }
.setup-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.setup-step { min-height: 240px; padding: 26px; border-radius: 25px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.055); }
.step-number { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: var(--accent); font-weight: 800; }
.setup-step h2, .setup-step h3 { margin: 44px 0 9px; font-size: 21px; }
.setup-step p { margin: 0; color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.55; }
.mcp-demo { display: grid; grid-template-columns: .86fr 1.14fr; gap: 18px; }
.prompt-list { padding: 22px; }
.prompt-button { width: 100%; padding: 18px; border: 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.46); background: transparent; text-align: left; font-weight: 650; }
.prompt-button:last-child { border-bottom: 0; }
.prompt-button[aria-selected="true"] { color: #fff; }
.answer-card { min-height: 390px; padding: 34px; }
.answer-card .answer-label { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.answer-card h3 { margin: 18px 0 14px; font-size: 30px; letter-spacing: -.03em; }
.answer-card p, .answer-card li { color: rgba(255,255,255,.48); line-height: 1.65; }
.tool-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.tool-card { min-height: 240px; padding: 26px; }
.tool-card h3 { margin: 34px 0 8px; font-size: 20px; }
.tool-card p { margin: 0; color: rgba(255,255,255,.42); line-height: 1.55; }
.permission-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.permission-card { padding: 34px; }
.permission-card h3 { margin: 0 0 10px; font-size: 27px; }
.permission-card p, .permission-card li { color: rgba(255,255,255,.45); line-height: 1.6; }
.permission-card li + li { margin-top: 8px; }

/* Integration guides and support */
.guide-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.guide-aside { position: sticky; top: 150px; padding: 28px; }
.guide-aside h2 { margin: 0 0 12px; font-size: 23px; }
.guide-aside p { color: var(--gray); line-height: 1.55; }
.guide-aside a { display: block; padding: 12px 0; border-top: 1px solid var(--line); color: var(--gray); font-weight: 650; }
.guide-content { display: grid; gap: 16px; }
.guide-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 32px; }
.guide-step .step-number { margin-top: 2px; }
.guide-step h2, .guide-step h3 { margin: 0 0 9px; font-size: 24px; }
.guide-step p { margin: 0; color: var(--gray); line-height: 1.62; }
.callout { padding: 26px 28px; border: 1px solid rgba(255,119,51,.2); border-radius: 24px; background: var(--accent-soft); }
.callout strong { display: block; margin-bottom: 7px; }
.callout p { margin: 0; color: #7a4c36; line-height: 1.55; }
.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border: 0; color: inherit; background: transparent; text-align: left; font-size: 19px; font-weight: 720; }
.faq-button span:last-child { color: var(--gray); font-size: 25px; transition: transform .2s; }
.faq-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .25s ease, opacity .25s; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 760px; margin: 0; padding: 0 0 28px; color: var(--gray); font-size: 16px; line-height: 1.65; }
.faq-button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.support-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.support-card { min-height: 270px; padding: 30px; }
.support-card h2, .support-card h3 { margin: 36px 0 9px; font-size: 24px; }
.support-card p { color: var(--gray); line-height: 1.58; }
.text-link { color: var(--accent); font-weight: 750; }

/* Download and press */
.download-stage { display: grid; grid-template-columns: 1fr 430px; gap: 68px; align-items: center; padding: 185px 0 105px; }
.download-copy .display { font-size: clamp(52px,6.5vw,82px); }
.download-copy .lede { margin-left: 0; }
.download-copy .hero-actions { justify-content: flex-start; }
.download-phone { justify-self: center; width: 340px; }
.press-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; }
.press-card { padding: 40px; }
.press-card h2 { margin: 0 0 12px; font-size: 30px; }
.press-card p, .press-card li { color: var(--gray); line-height: 1.62; }
.brand-swatch { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px; }
.swatch { min-height: 104px; display: flex; align-items: flex-end; padding: 14px; border-radius: 18px; font-size: 12px; font-weight: 750; }
.swatch.cream { color: #241e19; background: #f6f0e2; }
.swatch.clay { color: #fff; background: #a75d46; }
.swatch.orange { color: #fff; background: #ff7733; }

/* Legal, modeled on Honeydew's static legal pages */
.page-legal { background: linear-gradient(145deg,#fff 0,#fffaf6 45%,#eef8f1 100%); }
.legal-hero { padding-bottom: 54px; }
.legal-hero .display { font-size: clamp(42px,5.6vw,68px); }
.last-updated { margin: 18px 0 0; color: var(--gray); font-size: 14px; font-weight: 650; }
.legal-layout { display: grid; gap: 16px; padding-bottom: 110px; }
.legal-card { padding: 34px 38px; border-radius: 24px; background: rgba(255,255,255,.86); border: 1px solid rgba(8,8,8,.06); box-shadow: var(--shadow-soft); }
.legal-card.highlight { border: 2px solid rgba(64,200,120,.52); background: linear-gradient(135deg,#f7fff9,#fff); }
.legal-card h2 { margin: 0 0 13px; color: #158a4b; font-size: 24px; letter-spacing: -.02em; }
.legal-card h3 { margin: 24px 0 9px; font-size: 18px; }
.legal-card p, .legal-card li { color: #55595e; font-size: 15.5px; line-height: 1.7; }
.legal-card p:first-of-type { margin-top: 0; }
.legal-card a { color: #0e8746; font-weight: 720; text-decoration: underline; text-underline-offset: 3px; }
.legal-card li + li { margin-top: 8px; }
.legal-pair { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.legal-card address { font-style: normal; }

/* Status */
.status-panel { max-width: 900px; margin: 0 auto; padding: 34px; }
.status-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.status-head h2 { margin: 0; font-size: 30px; }
.status-label { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); font-size: 13px; font-weight: 720; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-light); }
.status-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-row span:first-child { font-weight: 680; }
.manual-note { max-width: 760px; margin: 22px auto 0; color: var(--gray); text-align: center; font-size: 13px; line-height: 1.55; }

/* Footer with the accepted Duna-based Ellie orchard artwork */
.site-footer { position: relative; min-height: 660px; overflow: hidden; color: #fff; background: #18272a; }
.footer-art, .footer-shade { position: absolute; inset: 0; }
.footer-art { background: url("ellie-footer-landscape.webp") center 44% / cover no-repeat; }
.footer-shade { background: linear-gradient(180deg,rgba(18,29,31,.08),rgba(18,29,31,.28) 52%,rgba(12,24,27,.78)), linear-gradient(90deg,rgba(12,24,27,.3),transparent 64%); }
.footer-content { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 38px; padding-top: 360px; }
.footer-brand { font-size: 21px; }
.footer-intro p { max-width: 260px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.55; }
.footer-group h2 { margin: 4px 0 18px; color: rgba(255,255,255,.52); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-group a { display: block; margin: 0 0 12px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 620; }
.footer-group a:hover { color: #fff; }
.footer-base { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: 12px; }

@media (max-width: 960px) {
  .announce-cloud { width: 180px; opacity: .86; }
  .site-nav-links { gap: 18px; }
  .media-card { grid-template-columns: 1fr; padding: 44px; }
  .screenshot-row { gap: 10px; }
  .setup-steps, .tool-grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .setup-step:last-child, .support-card:last-child { grid-column: 1 / -1; }
  .guide-wrap { grid-template-columns: 1fr; }
  .guide-aside { position: static; }
  .download-stage { grid-template-columns: 1fr 360px; gap: 30px; }
  .footer-content { grid-template-columns: 2fr repeat(2,1fr); padding-top: 335px; }
  .footer-intro { grid-row: span 2; }
}

@media (max-width: 720px) {
  .shell, .narrow { width: min(100% - 28px, 620px); }
  .announcement { font-size: 11px; }
  .announce-cloud { display: none; }
  .site-header { padding: 9px 10px; }
  .site-nav { position: relative; min-height: 56px; gap: 10px; padding: 7px 8px 7px 10px; }
  .site-header .site-nav { background: rgba(255,255,255,.82); border-color: rgba(0,0,0,.06); box-shadow: 0 8px 30px rgba(0,0,0,.07); backdrop-filter: blur(18px); }
  .page-dark .site-header .site-nav { background: rgba(22,22,24,.84); border-color: rgba(255,255,255,.08); }
  .nav-menu-button { display: block; margin-left: auto; }
  .nav-action { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .site-nav-links {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    display: grid; gap: 0; padding: 8px; border: 1px solid rgba(0,0,0,.06); border-radius: 24px;
    background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(0,0,0,.12); backdrop-filter: blur(20px);
    opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .page-dark .site-nav-links { background: rgba(22,22,24,.96); border-color: rgba(255,255,255,.08); }
  .site-header.is-menu-open .site-nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav-links a { padding: 14px 16px; border-radius: 16px; }
  .site-nav-links a:hover { background: rgba(127,127,127,.1); }
  .hero { padding: 168px 14px 68px; }
  .hero-icon { width: 70px; height: 70px; border-radius: 19px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .card-grid, .plan-grid, .mcp-demo, .permission-grid, .press-grid, .legal-pair { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 28px; }
  .media-card { min-height: 0; padding: 32px 24px; }
  .screenshot-row { width: 100%; gap: 7px; transform: none; }
  .screenshot-row .phone-shot { padding: 3px; border-radius: 23px; }
  .screenshot-row .phone-shot::after { top: 7px; width: 38px; height: 11px; }
  .screenshot-row .phone-shot img { border-radius: 20px; }
  .pricing-stage { padding-bottom: 72px; }
  .plan-card { min-height: 410px; padding: 32px; }
  .included { padding: 70px 0 90px; }
  .connection-panel { padding: 14px; border-radius: 28px; }
  .setup-steps, .tool-grid, .support-grid { grid-template-columns: 1fr; }
  .setup-step:last-child, .support-card:last-child { grid-column: auto; }
  .setup-step { min-height: 210px; }
  .endpoint-row { grid-template-columns: 1fr; }
  .endpoint-row code { white-space: normal; overflow-wrap: anywhere; }
  .copy-button { width: 100%; }
  .guide-step { grid-template-columns: 42px 1fr; padding: 26px 22px; }
  .download-stage { grid-template-columns: 1fr; padding: 168px 0 78px; text-align: center; }
  .download-copy .lede { margin-left: auto; }
  .download-copy .hero-actions { justify-content: center; }
  .download-phone { width: min(310px,90vw); }
  .legal-card { padding: 28px 24px; }
  .site-footer { min-height: 820px; }
  .footer-art { background-position: 45% 36%; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 28px 22px; padding-top: 410px; }
  .footer-intro { grid-column: 1 / -1; grid-row: auto; }
  .footer-base { flex-direction: column; margin-top: 34px; }
}

@media (max-width: 420px) {
  .announce-copy span:nth-child(2) { display: none; }
  .site-brand span { display: none; }
  .display { font-size: 44px; }
  .display.small { font-size: 38px; }
  .hero-actions .button { width: 100%; }
  .provider-mark { width: 58px; height: 58px; }
  .footer-content { padding-top: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
