@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  --ink: #0b1c2c;
  --navy: #0a2238;
  --navy-soft: #102f49;
  --gold: #d8ac55;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --muted: #68737c;
  --line: rgba(11, 28, 44, 0.14);
  --font-sans: "Manrope";
  --font-display: "Cormorant Garamond";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 96px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: white;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { object-fit: contain; filter: drop-shadow(0 5px 10px rgba(0,0,0,.15)); }
.brand span { display: flex; flex-direction: column; font-size: 18px; line-height: 1.05; }
.brand small { margin-top: 6px; font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .6; }
nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
nav a { opacity: .76; transition: opacity .2s; }
nav a:hover { opacity: 1; }
.header-cta { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.header-cta span { color: var(--gold); font-size: 17px; }

.hero {
  position: relative;
  min-height: 780px;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 90px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(7,29,47,.98) 0%, rgba(9,36,58,.97) 54%, rgba(13,49,75,.96) 100%),
    radial-gradient(circle at 80% 40%, #24618e, transparent 55%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero-glow { position: absolute; width: 600px; height: 600px; right: 4%; top: 9%; border-radius: 50%; background: radial-gradient(circle, rgba(76,143,194,.18), transparent 68%); }
.hero-copy { position: relative; z-index: 2; width: 57%; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 28px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-family: var(--font-display), Georgia, serif; font-size: clamp(64px, 7vw, 100px); line-height: .86; letter-spacing: -.045em; font-weight: 600; }
.hero h1 span { display: block; color: var(--gold); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 590px; margin: 34px 0; font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.68); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.primary-button { display: inline-flex; align-items: center; gap: 26px; padding: 17px 22px; background: var(--gold); color: #112638; font-size: 12px; font-weight: 800; letter-spacing: .04em; transition: transform .2s, background .2s; }
.primary-button:hover { transform: translateY(-2px); background: #e6be6d; }
.primary-button span { font-size: 18px; }
.text-link { display: flex; gap: 10px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75); }
.text-link span { color: var(--gold); }
.hero-visual { position: absolute; z-index: 1; right: max(20px, calc((100vw - 1180px) / 2)); top: 180px; width: 430px; height: 430px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(216,172,85,.18); border-radius: 50%; }
.orbit-one { inset: 12%; }
.orbit-two { inset: 0; border-style: dashed; animation: spin 40s linear infinite; }
.hero-mark { width: 245px; height: 245px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, #163f61, #071d30); box-shadow: 0 36px 90px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08); }
.hero-mark img { filter: drop-shadow(0 22px 18px rgba(0,0,0,.25)); }
.floating-card { position: absolute; padding: 15px 18px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
.card-top { top: 40px; right: -20px; display: flex; align-items: center; gap: 11px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #41b47c; box-shadow: 0 0 0 5px rgba(65,180,124,.12); }
.floating-card div { display: flex; flex-direction: column; gap: 3px; }
.floating-card small { color: #7b858d; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-size: 12px; }
.card-bottom { left: 3px; bottom: 28px; display: flex; flex-direction: column; border-left: 3px solid var(--gold); }
.card-bottom strong { font-family: var(--font-display); font-size: 29px; line-height: 1; }
.card-bottom strong span { font-family: var(--font-sans); font-size: 10px; text-transform: uppercase; color: var(--muted); }
.hero-footnote { position: absolute; z-index: 2; left: max(24px, calc((100vw - 1180px) / 2)); bottom: 38px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.42); font-size: 9px; }
.hero-footnote span { color: var(--gold); }

.section { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.section-label { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.section-label span { color: var(--gold); }
.intro { display: grid; grid-template-columns: 250px 1fr; gap: 50px; }
.kicker { margin: 0 0 14px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.intro h2, .workflow h2, .trial h2, .contact h2, .section-heading h2 { font-family: var(--font-display), Georgia, serif; font-weight: 600; letter-spacing: -.035em; }
.intro h2 { max-width: 820px; margin: 0; font-size: clamp(44px, 5vw, 66px); line-height: 1.04; }
.intro h2 em { display: block; color: #527186; font-weight: 500; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 45px; color: var(--muted); font-size: 14px; line-height: 1.85; }

.features { color: white; background: var(--navy); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 60px; }
.section-label.light { color: rgba(255,255,255,.48); }
.section-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: 1; text-align: right; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.feature-card { position: relative; min-height: 340px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); transition: background .25s, transform .25s; }
.feature-card:hover { background: var(--navy-soft); transform: translateY(-4px); }
.feature-number { color: rgba(255,255,255,.32); font-size: 10px; }
.feature-icon { margin: 56px 0 34px; color: var(--gold); font-size: 30px; }
.feature-card h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: 26px; }
.feature-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.8; }

.workflow { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.workflow h2 { margin: 30px 0 24px; font-size: clamp(48px, 5vw, 68px); line-height: .98; }
.workflow-lead { max-width: 410px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.workflow-list { border-top: 1px solid var(--line); }
.workflow-list article { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.workflow-list > article > span { color: var(--gold); font-size: 11px; font-weight: 800; }
.workflow-list h3 { margin: -5px 0 8px; font-family: var(--font-display); font-size: 29px; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.trial { display: flex; align-items: center; justify-content: space-between; gap: 80px; color: white; background: #0e2a42; }
.trial-copy { max-width: 630px; }
.trial h2 { margin: 0 0 24px; font-size: clamp(48px, 5vw, 67px); line-height: .98; }
.trial-copy > p:last-child { max-width: 590px; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }
.trial-numbers { display: flex; align-items: center; gap: 26px; }
.trial-numbers div { width: 145px; height: 145px; border: 1px solid rgba(216,172,85,.4); border-radius: 50%; display: grid; place-content: center; text-align: center; }
.trial-numbers strong { font-family: var(--font-display); font-size: 55px; color: var(--gold); line-height: .85; }
.trial-numbers span { margin-top: 12px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.trial-numbers i { color: rgba(255,255,255,.45); font-family: var(--font-display); }

.contact { text-align: center; background: var(--cream); }
.centered { justify-content: center; }
.contact h2 { margin: 0 0 22px; font-size: clamp(48px, 6vw, 74px); line-height: 1; }
.contact > p:not(.eyebrow) { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-note { display: inline-flex; margin-top: 32px; padding: 14px 20px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
footer { min-height: 110px; padding: 30px max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; background: #071b2c; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-brand { color: white; }
footer > a:last-child { color: var(--gold); }

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .orbit-two { animation: none; } }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { min-height: 900px; padding-top: 160px; }
  .hero-copy { width: 100%; }
  .hero-visual { position: relative; top: auto; right: auto; width: 390px; height: 390px; margin: 42px auto 0; }
  .hero-footnote { display: none; }
  .intro { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 30px; text-align: left; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .workflow { grid-template-columns: 1fr; gap: 60px; }
  .trial { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 32px); height: 78px; }
  .header-cta { display: none; }
  .hero { min-height: 860px; padding: 135px 18px 70px; }
  .hero h1 { font-size: 58px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { width: 300px; height: 300px; }
  .hero-mark { width: 185px; height: 185px; }
  .hero-mark img { width: 128px; }
  .card-top { right: -5px; top: 22px; }
  .card-bottom { left: -2px; bottom: 12px; }
  .section { padding: 80px 20px; }
  .intro-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 30px; }
  .intro h2, .section-heading h2, .workflow h2, .trial h2, .contact h2 { font-size: 44px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 285px; }
  .feature-icon { margin: 36px 0 26px; }
  .trial-numbers { gap: 10px; width: 100%; justify-content: center; }
  .trial-numbers div { width: 120px; height: 120px; }
  .trial-numbers strong { font-size: 45px; }
  footer { flex-direction: column; gap: 22px; text-align: center; }
}
