@font-face {
  font-family: "Fraunces";
  src: url("Vision/Shared/Fonts/Fraunces-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("Vision/Shared/Fonts/Inter-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #4e3358;
  --muted: rgba(78, 51, 88, 0.62);
  --faint: rgba(78, 51, 88, 0.42);
  --line: rgba(78, 51, 88, 0.13);
  --panel: rgba(255, 255, 255, 0.62);
  --panel-raised: rgba(255, 255, 255, 0.78);
  --violet: #a87fe0;
  --pink: #e87bb8;
  --gold: #d9a05f;
  --gradient: linear-gradient(110deg, var(--violet), var(--pink) 48%, var(--gold));
  --page-gradient: linear-gradient(135deg, #f7ebf3 0%, #f3dce9 42%, #f6dfd2 100%);
  --btn-bg: #4e3358;
  --btn-fg: #f7ebf3;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-card: 24px;
  --radius-panel: 26px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f4ecf5;
    --muted: rgba(244, 236, 245, 0.66);
    --faint: rgba(244, 236, 245, 0.44);
    --line: rgba(244, 236, 245, 0.14);
    --panel: rgba(255, 255, 255, 0.05);
    --panel-raised: rgba(255, 255, 255, 0.09);
    --violet: #b795e8;
    --pink: #ef95c6;
    --gold: #e0b177;
    --page-gradient: linear-gradient(150deg, #0f0b12 0%, #17101c 46%, #1d1319 100%);
    --btn-bg: #f4ecf5;
    --btn-fg: #241a2a;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page-gradient);
  background-attachment: fixed;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; top: 12px; background: var(--btn-bg); color: var(--btn-fg); padding: 10px 16px; border-radius: 999px; font-size: 12px; z-index: 10; }
.skip-link:focus { left: 24px; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.ambient-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.ambient { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(1px); z-index: -1; }
.ambient-top { width: 720px; height: 520px; top: -300px; right: -180px; background: radial-gradient(ellipse, rgba(168, 127, 224, .22), transparent 68%); }
.ambient-bottom { width: 620px; height: 520px; top: 740px; left: -320px; background: radial-gradient(ellipse, rgba(232, 123, 184, .16), transparent 68%); }

/* Header */
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; padding-top: 18px; position: relative; z-index: 2; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 21px; letter-spacing: -.02em; }
.brand-mark { width: 27px; height: 27px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; position: relative; }
.brand-mark::before { content: ""; width: 17px; height: 17px; border: 2px solid transparent; border-top-color: var(--violet); border-right-color: var(--pink); border-radius: 50%; transform: rotate(-32deg); }
.brand-mark span { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); right: 2px; top: 3px; }
.brand-mark.small { width: 19px; height: 19px; }
.brand-mark.small::before { width: 12px; height: 12px; border-width: 1px; }
.brand-mark.small span { width: 3px; height: 3px; right: 1px; top: 2px; }
.brand-name { font-style: italic; font-weight: 350; }
.site-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.site-nav a, .site-footer a, .back-link { transition: color .2s ease; }
.site-nav a:hover, .site-footer a:hover, .back-link:hover { color: var(--ink); }
.back-link { color: var(--muted); font-size: 12px; }

/* Typography */
.eyebrow, .section-label { color: var(--faint); text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .19em; line-height: 1.5; margin: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 340; letter-spacing: -.05em; }
h1 { font-size: clamp(46px, 5.4vw, 74px); line-height: 1.02; max-width: 640px; margin: 0 0 24px; }
h2 { font-size: clamp(38px, 4.4vw, 60px); line-height: 1.02; margin: 0; }
h1 em, h2 em { font-style: italic; font-weight: 300; background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; line-height: 1.1; padding-bottom: 4px; display: inline-block; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 15px 26px; font-size: 12px; font-weight: 700; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--btn-bg); color: var(--btn-fg); box-shadow: 0 10px 35px rgba(78,51,88,.18); }
.button-primary:hover { box-shadow: 0 14px 45px rgba(232,123,184,.28); }
.button-light { background: #f7ebf3; color: #4e3358; }
.button.is-inert { cursor: default; opacity: .82; }
.button.is-inert:hover { transform: none; }
.text-link { color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.cta-status { color: var(--faint); font-size: 11px; line-height: 1.6; margin: 22px 0 0; max-width: 380px; }

/* Hero */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: 64px; align-items: center; padding: 40px 0 96px; }
.hero-copy { position: relative; z-index: 1; }
.hero-lede { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 340px; height: 430px; border-radius: 50%; background: radial-gradient(ellipse, rgba(232,123,184,.22), transparent 68%); filter: blur(18px); }
.visual-orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; transform: rotate(-25deg); }
.orbit-one { width: 430px; height: 265px; }
.orbit-two { width: 340px; height: 470px; transform: rotate(25deg); border-color: rgba(168,127,224,.22); }
.phone-frame { width: min(290px, 80%); padding: 8px; border-radius: 40px; background: linear-gradient(145deg, #3c3441, #19171b 42%, #09090a); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 40px 100px rgba(0,0,0,.5); position: relative; transform: rotate(3deg); z-index: 1; }
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 33px; }
.phone-speaker { position: absolute; z-index: 2; top: 14px; left: 50%; width: 83px; height: 22px; background: #080809; transform: translateX(-50%); border-radius: 99px; }

/* Showcase: asymmetric grid, one wide cell then two */
.showcase { padding: 96px 0 40px; }
.answer { max-width: 62ch; margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.showcase-grid { display: grid; grid-template-columns: 1.62fr 1fr; gap: 14px; margin-top: 54px; }
.showcase-cell { position: relative; overflow: hidden; border-radius: var(--radius-card); border: 1px solid var(--line); background: var(--panel); padding: 28px; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.showcase-cell.cell-wide { grid-row: span 2; }
.showcase-cell.cell-tinted { background: linear-gradient(150deg, rgba(168,127,224,.20), rgba(232,123,184,.12) 55%, rgba(217,160,95,.14)); }
.cell-text h3 { font: 400 23px/1.12 var(--serif); letter-spacing: -.03em; margin: 0 0 12px; }
.cell-text p { color: var(--muted); font-size: 13px; line-height: 1.75; margin: 0; max-width: 42ch; }
.showcase-cell img { display: block; width: 100%; max-width: 250px; height: auto; border-radius: 18px 18px 0 0; align-self: center; margin-bottom: -110px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.showcase-cell.cell-wide img { max-width: 300px; margin-bottom: -150px; }

/* Steps: split with an ordered list, no numbered labels */
.steps { padding: 180px 0 120px; }
.steps h2 { max-width: 18ch; margin-bottom: 56px; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.steps-list li { padding-top: 26px; border-top: 1px solid var(--line); }
.steps-list h3 { font: 400 27px/1.1 var(--serif); letter-spacing: -.035em; margin: 0 0 10px; }
.steps-list p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0; max-width: 52ch; }

/* Promise: full width statement */
.promise { padding: 60px 0 130px; text-align: center; }
.promise .eyebrow { margin-bottom: 18px; }
.promise h2 { max-width: 15ch; margin: 0 auto; }
.promise-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 62px; text-align: left; }
.promise-facts p { color: var(--muted); font-size: 13px; line-height: 1.75; margin: 0; padding-top: 22px; border-top: 1px solid var(--line); }
.promise-facts strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -.02em; margin-bottom: 7px; }

/* Final call to action */
.cta-section { padding-bottom: 110px; }
.cta-panel { padding: 52px; border-radius: var(--radius-panel); background: linear-gradient(122deg, #4e3358, #6a466d 49%, #9c6e68); color: #f7ebf3; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: end; gap: 34px; }
.cta-panel::after { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; top: -210px; right: -35px; background: radial-gradient(ellipse, rgba(217,160,95,.42), transparent 70%); pointer-events: none; }
.cta-panel h2 { position: relative; z-index: 1; }
.cta-panel h2 em { background: linear-gradient(110deg, #f3d9ee, #f8c9a6); background-clip: text; -webkit-background-clip: text; color: transparent; }
.cta-panel p { position: relative; z-index: 1; color: rgba(247,235,243,.72); font-size: 13px; line-height: 1.7; margin: 20px 0 0; max-width: 42ch; }
.cta-panel .button { position: relative; z-index: 1; flex-shrink: 0; }

/* Footer */
.site-footer { padding: 34px 0 44px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 26px; color: var(--muted); font-size: 11px; }
.site-footer p { margin: 8px 0 0; }
.site-footer nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-left { display: grid; gap: 2px; }
.footer-brand { color: var(--ink); font-size: 16px; }

/* Entrance: on load only, so nothing ever depends on a scroll event */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-visual { animation: rise .7s cubic-bezier(.22,.9,.25,1) backwards; }
  .hero-copy > *:nth-child(2) { animation-delay: .06s; }
  .hero-copy > *:nth-child(3) { animation-delay: .12s; }
  .hero-visual { animation-delay: .1s; }
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Shared interior pages */
.legal-page, .support-page { min-height: 100vh; }
.legal-layout { display: grid; grid-template-columns: minmax(240px, .65fr) minmax(0, 1.3fr); gap: 90px; padding: 122px 0 150px; }
.legal-heading { position: sticky; top: 40px; align-self: start; }
.legal-heading h1, .support-intro h1 { font-size: clamp(50px, 5.2vw, 75px); margin: 22px 0 24px; }
.legal-meta { color: var(--faint); font-size: 11px; }
.legal-content { max-width: 690px; }
.legal-content .lead { color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.35; letter-spacing: -.02em; margin-bottom: 61px; }
.legal-content section { border-top: 1px solid var(--line); padding: 29px 0 34px; }
.legal-content h2 { font: 500 14px/1.3 var(--sans); letter-spacing: .01em; margin: 0 0 15px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 13px; line-height: 1.8; }
.legal-content p { margin-bottom: 14px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { padding-left: 20px; margin: 13px 0 16px; }
.legal-content li { padding-left: 5px; margin-bottom: 6px; }
.legal-content a { color: var(--pink); text-decoration: underline; text-decoration-color: rgba(255,158,214,.35); text-underline-offset: 3px; }
.legal-signoff { font: italic 20px var(--serif) !important; color: var(--ink) !important; padding-top: 23px; }
.support-layout { min-height: 650px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; padding: 135px 0 160px; }
.support-intro > p:not(.eyebrow):not(.placeholder-message) { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0 0 29px; }
.support-email { display: inline-flex; align-items: center; gap: 12px; color: var(--pink); border-bottom: 1px solid rgba(255,158,214,.3); padding-bottom: 9px; font-size: 14px; }
.support-email span { font-size: 17px; }
.placeholder-message { color: var(--faint); font-size: 11px; line-height: 1.5; margin: 15px 0 0; }
.placeholder-message.visible { max-width: 280px; margin-top: 22px; }
.faq-section { padding-top: 11px; }
.section-label { color: var(--faint); padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 25px 0; }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font: 400 20px var(--serif); letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--pink); font: 300 24px var(--sans); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 550px; color: var(--muted); font-size: 13px; line-height: 1.75; margin: 17px 35px 3px 0; }
.faq-list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .steps { padding: 130px 0 90px; }
  .steps-list { grid-template-columns: 1fr; gap: 0; }
  .steps-list li { padding: 26px 0; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-cell.cell-wide { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 800px) {
  .container { width: min(100% - 36px, 600px); }
  .site-header { height: auto; padding-top: 20px; flex-wrap: wrap; gap: 14px; }
  .site-nav { gap: 20px; }
  .site-nav a:first-child { display: none; }
  .hero { display: flex; flex-direction: column; gap: 24px; align-items: stretch; padding: 34px 0 60px; }
  h1 { font-size: clamp(42px, 12vw, 62px); }
  .hero-lede { font-size: 15px; }
  .phone-frame { width: min(270px, 74%); }
  .showcase { padding: 60px 0 20px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .showcase-cell.cell-wide { grid-column: auto; }
  .showcase-cell { min-height: 0; padding: 24px; }
  .showcase-cell img, .showcase-cell.cell-wide img { max-width: 210px; margin-bottom: -90px; }
  .steps h2 { margin-bottom: 34px; }
  .steps-list h3 { font-size: 22px; }
  .promise { padding: 40px 0 90px; }
  .promise-facts { grid-template-columns: 1fr; gap: 0; margin-top: 44px; }
  .promise-facts p { padding: 20px 0; border-top: 1px solid var(--line); }
  .cta-section { padding-bottom: 80px; }
  .cta-panel { padding: 32px; align-items: start; flex-direction: column; gap: 28px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-footer nav { gap: 18px; }
  .legal-layout, .support-layout { display: block; padding: 92px 0 110px; }
  .legal-heading { position: static; margin-bottom: 80px; }
  .legal-content .lead { font-size: 20px; margin-bottom: 45px; }
  .support-intro { margin-bottom: 90px; }
  .support-intro > p:not(.eyebrow):not(.placeholder-message) { max-width: 430px; }
}

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