/* ==========================================================================
   Telos Note — site styles
   Warm ivory surfaces · graphite typography · selective blue for meeting/AI
   ========================================================================== */

:root {
  color-scheme: light;

  /* Surfaces */
  --paper: #fdfaf5;
  --paper-soft: #f7f1e8;
  --paper-blue: #eef1fa;
  --paper-warm: #fffaf3;
  --card: #ffffff;

  /* Ink */
  --ink: #17181c;
  --ink-soft: #545a63;
  --ink-mute: #656b76;

  /* Accents */
  --warm-accent: #96543c;
  --warm-deep: #7d4530;
  --blue: #2f68f4;
  --blue-dark: #1f4fc6;
  --blue-soft: #8fb0ff;

  /* Lines */
  --rule: rgba(60, 44, 30, 0.14);
  --rule-soft: rgba(60, 44, 30, 0.08);
  --rule-dark: rgba(255, 255, 255, 0.14);

  /* Dark chapters */
  --dark: #0b0c10;
  --dark-soft: #14161c;

  /* Radii */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-panel: clamp(22px, 2.6vw, 44px);

  /* Warm shadows */
  --shadow: 0 34px 80px -32px rgba(58, 42, 28, 0.34), 0 6px 20px -12px rgba(58, 42, 28, 0.14);
  --shadow-soft: 0 22px 54px -28px rgba(58, 42, 28, 0.26), 0 3px 12px -8px rgba(58, 42, 28, 0.1);

  /* Measure & rhythm */
  --gutter: clamp(20px, 3.2vw, 40px);
  --max: 1240px;
  --section-y: clamp(72px, 7.6vw, 116px);

  /* Type */
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

/* The height attribute must not win over the fluid width. */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: 8px;
}

.dark-section a:focus-visible,
.dark-section summary:focus-visible,
.final-cta a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--blue-soft);
}

/* Fixed header must not swallow anchor targets. */
[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid transparent;
  background: rgba(253, 250, 245, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  border-color: var(--rule-soft);
  background: rgba(253, 250, 245, 0.9);
  box-shadow: 0 10px 30px -18px rgba(58, 42, 28, 0.3);
}

.nav-shell {
  width: min(100% - var(--gutter) * 2, var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 4px 12px rgba(58, 42, 28, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.mobile-store-link {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: #2b2d33;
  box-shadow: 0 14px 28px -14px rgba(23, 24, 28, 0.6);
}

.button.secondary {
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--card);
  box-shadow: 0 14px 28px -18px rgba(58, 42, 28, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(60, 44, 30, 0.07);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span {
  margin-block: 4px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

main {
  overflow: clip;
}

.section {
  position: relative;
  padding: var(--section-y) var(--gutter);
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

/* Quiet bands dissolve into the page rather than butting against it. */
.quiet-section {
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--paper-soft) 9%,
    var(--paper-soft) 91%,
    var(--paper) 100%
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--warm-accent);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.display,
.section-title,
.legal-title,
.support-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.03;
  text-wrap: balance;
}

.display {
  max-width: 42ch;
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 1.01;
}

/* Keeps hyphenated phrases from breaking at the hyphen. */
.nb {
  white-space: nowrap;
}

.section-title {
  max-width: 20ch;
  font-size: clamp(32px, 3.5vw, 56px);
}

.section-lede,
.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.012em;
  line-height: 1.45;
  text-wrap: pretty;
}

/* Shared head block: title left, lede right. */
.workflow-head,
.devices-head,
.plans-head,
.outputs-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.workflow-head .section-lede,
.devices-head .section-lede,
.plans-head .section-lede,
.outputs-head .section-lede {
  max-width: 46ch;
  margin: 0;
  padding-bottom: 6px;
}

/* ==========================================================================
   Product imagery
   The approved App Store exports are complete compositions. They are shown
   in full at their natural aspect ratio — never cropped, zoomed or stretched.
   ========================================================================== */

.shot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .shot:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  }
}

.shot picture {
  display: contents;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop uses a dedicated export with the duplicate headline removed, so
   the complete product composition can render without responsive cropping. */
.shot--hero img {
  height: auto;
  object-fit: contain;
}

.shot--teleprompter {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0a0a0b;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

.shot--phone {
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: clamp(112px, 13vh, 160px) var(--gutter) clamp(20px, 3vw, 40px);
  background:
    radial-gradient(120% 78% at 8% 0%, rgba(196, 138, 90, 0.14), transparent 58%),
    radial-gradient(64% 48% at 98% 2%, rgba(47, 104, 244, 0.05), transparent 62%),
    linear-gradient(180deg, var(--paper-warm) 0%, #fbf5ec 46%, var(--paper) 100%);
}

.hero .eyebrow {
  color: var(--warm-accent);
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lede {
  max-width: 40ch;
  margin: clamp(20px, 2.2vw, 30px) 0 clamp(26px, 2.8vw, 36px);
}

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

.hero-note {
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.005em;
}

.hero-visual {
  margin: clamp(36px, 4vw, 62px) 0 0;
}

/* ==========================================================================
   Trust row
   ========================================================================== */

.trust-row {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin: 0 auto;
  padding: clamp(30px, 3.6vw, 46px) 0 clamp(44px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--rule-soft);
}

.trust-item {
  padding: 2px clamp(18px, 2.2vw, 30px);
  border-right: 1px solid var(--rule-soft);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.trust-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Workflow
   ========================================================================== */

.workflow-section {
  margin-inline: var(--gutter);
  padding-inline: clamp(24px, 4vw, 72px);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(78% 66% at 6% 0%, rgba(196, 138, 90, 0.16), transparent 60%),
    radial-gradient(68% 50% at 100% 100%, rgba(47, 104, 244, 0.08), transparent 62%),
    #1a1817;
  color: white;
}

.workflow-section .eyebrow {
  color: #d5ad91;
}

.workflow-section .section-title,
.workflow-section .workflow-step h3 {
  color: white;
}

.workflow-section .section-lede,
.workflow-section .workflow-step p {
  color: #c7c1bb;
}

.workflow-section .workflow-step span {
  color: #938d88;
}

.workflow-line {
  margin-top: clamp(48px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
}

.workflow-section .workflow-line,
.workflow-section .workflow-step {
  border-color: var(--rule-dark);
}

.workflow-step {
  position: relative;
  padding: 32px clamp(16px, 2vw, 28px) 0 0;
}

.workflow-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--paper);
  content: "";
}

.workflow-section .workflow-step::before {
  box-shadow: 0 0 0 5px #1a1817;
}

.workflow-step:nth-child(1)::before { opacity: 0.4; }
.workflow-step:nth-child(2)::before { opacity: 0.55; }
.workflow-step:nth-child(3)::before { opacity: 0.7; }
.workflow-step:nth-child(4)::before { opacity: 0.85; }
.workflow-step:nth-child(5)::before { opacity: 1; }

.workflow-step span {
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.workflow-step h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.workflow-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Device gallery
   ========================================================================== */

.devices-section {
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--paper-soft) 10%,
    var(--paper-soft) 90%,
    var(--paper) 100%
  );
}

.device-gallery {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px);
  align-items: start;
}

.device-shot {
  margin: 0;
}

.device-shot-raised {
  margin-top: clamp(-34px, -2.2vw, 0px);
}

.device-shot figcaption {
  padding: 22px 2px 0;
}

.device-shot strong,
.device-shot span {
  display: block;
}

.device-shot strong {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.device-shot span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Dark chapter — teleprompter
   ========================================================================== */

.dark-section {
  position: relative;
  margin-inline: var(--gutter);
  padding-inline: clamp(24px, 4vw, 72px);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(80% 60% at 78% 0%, rgba(47, 104, 244, 0.16), transparent 62%),
    var(--dark);
  color: white;
}

.dark-section .eyebrow {
  color: #c8a889;
}

.dark-section .section-lede {
  color: #a7b3c8;
}

.dark-section .section-title {
  max-width: 22ch;
}

.teleprompter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.teleprompter-copy {
  max-width: 920px;
}

.teleprompter-copy .section-lede {
  max-width: 42ch;
  margin: clamp(18px, 2vw, 26px) 0 clamp(24px, 3vw, 34px);
}

.feature-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 64px);
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--rule-dark);
  color: #d6dbe6;
  font-size: 15px;
}

.feature-list li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-soft);
  content: "";
}

.teleprompter-visual {
  position: relative;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.platform-strip {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #8e99ab;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ==========================================================================
   Meeting notepad
   ========================================================================== */

.meeting-notepad-section {
  overflow: hidden;
  background:
    radial-gradient(72% 62% at 86% 34%, rgba(47, 104, 244, 0.08), transparent 64%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 52%, var(--paper) 100%);
}

.meeting-notepad-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.meeting-notepad-copy {
  max-width: 520px;
}

.meeting-notepad-copy .section-lede {
  max-width: 40ch;
  margin: clamp(18px, 2vw, 26px) 0 clamp(28px, 3vw, 40px);
}

.notepad-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notepad-benefits li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 550;
}

.notepad-benefits li:last-child {
  border-bottom: 1px solid var(--rule-soft);
}

.notepad-benefits li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.meeting-notepad-visual {
  display: flex;
  justify-content: center;
}

.shot--meeting-notepad {
  width: min(100%, 620px);
  overflow: visible;
  border: 0;
  border-radius: 48px;
  background: transparent;
  box-shadow: 0 32px 74px -36px rgba(19, 20, 24, 0.48);
}

/* ==========================================================================
   Split sections
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5.4vw, 84px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.split-copy .section-lede {
  max-width: 44ch;
  margin: clamp(18px, 2vw, 26px) 0 clamp(24px, 3vw, 34px);
}

.split-copy > p:last-child {
  margin-bottom: 0;
}

.split-copy a:not(.button) {
  color: var(--blue-dark);
  font-weight: 550;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(18px, 2vw, 30px);
  margin-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--rule);
}

.proof-point {
  padding: 22px 0 0;
}

.proof-point:nth-child(n + 3) {
  margin-top: 22px;
  border-top: 1px solid var(--rule-soft);
}

.proof-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.proof-point span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Outputs
   ========================================================================== */

.outputs-head {
  margin-bottom: clamp(40px, 5vw, 68px);
}

.outputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
}

.outputs-grid figure {
  margin: 0;
}

.outputs-grid .shot {
  box-shadow: var(--shadow-soft);
}

.outputs-grid figcaption {
  padding: 18px 2px 0;
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Notebook — the one blue-leaning surface
   ========================================================================== */

.notebook-section {
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    #f6f5fa 16%,
    #f3f3f9 84%,
    var(--paper) 100%
  );
}

.notebook-section .eyebrow {
  color: var(--blue-dark);
}

.notebook-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.capability-list {
  margin-top: clamp(26px, 3vw, 38px);
}

.capability {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.capability b {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.capability strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.capability span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   Plans
   ========================================================================== */

.plans-grid {
  margin-top: clamp(44px, 5.4vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 36px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.plan h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.plan > p {
  min-height: 48px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.plan li::before {
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  content: "✓";
}

.plans-note {
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  max-width: 70ch;
  color: var(--ink-mute);
  font-size: 13px;
  line-height: 1.55;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item summary {
  padding: 22px 44px 22px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

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

.faq-item summary::after {
  position: absolute;
  right: 4px;
  top: 22px;
  color: var(--blue-dark);
  content: "+";
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 68ch;
  padding: 0 30px 26px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   Closing block
   ========================================================================== */

.final-cta {
  margin-top: clamp(20px, 3vw, 40px);
  padding: clamp(76px, 8.4vw, 128px) var(--gutter);
  border-radius: var(--radius-panel) var(--radius-panel) 0 0;
  background:
    radial-gradient(70% 80% at 88% 8%, rgba(168, 97, 69, 0.22), transparent 60%),
    var(--ink);
  color: white;
}

.final-cta-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.final-cta h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.03;
  text-wrap: balance;
}

.final-cta-copy p {
  max-width: 40ch;
  margin: 0 0 26px;
  color: #b9bfca;
  font-size: 18px;
  line-height: 1.5;
}

.final-cta .button {
  background: white;
  color: var(--ink);
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  background: #f1ece4;
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.6);
}

.site-footer {
  padding: 34px var(--gutter);
  border-top: 1px solid var(--rule-dark);
  background: var(--ink);
  color: #a8aeb9;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-inner > span a:hover,
.footer-inner > span a:focus-visible {
  color: white;
}

/* ==========================================================================
   Reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(0.22, 0.8, 0.24, 1), transform 800ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Legal & support pages
   ========================================================================== */

.legal-main,
.support-main {
  min-height: calc(100svh - 72px);
  padding: clamp(120px, 14vh, 168px) var(--gutter) clamp(72px, 8vw, 112px);
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 42%);
}

.legal-shell,
.support-shell {
  width: min(100%, 940px);
  margin: 0 auto;
}

.legal-head,
.support-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.legal-title,
.support-title {
  max-width: 18ch;
  font-size: clamp(38px, 5.4vw, 68px);
}

.legal-lede,
.support-lede {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
}

.legal-date {
  margin-top: 18px;
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 600;
}

.legal-content {
  max-width: 72ch;
}

.legal-content section {
  padding: clamp(30px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--rule);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.legal-content p,
.legal-content li {
  color: #4a5058;
  line-height: 1.62;
}

.legal-content a,
.support-main a:not(.button) {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-content ul {
  padding-left: 22px;
}

.support-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-groups {
  border-top: 1px solid var(--rule);
}

.support-group {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4.6vw, 70px);
  padding: clamp(34px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--rule);
}

.support-group h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 27px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.support-copy h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -0.012em;
}

.support-copy h3:not(:first-child) {
  margin-top: 28px;
}

.support-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

/* ==========================================================================
   Laptop / small-desktop
   ========================================================================== */

@media (max-width: 1180px) {
  .teleprompter-grid,
  .meeting-notepad-grid,
  .split,
  .split.reverse,
  .notebook-grid {
    gap: clamp(28px, 3.6vw, 48px);
  }

  .workflow-step p,
  .proof-point span,
  .trust-item span {
    font-size: 13.5px;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    /* backdrop-filter on .site-header makes it the containing block for this
       fixed panel, so an explicit height is required — `bottom: 0` collapses. */
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    padding: 30px var(--gutter) 40px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 19px;
    font-weight: 550;
  }

  .nav-links .mobile-store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    font-size: 16px;
    font-weight: 620;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .workflow-head,
  .devices-head,
  .plans-head,
  .outputs-head,
  .teleprompter-grid,
  .meeting-notepad-grid,
  .split,
  .split.reverse,
  .notebook-grid,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 4.4vw, 46px);
    align-items: start;
  }

  .workflow-head .section-lede,
  .devices-head .section-lede,
  .plans-head .section-lede,
  .outputs-head .section-lede {
    padding-bottom: 0;
  }

  .split.reverse .split-copy,
  .notebook-grid > .reveal:last-child {
    order: -1;
  }

  .workflow-line {
    margin-top: clamp(32px, 5vw, 48px);
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .workflow-step {
    padding: 20px 0 20px 32px;
    border-top: 1px solid var(--rule);
  }

  .workflow-step::before {
    top: 27px;
    box-shadow: none;
  }

  .workflow-step h3 {
    margin: 6px 0 6px;
  }

  .outputs-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan > p {
    min-height: 0;
  }

  .device-shot-raised {
    margin-top: 0;
  }

  .platform-strip {
    justify-content: flex-start;
  }

  .meeting-notepad-copy {
    max-width: 680px;
  }

  /* Everything below 1040 reads as one column. */
  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 0 clamp(20px, 3vw, 34px);
  }

  .trust-item {
    padding-inline: 0;
    border-right: 0;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    padding-bottom: 24px;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    padding-top: 24px;
    border-top: 1px solid var(--rule-soft);
  }

  .device-gallery {
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 52px);
  }

  .device-shot {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .final-cta h2,
  .display,
  .section-title {
    max-width: 22ch;
  }
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-block: clamp(64px, 13vw, 88px);
  }

  .hero {
    padding-top: 112px;
  }

  .display {
    max-width: none;
    font-size: clamp(38px, 11.2vw, 54px);
  }

  .section-title,
  .final-cta h2 {
    max-width: none;
    font-size: clamp(31px, 8.4vw, 44px);
  }

  .hero-lede,
  .section-lede {
    font-size: 17.5px;
  }

  .shot--hero {
    aspect-ratio: 0.58;
  }

  .shot--hero img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .shot {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .meeting-notepad-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .meeting-notepad-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .shot--meeting-notepad {
    border-radius: 32px;
  }

  .hero-visual {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    text-align: center;
  }

  .trust-row {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(1),
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    padding: 18px 0;
    border-top: 1px solid var(--rule-soft);
    border-right: 0;
  }

  .trust-item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .proof-point {
    padding: 18px 0 0;
  }

  .proof-point:nth-child(n + 2) {
    margin-top: 0;
    border-top: 1px solid var(--rule-soft);
  }

  .device-gallery {
    margin-top: 40px;
  }

  .dark-section {
    margin-inline: 12px;
    padding-inline: 22px;
  }

  .faq-item summary {
    font-size: 17.5px;
    padding-right: 38px;
  }

  .faq-answer {
    padding-right: 8px;
    font-size: 15.5px;
  }

  .final-cta {
    margin-inline: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 12px;
  }

  .support-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
