:root {
  --ink: #111111;
  --muted: #5e6570;
  --line: #ececec;
  --blue: #2f6cff;
  --blue-deep: #1f5af0;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Outfit", sans-serif; letter-spacing: -0.04em; line-height: 0.98; margin: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 15;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px max(24px, calc((100% - var(--max)) / 2 - 12px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.35s ease;
}
.header.is-stuck { box-shadow: 0 10px 30px rgba(17,17,17,0.06); }
.header .nav, .header .brand { max-width: calc(var(--max) + 48px); }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.04em; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; }
.nav a:hover { color: var(--blue); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid #ddd; border-radius: 12px; background: #fff; padding: 10px;
}
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #111; border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 22px; border: 0; cursor: pointer; font-weight: 700;
}
.btn-dark { background: #111; color: #fff; transition: transform 0.25s ease, background 0.25s ease; }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid #111; padding: 10px 18px; background: #fff; }
.btn-ghost:hover { background: #111; color: #fff; }
.btn-light { background: #fff; color: #111; }
.btn-play { background: transparent; padding-left: 0; }
.play {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
  display: grid; place-items: center; position: relative;
}
.play::before {
  content: ""; border-style: solid; border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff; margin-left: 3px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 10px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  min-height: 560px;
}
.hero h1 { font-size: clamp(46px, 5.5vw, 74px); font-weight: 800; max-width: 11ch; }
.hero-copy h1, .hero-copy p, .hero-actions { animation: rise 0.8s ease both; }
.hero-copy p { animation-delay: 0.12s; color: var(--muted); max-width: 42ch; font-size: 16px; margin: 22px 0 28px; }
.hero-actions { animation-delay: 0.22s; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-visual { position: relative; height: 520px; }
.blob {
  position: absolute; right: 0; bottom: 20px; width: 78%; height: 78%;
  background: #111; border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%;
  animation: morph 10s ease-in-out infinite;
}
.orb { position: absolute; border-radius: 50%; }
.orb-mint { width: 120px; height: 120px; background: #d9f3ea; right: 18%; bottom: 8%; }
.orb-lilac { width: 90px; height: 90px; background: #e4dcff; right: 4%; bottom: 22%; }
.shot { position: absolute; object-fit: cover; background: #ddd; }
.shot-arch { width: 168px; height: 230px; border-radius: 90px 90px 24px 24px; left: 18%; top: 36px; }
.shot-portrait { width: 168px; height: 210px; border-radius: 90px 90px 28px 28px; right: 6%; top: 78px; z-index: 2; }
.shot-phone { width: 112px; height: 168px; border-radius: 22px; left: 42%; top: 168px; z-index: 3; border: 4px solid #fff; }
.shot-small { width: 92px; height: 120px; border-radius: 18px; left: 8%; bottom: 86px; z-index: 2; }
.float {
  position: absolute; z-index: 4; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px 14px;
}
.float-top { left: 0; top: 18px; display: flex; gap: 10px; align-items: center; width: 230px; animation: floaty 5.5s ease-in-out infinite; }
.float-top img { width: 36px; height: 36px; border-radius: 10px; }
.float strong, .float-bottom strong { display: block; font-size: 13px; letter-spacing: -0.02em; }
.float span, .float em { display: block; color: var(--muted); font-size: 12px; font-style: normal; }
.float-bottom { right: 0; bottom: 36px; width: 210px; animation: floaty 6.5s ease-in-out infinite reverse; }

.logo-bar { margin-top: 18px; background: #111; color: #fff; overflow: hidden; padding: 26px 0; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: ticker 22s linear infinite; }
.logo-bar p {
  margin: 0; font-family: "Outfit", sans-serif; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 15px; opacity: 0.92;
}

.section { max-width: var(--max); margin: 0 auto; padding: 88px 24px 20px; }
.section h2, .covered h2, .faq-wrap h2, .contact h2, .split h2, .dark-inner h2, .cta h2 {
  font-size: clamp(36px, 4vw, 52px); font-weight: 750; text-align: center;
}
.cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px 32px;
  min-height: 250px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,17,17,0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(17,17,17,0.1); }
.card h3 { font-size: 22px; margin: 18px 0 10px; letter-spacing: -0.03em; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.icon {
  width: 54px; height: 54px; border-radius: 14px; background: #111; color: #fff;
  display: grid; place-items: center;
}
.icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.card-blue p { color: rgba(255,255,255,0.88); }
.card-blue .icon { background: #fff; color: var(--blue); }

.split {
  max-width: var(--max); margin: 70px auto 0; padding: 20px 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.split-photo { position: relative; }
.split-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: 28px; }
.split-photo .inset {
  position: absolute; width: 180px; height: 220px; right: -18px; bottom: -28px;
  border: 6px solid #fff; border-radius: 22px; object-fit: cover;
}
.split-copy h2, .split-copy p { text-align: left; }
.split-copy p { color: var(--muted); }
.split-copy .btn { margin-top: 8px; }

.dark-band { background: #111; color: #fff; margin-top: 90px; padding: 78px 24px; }
.dark-inner { max-width: var(--max); margin: 0 auto; }
.dark-inner .lede { text-align: center; color: rgba(255,255,255,0.72); max-width: 560px; margin: 16px auto 36px; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pair article { background: #1b1b1b; border-radius: 22px; overflow: hidden; }
.pair img { width: 100%; height: 240px; object-fit: cover; }
.pair h3 { padding: 18px 20px 0; font-size: 26px; }
.pair p { color: rgba(255,255,255,0.72); padding: 8px 20px 0; margin: 0; }
.pair button {
  margin: 16px 20px 20px; background: transparent; color: #fff; border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding: 0 0 4px; cursor: pointer; font-weight: 700;
}

.covered { max-width: 820px; margin: 0 auto; padding: 88px 24px 10px; text-align: center; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; margin-top: 28px; }
.pills span {
  font-family: "Outfit", sans-serif; font-weight: 650; letter-spacing: -0.03em; font-size: 18px; color: #3a3a3a;
}

.faq { max-width: 760px; margin: 28px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 18px 36px 18px 0;
  font-weight: 700; cursor: pointer; position: relative;
}
.faq-q span {
  position: absolute; right: 0; top: 18px; width: 18px; height: 18px;
}
.faq-q span::before, .faq-q span::after {
  content: ""; position: absolute; background: #111; left: 0; top: 8px; height: 2px; width: 16px;
}
.faq-q span::after { transform: rotate(90deg); }
.faq-item.is-open .faq-q span::after { transform: none; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; color: var(--muted); }
.faq-a p { overflow: hidden; margin: 0; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; padding-bottom: 8px; }

.contact {
  max-width: var(--max); margin: 20px auto 0; padding: 72px 24px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start;
}
.contact h2, .contact p { text-align: left; }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-list li, .with-icon { display: flex; gap: 12px; align-items: flex-start; }
.contact address { font-style: normal; font-weight: 650; line-height: 1.7; margin: 0; }
.contact-list a { color: var(--blue); font-weight: 700; padding-top: 6px; }
.mini-icon {
  width: 36px; height: 36px; flex: none; border-radius: 10px;
  display: grid; place-items: center; background: #111; color: #fff;
}
.mini-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer .mini-icon { background: rgba(255,255,255,0.1); }
.footer .with-icon { color: inherit; font-weight: 650; text-decoration: none; }
form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
input, select, textarea {
  border: 1px solid #e4e4e4; border-radius: 12px; padding: 12px 14px; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(47,108,255,0.35); border-color: var(--blue); }
.form-note { color: var(--muted); font-size: 14px; }

.cta {
  max-width: var(--max); margin: 10px auto 40px; padding: 0 24px;
}
.cta > div, .cta {
  position: relative;
}
.cta {
  display: grid; grid-template-columns: 1.2fr 0.8fr; background: #111; color: #fff;
  border-radius: 28px; overflow: hidden; min-height: 240px;
}
.cta div { padding: 42px; }
.cta h2, .cta p { text-align: left; }
.cta p { color: rgba(255,255,255,0.75); max-width: 36ch; }
.cta img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }

.footer {
  max-width: var(--max);
  margin: 8px auto 28px;
  padding: 36px 32px 22px;
  background: #111;
  color: #fff;
  border-radius: 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 32px; align-items: start; }
.footer .brand { color: #fff; }
.footer .brand span { font-size: 22px; }
.footer-brand p { margin: 14px 0 0; color: rgba(255,255,255,0.72); max-width: 36ch; }
.footer-links, .footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-links a, .footer-contact a { font-weight: 700; }
.footer-links a:hover, .footer-contact a:hover { color: #9db7ff; }
.footer-contact p { margin: 0; color: rgba(255,255,255,0.78); }
.footer-bottom {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid; gap: 6px; color: rgba(255,255,255,0.62); font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-meta { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 8px; }
.footer-legal button {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px; padding: 8px 14px; cursor: pointer; font-weight: 700;
}
.footer-legal button:hover { background: #fff; color: #111; }

.modal {
  position: fixed; inset: 0; background: rgba(10,10,10,0.55);
  display: grid; place-items: center; padding: 24px; z-index: 20;
}
.modal[hidden] { display: none; }
.modal-card {
  background: #fff; border-radius: 24px; max-width: 520px; width: 100%;
  padding: 28px; position: relative; animation: rise 0.35s ease;
}
.modal-card h2 { text-align: left; font-size: 36px; margin-bottom: 12px; }
.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; margin: 0; }
.modal-card ol { padding-left: 18px; color: var(--muted); }
.modal-card li { margin: 8px 0; }
.modal-legal { max-width: 640px; max-height: min(78vh, 720px); overflow: auto; }
.legal-copy { color: var(--muted); display: grid; gap: 12px; }
.legal-copy p { margin: 0; }
.legal-copy a { color: var(--blue); font-weight: 700; }
.modal-close {
  position: absolute; right: 14px; top: 10px; border: 0; background: none; font-size: 28px; cursor: pointer;
}
body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 74px; left: 16px; right: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    flex-direction: column; align-items: flex-start; padding: 16px; z-index: 10;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .header { position: relative; }
  .hero, .split, .pair, .contact, .cta, .cards { grid-template-columns: 1fr; }
  .hero-visual { height: 460px; }
  .split-photo .inset { right: 12px; }
  .cta img { display: none; }
  .section h2, .covered h2 { font-size: 36px; }
  .footer { margin: 8px 16px 20px; padding: 28px 20px 18px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .marquee-track { animation-duration: 16s; }
}

.reveal { opacity: 0; transform: translateY(28px); animation: none; }
.reveal.is-in { animation: rise 0.7s ease var(--d, 0ms) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%; }
  50% { border-radius: 58% 42% 56% 44% / 42% 58% 46% 54%; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
