:root {
  --bg: #0E1215;
  --ink: #FFFFFF;
  --ink-2: rgba(255,255,255,0.68);
  --ink-3: rgba(255,255,255,0.5);
  --glass: rgba(255,255,255,0.06);
  --glass-2: rgba(255,255,255,0.09);
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.16);
  --green: #06402B;
  --green-2: #0A5238;
  --green-3: #052D1F;
  --mint: #7ED4A8;
  --cream: #F6F3EC;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', 'SF Mono', Menlo, monospace;
  --radius: 24px;
  --max: 1312px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--mint); }
img { max-width: 100%; display: block; }

/* ---------- ambient glows ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient span {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.9;
  will-change: transform;
}
.ambient .g1 { width: 1000px; height: 700px; left: -200px; top: -320px; background: radial-gradient(closest-side, rgba(6,64,43,0.95), rgba(6,64,43,0)); animation: drift1 26s ease-in-out infinite alternate; }
.ambient .g2 { width: 800px; height: 600px; right: -240px; top: -80px; background: radial-gradient(closest-side, rgba(52,86,120,0.7), rgba(52,86,120,0)); animation: drift2 32s ease-in-out infinite alternate; }
.ambient .g3 { width: 900px; height: 700px; left: 30%; bottom: -400px; background: radial-gradient(closest-side, rgba(6,64,43,0.6), rgba(6,64,43,0)); animation: drift3 38s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(140px, 90px) scale(1.08); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-120px, 140px) scale(1.06); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-180px, -80px); } }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
section, header.hero, header.dx-hero { padding-top: 0; padding-bottom: 120px; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
h1, h2, h3 { margin: 0; letter-spacing: -0.04em; line-height: 1.02; font-weight: 700; text-wrap: pretty; }
h1 { font-size: clamp(40px, 4.3vw, 58px); letter-spacing: -0.045em; line-height: 0.98; }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: 26px; letter-spacing: -0.03em; line-height: 1.1; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); max-width: 560px; }
.muted { color: var(--ink-2); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.dim { color: rgba(255,255,255,0.45); }

/* ---------- glass ---------- */
.glass {
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .4s, background .4s, box-shadow .5s;
}
.glass.hover:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--glass-2); box-shadow: 0 30px 60px rgba(0,0,0,0.35); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary { background: #fff; color: var(--bg); }
.btn-primary:hover { color: var(--bg); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,255,255,0.18); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(12px); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--green); }
.btn-cream:hover { color: var(--green); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.btn-sm { padding: 12px 20px; font-size: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; transition: padding .3s;
}
.nav .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.nav .brand svg { width: 28px; height: 28px; }
.nav .links {
  display: flex; align-items: center; gap: 4px; padding: 6px 8px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nav .links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 999px; transition: background .25s, color .25s; }
.nav .links a:hover, .nav .links a.active { background: rgba(255,255,255,0.10); color: #fff; }
.nav .menu { display: none; }

/* ---------- hero ---------- */
header.hero { padding-top: 72px; }
.hero .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.hero .copy { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px;
  border-radius: 999px; background: var(--glass); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
}
.badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(126,212,168,0.6); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(126,212,168,0.55); } 70% { box-shadow: 0 0 0 10px rgba(126,212,168,0); } 100% { box-shadow: 0 0 0 0 rgba(126,212,168,0); } }
.hero h1 .line { display: block; }
.hero .actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 6px; }
.hero .visual { position: relative; min-height: 520px; }
.chart-card { position: absolute; left: 0; top: 30px; width: min(520px, 100%); padding: 28px; box-shadow: 0 40px 80px rgba(0,0,0,0.45); animation: float 7s ease-in-out infinite; }
.chart-card .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; padding: 0 4px; }
.bars b { flex: 1; display: block; background: rgba(255,255,255,0.55); border-radius: 6px 6px 2px 2px; height: var(--h); transform-origin: bottom; transform: scaleY(0); animation: grow .9s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--i) * 90ms + 400ms); }
.bars b.after { background: var(--mint); }
@keyframes grow { to { transform: scaleY(1); } }
.chart-card .axis { display: flex; justify-content: space-between; margin-top: 20px; font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.7); }
.stat-card { position: absolute; right: 0; top: 330px; width: 300px; padding: 22px; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); box-shadow: 0 30px 60px rgba(0,0,0,0.45); animation: float 9s ease-in-out infinite reverse; display: flex; flex-direction: column; gap: 8px; }
.stat-card .k { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.stat-card .v { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.stat-card .d { font-size: 13px; color: rgba(255,255,255,0.6); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- problem ---------- */
.problem .grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.problem .sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.ledger { display: flex; flex-direction: column; gap: 16px; }
.ledger .row { display: grid; grid-template-columns: 120px 1fr 150px; gap: 24px; align-items: center; padding: 28px 32px; }
.ledger .m { font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
.ledger .t { font-size: 17px; color: rgba(255,255,255,0.88); }
.ledger .amt { font-family: var(--mono); font-size: 18px; text-align: right; font-variant-numeric: tabular-nums; }
.ledger .note { padding: 20px 32px 0; color: var(--ink-2); }

/* ---------- stages ---------- */
.stages .head { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin-bottom: 48px; }
.stages .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.card { padding: 32px; display: flex; flex-direction: column; gap: 16px; min-height: 300px; }
.card .num { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; }
.card p { margin: 0; font-size: 16px; color: var(--ink-2); }
.card.ai { background: linear-gradient(160deg, rgba(6,64,43,0.9), rgba(6,64,43,0.5)); border-color: rgba(126,212,168,0.25); box-shadow: 0 30px 60px rgba(6,64,43,0.35); }
.card.ai p { color: rgba(255,255,255,0.78); }
.principle { display: inline-flex; align-items: center; gap: 20px; padding: 18px 32px; border-radius: 999px; margin-top: 48px; }
.principle strong { font-size: 18px; letter-spacing: -0.01em; }

/* ---------- services ---------- */
.services .head { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin-bottom: 40px; }
.services .list { padding: 8px; border-radius: 28px; }
.services .item { display: grid; grid-template-columns: 56px 1.1fr 1.7fr 160px; gap: 28px; align-items: center; padding: 26px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); transition: background .3s; border-radius: 18px; }
.services .item:last-child { border-bottom: 0; }
.services .item:hover { background: rgba(255,255,255,0.04); }
.services .n { font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
.services .name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.services .desc { font-size: 15px; color: var(--ink-2); }
.services .price { font-family: var(--mono); text-align: right; font-size: 16px; }
.services .price.soft { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ---------- offer ---------- */
.offer { }
.offer .block {
  border-radius: 32px; padding: 80px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  background-image: linear-gradient(160deg, var(--green-2) 0%, var(--green) 45%, var(--green-3) 100%);
  box-shadow: 0 40px 80px rgba(6,64,43,0.35); color: var(--cream); position: relative; overflow: hidden;
}
.offer .block::after { content: ""; position: absolute; width: 600px; height: 600px; right: -200px; top: -300px; border-radius: 50%; background: radial-gradient(closest-side, rgba(246,243,236,0.10), rgba(246,243,236,0)); animation: drift2 24s ease-in-out infinite alternate; }
.offer .copy { display: flex; flex-direction: column; gap: 24px; position: relative; }
.offer .eyebrow { color: rgba(246,243,236,0.8); }
.offer h2 { font-size: clamp(40px, 4.5vw, 60px); }
.offer .lede { color: rgba(246,243,236,0.78); }
.offer .actions { display: flex; align-items: center; gap: 20px; }
.offer .price { font-family: var(--mono); font-size: 20px; }
.deliverables { background: rgba(246,243,236,0.08); border: 1px solid rgba(246,243,236,0.14); border-radius: 24px; padding: 12px 28px; position: relative; }
.deliverables .d { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(246,243,236,0.12); font-size: 17px; line-height: 1.45; }
.deliverables .d:last-child { border-bottom: 0; }
.deliverables .d span { font-family: var(--mono); font-size: 12px; color: rgba(246,243,236,0.7); padding-top: 4px; }

/* ---------- about ---------- */
.about { }
.about .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about .photo { border-radius: 28px; aspect-ratio: 4/5; background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-3); box-shadow: 0 40px 80px rgba(0,0,0,0.4); overflow: hidden; }
.about .photo img { width: 100%; height: 100%; object-fit: cover; }
.about .copy { display: flex; flex-direction: column; gap: 24px; }
.about h2 { font-size: clamp(32px, 3.2vw, 46px); }
.about .proof { display: flex; gap: 16px; flex-wrap: wrap; }
.about .proof .glass { padding: 20px 24px; border-radius: 20px; display: flex; flex-direction: column; gap: 4px; }
.about .proof .v { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.about .proof .k { font-size: 13px; color: var(--ink-2); }

/* ---------- cta ---------- */
.cta { padding-bottom: 100px; }
.cta .glass { padding: 80px; border-radius: 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.cta h2 { font-size: clamp(36px, 4vw, 56px); max-width: 760px; }
.cta p { margin: 0; max-width: 560px; color: var(--ink-2); font-size: 18px; }
.cta .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; padding-top: 6px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 0; }
footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
footer .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-bottom: 14px; }
footer .brand svg { width: 22px; height: 22px; }
footer p { margin: 0 0 14px; font-size: 14px; color: rgba(255,255,255,0.6); max-width: 320px; }
footer .col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.65); }
footer .col strong { color: #fff; }
footer .fine { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.55); }

/* ---------- diagnostic page ---------- */
header.dx-hero { padding-top: 72px; padding-bottom: 100px; }
.dx-hero .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.dx-hero .copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.dx-hero h1 { font-size: clamp(40px, 5.2vw, 72px); }
.dx-hero .actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dx-hero .box { padding: 36px; box-shadow: 0 40px 80px rgba(0,0,0,0.45); }
.dx-hero .box .head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; color: var(--ink-2); }
.dx-hero .box .head .mono { font-size: 22px; color: #fff; }
.dx-hero .box .d { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 17px; line-height: 1.45; }
.dx-hero .box .d:last-child { border-bottom: 0; }
.dx-hero .box .d span { font-family: var(--mono); font-size: 12px; color: var(--ink-3); padding-top: 4px; }
.steps { padding-bottom: 100px; }
.steps .head { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin-bottom: 40px; }
.steps .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.steps .card { min-height: 0; gap: 14px; }
.steps .card h3 { font-size: 24px; }
.book { padding-bottom: 100px; }
.book .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.book .sticky { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 20px; }
.book .facts { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink-2); padding-top: 8px; }
.form { padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; font-size: 15px; color: #fff; padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line); outline: none; transition: border-color .25s, background .25s;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.5); }
.form input:focus, .form select:focus, .form textarea:focus { border-color: rgba(126,212,168,0.6); background: rgba(255,255,255,0.09); }
.form select { appearance: none; -webkit-appearance: none; }
.form select option { color: #0E1215; }
.form textarea { min-height: 110px; resize: vertical; }
.form .foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; flex-wrap: wrap; }
.form .foot small { font-size: 13px; color: var(--ink-3); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 110ms); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: calc(var(--i, 0) * 120ms + 100ms); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero .grid, .problem .grid, .about .grid, .dx-hero .grid, .book .grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .visual { min-height: 0; padding-top: 12px; }
  .chart-card { position: relative; top: 0; width: 100%; }
  .stat-card { position: relative; top: 0; right: auto; width: 100%; margin-top: 16px; }
  .stages .cards, .steps .cards { grid-template-columns: 1fr; }
  .offer .block { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .services .item { grid-template-columns: 40px 1fr; gap: 12px 16px; }
  .services .desc { grid-column: 2; }
  .services .price { grid-column: 2; text-align: left; }
  footer .grid { grid-template-columns: 1fr 1fr; }
  .problem .sticky, .book .sticky { position: static; }
  section, header.hero, header.dx-hero { padding-bottom: 80px; }
  .cta .glass { padding: 40px 24px; }
}
@media (max-width: 720px) {
  .nav .links { display: none; }
  .nav .menu { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; background: var(--glass); border: 1px solid var(--line); }
  .nav .right { display: flex; align-items: center; gap: 10px; }
  header.hero { padding-top: 32px; }
  .hero .actions .btn { width: 100%; }
  .ledger .row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 20px; }
  .ledger .m { grid-column: 1 / -1; }
  .ledger .t { font-size: 15px; }
  .ledger .amt { font-size: 14px; }
  .ledger .note { padding: 8px 4px 0; font-size: 14px; }
  .form .two { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr; }
  .nav.open .links { display: flex; position: absolute; top: 80px; left: 24px; right: 24px; flex-direction: column; align-items: stretch; padding: 10px; border-radius: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .bars b { transform: none; }
}
html.static .reveal { opacity: 1; transform: none; transition: none; }
html.static .bars b { animation: none; transform: none; }
html.static .chart-card, html.static .stat-card, html.static .ambient span, html.static .badge i { animation: none; }
.brand em, footer .brand em { font-style: normal; font-weight: 500; color: #7ED4A8; letter-spacing: 0; }

/* ---------- path card (hero) ---------- */
.path-card { position: absolute; left: 0; top: 30px; width: min(520px, 100%); padding: 28px 28px 20px; box-shadow: 0 40px 80px rgba(0,0,0,0.45); animation: float 7s ease-in-out infinite; }
.path-card .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); }
.path-svg { width: 100%; height: auto; display: block; }
.path-svg text { font-family: var(--mono); font-size: 12px; fill: rgba(255,255,255,0.7); }
.path-svg text.prize { fill: #7ED4A8; font-weight: 500; }
.path-svg .draw { stroke-dasharray: 720; stroke-dashoffset: 720; animation: drawPath 2.2s cubic-bezier(.4,.1,.2,1) forwards; animation-delay: .6s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
.path-svg .node { opacity: 0; animation: nodeIn .6s ease-out forwards; }
.path-svg .n0 { animation-delay: .5s; } .path-svg .n1 { animation-delay: 1.2s; } .path-svg .n2 { animation-delay: 1.8s; } .path-svg .n3 { animation-delay: 2.6s; }
@keyframes nodeIn { to { opacity: 1; } }
.path-svg .n3 circle:first-child { animation: prizePulse 3s ease-in-out infinite; animation-delay: 3s; transform-origin: 474px 62px; }
@keyframes prizePulse { 0%,100% { transform: scale(1); opacity: .18; } 50% { transform: scale(1.6); opacity: .06; } }
html.static .path-svg .draw { stroke-dashoffset: 0; animation: none; }
html.static .path-svg .node { opacity: 1; animation: none; }
html.static .path-card { animation: none; }

/* ---------- guide ---------- */
.guide { }
.guide .block { padding: 48px; display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; border-radius: 32px; }
.guide .photo { border-radius: 22px; aspect-ratio: 4/5; background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-3); overflow: hidden; }
.guide .photo { position: relative; }
.guide .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.guide .photo span { padding: 0 24px; text-align: center; }
.guide .copy { display: flex; flex-direction: column; gap: 18px; }
.guide h2 { font-size: clamp(28px, 2.8vw, 40px); }
.guide .proof { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 6px; }
.guide .proof > div { display: flex; flex-direction: column; gap: 2px; padding-top: 16px; }
.guide .proof .v { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.guide .proof .k { font-size: 13px; color: var(--ink-2); }

/* ---------- success ---------- */
.success { }
.success .head { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin-bottom: 40px; }
.success .list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.success .item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 24px 28px; font-size: 17px; line-height: 1.5; }
.success .item .n { font-family: var(--mono); font-size: 13px; color: var(--ink-3); padding-top: 4px; }
.stages .head p, .services .head p { margin: 0; }
@media (max-width: 1024px) {
  .path-card { position: relative; top: 0; width: 100%; }
  .guide .block { grid-template-columns: 1fr; padding: 28px; }
  .guide .photo { max-width: 300px; }
  .success .list { grid-template-columns: 1fr; }
}
.hero h1 .punch { color: #FFFFFF; }
.hero h1 .punch em { font-style: normal; color: #7ED4A8; }
.access { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.access .option { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.access .option h3 { font-size: 24px; }
.access .option p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
@media (max-width: 1024px) { .access { grid-template-columns: 1fr; } }
.guide .photo-wrap { display: flex; flex-direction: column; gap: 14px; }
.guide .caption { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--ink-2); padding-left: 4px; }
.guide .caption strong { color: #fff; font-size: 16px; }
.form.done { gap: 16px; }
.form.done h3 { font-size: 28px; }
.form.done p { margin: 0; }
.form.done .small { font-size: 14px; }
.form.done .pay { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form.done .pay > div { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); }
.form.done .pay .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.form.done .pay .v { font-size: 17px; font-weight: 600; }
/* sticky nav backing once the page scrolls */
.nav.scrolled::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: rgba(14,18,21,0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); z-index: -1; }
.nav.scrolled { padding: 14px 0; }
/* two-step booking form */
.steps-bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 6px; }
.steps-bar .dots { display: flex; gap: 6px; }
.steps-bar .dots i { width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.14); display: block; }
.steps-bar .dots i.on { background: var(--mint); }
.form .step { display: flex; flex-direction: column; gap: 14px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form .field > span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); }
.form .choices { display: flex; flex-direction: column; gap: 10px; }
.form .choice { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); cursor: pointer; transition: border-color .25s, background .25s; }
.form .choice:has(input:checked) { border-color: rgba(126,212,168,0.6); background: rgba(126,212,168,0.06); }
.form .choice input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--mint); }
.form .choice strong { display: block; font-size: 15px; }
.form .choice em { display: block; font-style: normal; font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form { position: relative; }
.form .bad { border-color: rgba(255,120,120,0.7) !important; }
.form .err { color: #FFB4B4; font-size: 14px; }
.form .foot .btn-ghost { padding: 12px 18px; }
.form button:disabled { opacity: .6; }
.form .foot #dx-back { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
/* server-rendered pages: upload, confirm */
.mini { display: flex; flex-direction: column; gap: 20px; padding-top: 48px; padding-bottom: 120px; max-width: 820px; }
.card-page { padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.card-page h1 { font-size: clamp(30px, 4vw, 44px); }
.card-page h2 { font-size: 26px; }
.card-page p { margin: 0; }
.card-page .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 0; }
.card-page form.inline { display: inline; }
.linkbtn { background: none; border: 0; padding: 0; color: var(--mint); font: inherit; cursor: pointer; text-decoration: underline; }
.notice { padding: 14px 16px; border-radius: 14px; font-size: 15px; border: 1px solid var(--line); }
.notice.ok { background: rgba(126,212,168,0.08); border-color: rgba(126,212,168,0.4); }
.notice.bad { background: rgba(255,120,120,0.08); border-color: rgba(255,120,120,0.4); }
.upload-form { display: flex; flex-direction: column; gap: 14px; }
.drop { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 22px; border: 1px dashed rgba(255,255,255,0.25); border-radius: 16px; cursor: pointer; background: rgba(255,255,255,0.04); }
.drop input { font: inherit; color: var(--ink-2); }
.drop strong { font-size: 15px; }
.drop em { display: block; font-style: normal; font-size: 13px; color: var(--ink-2); }
.checklist { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 14px; font-size: 16px; line-height: 1.5; }
.checklist .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-left: 8px; }
footer .mini-foot { grid-template-columns: 1fr; }
.inline-row form { display: inline; } .inline-row { font-size: 15px; }
.checklist .rlink { display: inline-block; margin-top: 6px; font-size: 14px; color: var(--mint); text-decoration: underline; }
/* help block on confirm/upload pages */
.help { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.help summary { cursor: pointer; font-weight: 600; color: var(--mint); list-style: none; }
.help summary::-webkit-details-marker { display: none; }
.help summary::before { content: "+ "; color: var(--ink-3); }
.help[open] summary::before { content: "– "; }
.help-form { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }
.help-form textarea { width: 100%; min-height: 110px; font: inherit; font-size: 15px; color: #fff; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); resize: vertical; }
.help-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.copy-email { cursor: pointer; font-family: var(--sans); }

/* ---------- photography: one treatment for every photo ---------- */
.photo-frame { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); background: #14181b; }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.55) contrast(1.05) brightness(0.82) saturate(0.9); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.photo-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(160deg, rgba(6,64,43,0.35), rgba(14,18,21,0.15) 55%, rgba(14,18,21,0.75)); mix-blend-mode: multiply; }
.photo-frame::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .35; background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px 200px; }
.photo-frame:hover img { transform: scale(1.03); }
.photo-frame .credit { position: absolute; right: 14px; bottom: 10px; z-index: 3; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.photo-frame .credit a { color: inherit; }

/* the catch: photo above the ledger */
.ledger .photo-frame { aspect-ratio: 16 / 9; }

/* editorial break: full-width photo with one line */
.break { padding-bottom: 120px; }
.break .photo-frame { aspect-ratio: 21 / 9; border-radius: 32px; }
.break .line { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 48px 56px; display: flex; flex-direction: column; gap: 12px; }
.break .line h2 { font-size: clamp(30px, 3.6vw, 52px); max-width: 760px; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.break .line .eyebrow { color: var(--mint); }

/* finish line: tall photo beside the outcomes */
.success .grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: stretch; }
.success .photo-frame { min-height: 100%; }
.success .grid .list { grid-template-columns: 1fr; }

@media (max-width: 1024px) {
  .break .photo-frame { aspect-ratio: 4 / 3; }
  .break .line { padding: 28px 24px; }
  .success .grid { grid-template-columns: 1fr; }
  .success .photo-frame { aspect-ratio: 4 / 5; max-height: 520px; }
}
.success .grid { align-items: start; }
.success .grid .list { align-content: start; }
.success .photo-frame { aspect-ratio: 4 / 5; min-height: 0; }
