:root {
  color-scheme: light;
  --ink: #13202b;
  --muted: #65717a;
  --paper: #f8f5ef;
  --paper-deep: #efeae1;
  --surface: #fffdf9;
  --surface-blue: #edf3f6;
  --line: rgba(19, 32, 43, 0.13);
  --accent: #2e517a;
  --accent-deep: #203956;
  --accent-soft: #dce8f0;
  --warm: #e9782a;
  --shadow: 0 24px 70px rgba(24, 45, 67, 0.12);
  --display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f5f1e9;
    --muted: #adb7bd;
    --paper: #111b24;
    --paper-deep: #17242e;
    --surface: #182631;
    --surface-blue: #1b303c;
    --line: rgba(245, 241, 233, 0.16);
    --accent: #9bb8d1;
    --accent-deep: #0d1b29;
    --accent-soft: #294454;
    --warm: #ff9a53;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  }

  .button--primary {
    background: #b1c9dc;
    color: #0d1b29;
  }

  .button--primary:hover {
    background: #d2e1eb;
    color: #0d1b29;
  }

  .privacy-panel .eyebrow {
    color: #d2e1eb;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
  border-radius: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 5px 18px rgba(46, 81, 122, 0.18);
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.88rem;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.site-nav .nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.site-nav .nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--warm) 16%, transparent);
}

.eyebrow-slash {
  color: var(--muted);
  font-weight: 400;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-height: min(710px, calc(100svh - 78px));
  padding-top: 76px;
  padding-bottom: 96px;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 650px;
  color: var(--ink);
}

.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-note,
.hero-copy .text-link {
  color: var(--ink);
}

.hero-copy .hero-lede,
.hero-copy .hero-note {
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  line-height: 1.03;
}

h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-lede {
  max-width: 610px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.48;
}

.hero-lede em,
.closing-card em {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: -0.035em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: inherit;
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(46, 81, 122, 0.22);
}

.button--primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.button--light {
  background: #fff;
  color: #203956;
}

.button--light:hover {
  background: var(--accent-soft);
  color: #203956;
}

.button--soft {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.button--soft:hover {
  background: var(--accent);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent);
}

.hero-note {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-note strong {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  z-index: 0;
  justify-self: end;
  width: min(100%, 390px);
  min-width: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb--one {
  top: -72px;
  right: -52px;
  width: 250px;
  height: 250px;
  background: color-mix(in srgb, var(--accent-soft) 68%, transparent);
}

.hero-orb--two {
  bottom: 9%;
  left: -64px;
  width: 135px;
  height: 135px;
  border: 1px solid color-mix(in srgb, var(--warm) 40%, transparent);
}

.device-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(480px, 67svh, 640px);
  margin: 0 auto;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 47px;
  background: var(--accent-deep);
  box-shadow: 0 28px 70px rgba(31, 56, 82, 0.27);
  transform: rotate(2.2deg);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 37px;
}

.image-caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0 13%;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.caption-rule {
  width: 34px;
  height: 1px;
  background: var(--warm);
}

.section {
  padding: 124px 0;
}

.section--quiet {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 62px;
}

.section-intro > p {
  max-width: 425px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro--wide {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature-card {
  min-height: 235px;
  padding: 23px 29px 17px 0;
  border-top: 1px solid var(--line);
}

.feature-card + .feature-card {
  padding-left: 27px;
  border-left: 1px solid var(--line);
}

.feature-index {
  margin-bottom: 43px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.section--screens {
  background: var(--paper);
}

.screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.09fr) minmax(280px, 0.91fr);
  align-items: start;
  gap: 22px;
}

.shot,
.shot-column {
  min-width: 0;
}

.shot-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.shot-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-blue);
  box-shadow: 0 16px 40px rgba(30, 52, 72, 0.08);
}

.shot-window::after {
  position: absolute;
  inset: 0;
  border: 8px solid color-mix(in srgb, var(--surface) 78%, transparent);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.shot--large .shot-window {
  max-height: 700px;
}

.shot-column .shot-window {
  max-height: 480px;
}

.shot-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.shot--large .shot-window img {
  object-position: top;
}

.shot figcaption,
.shot > figcaption {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 17px 2px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.shot figcaption strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.section--privacy {
  padding-top: 40px;
  background: var(--paper);
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 110px);
  padding: clamp(38px, 7vw, 88px);
  overflow: hidden;
  border-radius: 38px;
  background: var(--accent-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.privacy-panel h2 {
  max-width: 440px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.privacy-panel .eyebrow {
  color: var(--accent-soft);
}

.eyebrow--light {
  margin-top: 31px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-copy {
  align-self: end;
  max-width: 510px;
}

.privacy-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.18rem;
  line-height: 1.52;
}

.privacy-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 37px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
}

.privacy-list li {
  position: relative;
  padding-left: 25px;
}

.privacy-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  color: var(--warm);
  content: "↗";
  font-weight: 700;
}

.section--closing {
  padding-top: 146px;
  padding-bottom: 146px;
}

.closing-card {
  max-width: 820px;
  text-align: center;
}

.closing-card .eyebrow {
  justify-content: center;
}

.closing-card h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.closing-card > p:not(.eyebrow) {
  max-width: 475px;
  margin: 26px auto 0;
  color: var(--muted);
}

.closing-card .button-row {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 104px;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand--footer {
  color: var(--ink);
  font-size: 0.9rem;
}

.footer-inner > p {
  margin: 0;
}

.prose-shell {
  width: min(790px, calc(100% - 48px));
  margin-inline: auto;
  padding: 88px 0 124px;
}

.prose-header {
  margin-bottom: 52px;
}

.prose-header h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.prose-header .lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.5;
}

.policy-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 64px;
  padding: 23px 25px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 20px;
  background: var(--surface-blue);
}

.summary-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.policy-summary strong {
  display: block;
  color: var(--accent);
  font-size: 0.95rem;
}

.policy-summary p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.prose {
  max-width: 680px;
}

.prose section {
  margin-top: 56px;
}

.prose section:first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 0 0 15px;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.prose h3 {
  margin: 25px 0 5px;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.prose p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.prose strong {
  color: var(--ink);
}

.prose code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--paper-deep);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em;
}

.prose a,
.contact-link {
  color: var(--accent);
  font-weight: 650;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
  padding: 28px;
  border-radius: 24px;
  background: var(--accent-deep);
  color: #fff;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: var(--warm);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.contact-card .eyebrow {
  margin-bottom: 6px;
  color: var(--accent-soft);
}

.contact-card h2 {
  margin: 0;
  font-size: 1.75rem;
}

.contact-card p:not(.eyebrow) {
  max-width: 470px;
  margin: 7px 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-link {
  color: #fff;
  text-decoration-color: var(--warm);
}

.contact-link:hover {
  color: var(--warm);
}

.requirements {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 76px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.91rem;
}

.requirements-label {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.requirements strong {
  color: var(--ink);
}

.faq > .eyebrow {
  margin-bottom: 25px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: "+";
  font-family: var(--text);
  font-size: 1.5rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

.answer {
  max-width: 620px;
  padding: 0 38px 24px 0;
}

.answer p {
  font-size: 0.97rem;
}

@media (max-width: 930px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 350px);
    gap: 45px;
  }

  h1 {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

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

  .feature-card {
    padding-right: 24px;
  }

  .feature-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .feature-card:nth-child(n + 3) {
    margin-top: 25px;
  }

  .privacy-panel {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .container,
  .prose-shell {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.8rem;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 95px;
  }

  .hero-visual {
    align-self: center;
    width: min(100%, 410px);
    margin-top: 18px;
  }

  .device-frame {
    height: 560px;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro,
  .section-intro--wide {
    display: block;
    margin-bottom: 45px;
  }

  .section-intro > p {
    margin-top: 22px;
  }

  .screen-grid {
    display: block;
  }

  .shot--large .shot-window {
    max-height: 620px;
  }

  .shot-column {
    margin-top: 30px;
  }

  .shot-column .shot-window {
    max-height: 390px;
  }

  .privacy-panel {
    display: block;
    padding: 38px 28px 44px;
    border-radius: 28px;
  }

  .privacy-copy {
    margin-top: 47px;
  }

  .section--closing {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 15px 24px;
    padding: 24px 0;
  }

  .footer-inner > p {
    width: 100%;
  }

  .prose-shell {
    padding-top: 70px;
    padding-bottom: 95px;
  }
}

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

  .brand span {
    font-size: 0.94rem;
  }

  .site-nav {
    gap: 12px;
  }

  h1,
  .prose-header h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    padding-left: 5px;
  }

  .feature-grid {
    display: block;
  }

  .feature-card,
  .feature-card + .feature-card,
  .feature-card:nth-child(3) {
    min-height: auto;
    margin: 0;
    padding: 23px 0 28px;
    border-right: 0;
    border-left: 0;
  }

  .feature-index {
    margin-bottom: 25px;
  }

  .shot-column {
    grid-template-columns: 1fr;
  }

  .shot-column .shot-window {
    max-height: 540px;
  }

  .privacy-panel h2 {
    font-size: 2.75rem;
  }

  .privacy-copy .button {
    width: auto;
  }

  .prose-header .lede {
    font-size: 1.12rem;
  }

  .policy-summary,
  .contact-card {
    padding: 21px;
  }

  .policy-summary {
    gap: 13px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .requirements {
    display: grid;
  }

  summary {
    font-size: 1.08rem;
  }
}

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

  .button {
    transition: none;
  }
}
