/* ============================================
   INTELART — Ethereal Futurist Material System
   ============================================ */

:root {
  /* Pearl white scale */
  --pearl-100: #FDFDFC;
  --pearl-90:  #F5F6F3;
  --pearl-80:  #ECEEEA;
  --pearl-70:  #E0E2DD;
  --pearl-60:  #D0D3CD;
  --pearl-50:  #B8BCB4;

  /* Signature colors */
  --aqua:       #6FE3E8;
  --aqua-soft:  #B8EEF0;
  --aqua-deep:  #3BC0C6;

  --bronze:      #B99678;
  --bronze-soft: #D4B59A;
  --bronze-deep: #8F7359;

  /* Ink (not black) */
  --ink-900: #1F2321;
  --ink-700: #3D423F;
  --ink-500: #6B706C;
  --ink-400: #8B908C;
  --ink-300: #A9ADAA;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20,25,30,0.04), 0 2px 6px rgba(20,25,30,0.04);
  --shadow-md: 0 4px 12px rgba(20,25,30,0.05), 0 12px 28px rgba(20,25,30,0.06);
  --shadow-lg: 0 10px 30px rgba(20,25,30,0.06), 0 30px 60px rgba(20,25,30,0.08);

  /* Bevel recipes — this is the key to the 3D card look */
  --bevel-top:   inset 0 1px 0 rgba(255,255,255,0.95);
  --bevel-inner-top: inset 0 2px 4px rgba(255,255,255,0.6);
  --bevel-bottom: inset 0 -1px 0 rgba(80,90,100,0.18);
  --bevel-inner-bottom: inset 0 -2px 6px rgba(80,90,100,0.08);
  --bevel-left:  inset 1px 0 0 rgba(255,255,255,0.6);
  --bevel-right: inset -1px 0 0 rgba(80,90,100,0.10);

  --font-display: "Tenor Sans", "Cormorant Garamond", Georgia, serif;
  --font-numeric: "Tenor Sans", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  color-scheme: light;
  background: #F6F7F4;
}

html, body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
  line-height: 1.55;
  background: var(--pearl-90);
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================
   IRIDESCENT BACKDROP — the ethereal atmosphere
   Multi-layered radial + conic gradients, very low chroma
   ============================================ */
.stage {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%,  rgba(184,238,240,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 30%,  rgba(212,181,154,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 85%,  rgba(111,227,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%,  rgba(240,235,228,0.6) 0%, transparent 70%),
    linear-gradient(180deg, #F6F7F4 0%, #ECEEE9 50%, #F2F3F0 100%);
}

/* Subtle film grain overlay for that ceramic texture feel */
.stage::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 0;
}

.stage > * { position: relative; z-index: 1; }

/* ============================================
   CERAMIC CARD — the core 3D surface
   Layered: soft ambient shadow + inner bevel highlights + pearl gradient
   ============================================ */
.ceramic {
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.9) 0%,
      rgba(245,246,243,0.85) 40%,
      rgba(224,226,221,0.85) 100%);
  border-radius: 28px;
  box-shadow:
    var(--bevel-top),
    var(--bevel-inner-top),
    var(--bevel-bottom),
    var(--bevel-inner-bottom),
    var(--bevel-left),
    var(--bevel-right),
    0 1px 2px rgba(20,25,30,0.04),
    0 8px 24px rgba(40,50,60,0.06),
    0 24px 48px rgba(40,50,60,0.05);
  backdrop-filter: blur(2px);
}

/* Top-edge specular highlight — the thin light bar at the top of the card */
.ceramic::before {
  content: "";
  position: absolute;
  top: 1px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: inherit;
  pointer-events: none;
}

/* Optional iridescent sheen — diagonal band */
.ceramic.iridescent::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(184,238,240,0.18) 45%,
    rgba(212,181,154,0.10) 55%,
    transparent 70%);
  pointer-events: none;
}

/* ============================================
   PILL — capsule buttons and chips (major motif in moodboard)
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: linear-gradient(180deg, #FBFBFA 0%, #E8E9E4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.18),
    inset 1px 0 0 rgba(255,255,255,0.7),
    inset -1px 0 0 rgba(100,110,120,0.10),
    0 1px 2px rgba(20,25,30,0.06),
    0 6px 14px rgba(30,40,50,0.08);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
}
.pill:hover { transform: translateY(-1px); }
.pill:active { transform: translateY(1px); }

.pill--aqua {
  color: #0B3A3C;
  background: linear-gradient(180deg, #9FF0F3 0%, #6FE3E8 55%, #4FCFD4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(10,60,65,0.25),
    inset 1px 0 0 rgba(255,255,255,0.5),
    inset -1px 0 0 rgba(10,60,65,0.15),
    0 1px 2px rgba(60,190,200,0.25),
    0 8px 22px rgba(60,190,200,0.35);
}

.pill--bronze {
  color: #2C1E10;
  background: linear-gradient(180deg, #E5CCB0 0%, #B99678 55%, #8F7359 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,240,220,0.85),
    inset 0 -1px 0 rgba(80,55,30,0.35),
    0 1px 2px rgba(120,90,60,0.2),
    0 8px 22px rgba(120,90,60,0.28);
}

.pill--ghost {
  background: transparent;
  border: 1px solid rgba(60,70,80,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ============================================
   TYPOGRAPHY primitives
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 400;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.thin-caps {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================
   LAYOUT
   ============================================ */
.section {
  padding: 140px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.section--wide { max-width: 100%; padding-left: 48px; padding-right: 48px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}
.section-head h2 {
  font-size: clamp(44px, 5vw, 72px);
  max-width: 720px;
}
.section-head p {
  max-width: 360px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(253,253,252,0.85) 0%, rgba(232,234,228,0.85) 100%);
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.15),
    0 2px 6px rgba(20,25,30,0.05),
    0 12px 30px rgba(20,25,30,0.08);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.38em;
  color: var(--ink-900);
  padding-right: 20px;
  border-right: 1px solid rgba(60,70,80,0.12);
}
.nav__links {
  display: flex;
  gap: 4px;
  padding: 0 8px;
}
.nav__links a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
  transition: background 0.2s;
}
.nav__links a:hover { background: rgba(255,255,255,0.6); }
.nav__links a.active {
  background: linear-gradient(180deg, #FBFBFA 0%, #E8E9E4 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(100,110,120,0.15);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame {
  position: relative;
  width: 100%;
  max-width: 1340px;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(80,90,100,0.18),
    inset 1px 0 0 rgba(255,255,255,0.5),
    inset -1px 0 0 rgba(80,90,100,0.10),
    0 10px 30px rgba(30,40,50,0.08),
    0 40px 80px rgba(30,40,50,0.12);
}

.hero__image {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(184,238,240,0.4), transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255,255,255,0.5), transparent 70%),
    linear-gradient(135deg, #E8EEF0 0%, #D4DADD 40%, #C9C0B0 100%);
  display: grid; place-items: center;
  color: var(--ink-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__image img,
.hero__image video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { z-index: 1; }

.hero__wordmark {
  position: absolute;
  left: 72px; top: 11%;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 4px;
  backdrop-filter: blur(8px) saturate(140%);
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 1px 2px rgba(0,0,0,0.08);
  z-index: 3;
}
.hero__wordmark span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.38em;
  padding-left: 0.38em;
  background: linear-gradient(90deg, var(--ink-900) 0%, var(--aqua-deep) 60%, var(--bronze-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__overlay {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero__tagline {
  color: var(--pearl-100);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.hero__meta {
  display: flex;
  gap: 12px;
}

.hero__slogan {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 4;
}
.hero__slogan .eyebrow { color: rgba(40,50,55,0.75); text-shadow: 0 1px 0 rgba(255,255,255,0.6); }

/* Small floating UI chip on hero */
.hero__chip {
  position: absolute;
  z-index: 4;
  padding: 14px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(253,253,252,0.92) 0%, rgba(232,234,228,0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.18),
    0 8px 24px rgba(30,40,50,0.15);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
}
.hero__chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 8px var(--aqua);
}
.hero__chip--1 { top: 28%; right: 6%; }
.hero__chip--2 { bottom: 30%; left: 6%; }


/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-400);
}
.service__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, #FDFDFC 0%, #E4E6E0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.2),
    0 4px 10px rgba(30,40,50,0.06);
  display: grid; place-items: center;
  color: var(--ink-700);
}
.service__icon--aqua {
  background: linear-gradient(180deg, #9FF0F3 0%, #6FE3E8 55%, #4FCFD4 100%);
  color: #0B3A3C;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(10,60,65,0.25),
    0 8px 22px rgba(60,190,200,0.35);
}
.service__icon--bronze {
  background: linear-gradient(180deg, #E5CCB0 0%, #B99678 55%, #8F7359 100%);
  color: #2C1E10;
  box-shadow:
    inset 0 1px 0 rgba(255,240,220,0.85),
    inset 0 -1px 0 rgba(80,55,30,0.35),
    0 8px 22px rgba(120,90,60,0.28);
}
.service h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.service p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.7;
  flex-grow: 1;
}
.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(60,70,80,0.08);
}
.service__list li {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
}
.service__list li::after {
  content: "→";
  color: var(--ink-400);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery__item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(80,90,100,0.18),
    0 6px 18px rgba(30,40,50,0.08);
}
.gallery__item .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-400);
  padding: 20px;
  text-align: center;
}
.gallery__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.gallery__item--1 { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, #E8EEF0, #C9C0B0); }
.gallery__item--2 { grid-column: span 3; grid-row: span 1; background: linear-gradient(135deg, #F0EAE0, #D4B59A); }
.gallery__item--3 { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, #DDE8EA, #A8D5D8); }
.gallery__item--4 { grid-column: span 1; grid-row: span 1; background: linear-gradient(135deg, #E6E8E3, #BDC0B8); }
.gallery__item--5 { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #F2E8DC, #B99678); }
.gallery__item--6 { grid-column: span 4; grid-row: span 1; background: linear-gradient(135deg, #E4ECEE, #B8EEF0, #D4B59A); }
.gallery__item--7 { grid-column: span 1; grid-row: span 1; background: linear-gradient(135deg, #E8EEF0, #C9C0B0); }
.gallery__item--8 { grid-column: span 1; grid-row: span 1; background: linear-gradient(135deg, #F0EAE0, #D4B59A); }
.gallery__item--9 { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, #DDE8EA, #A8D5D8); }

.gallery__tag {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(253,253,252,0.9);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-700);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 2px 6px rgba(0,0,0,0.08);
}

/* ============================================
   COMPARISON
   ============================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.compare__card {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.compare__card--trad {
  background: linear-gradient(140deg, #EDECE8 0%, #D8D6D0 100%);
}
.compare__card--ai {
  background: linear-gradient(140deg, #E0F4F5 0%, #B4E6E8 60%, #EFE5D6 100%);
}
.compare__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.compare__card--ai .compare__label { color: var(--aqua-deep); }
.compare__total {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1;
  color: var(--ink-900);
}
.compare__total .unit {
  font-size: 0.45em;
  color: var(--ink-500);
  letter-spacing: 0.05em;
  margin-left: 8px;
}
.compare__lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.compare__lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(60,70,80,0.12);
}
.compare__lines li span:first-child {
  color: var(--ink-700);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.compare__lines li span:last-child {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-900);
}
.compare__bar {
  display: grid;
  place-items: center;
  padding: 0 8px;
}
.compare__bar .vs {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #FDFDFC 0%, #E4E6E0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.2),
    0 6px 14px rgba(30,40,50,0.1);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}
.savings {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(60,70,80,0.08);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.savings__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.savings__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink-900);
}
.compare__card--ai .savings__value { color: #0B3A3C; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price {
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.price--featured {
  background:
    linear-gradient(180deg, rgba(184,238,240,0.25) 0%, rgba(255,255,255,0.85) 40%, rgba(212,181,154,0.15) 100%);
  transform: translateY(-16px);
}
.price--featured::after {
  content: "MOST CHOSEN";
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9FF0F3 0%, #6FE3E8 100%);
  color: #0B3A3C;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 10px rgba(60,190,200,0.3);
}
.price__tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.price__amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.price__amount .currency {
  font-size: 22px;
  color: var(--ink-500);
  margin-top: 8px;
}
.price__amount .period {
  font-size: 14px;
  color: var(--ink-500);
  align-self: flex-end;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}
.price__desc {
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.7;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(60,70,80,0.08);
}
.price__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.price__features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
}
.price__features li::before {
  content: "";
  display: block;
  width: 14px; height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #9FF0F3, #6FE3E8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 4px rgba(60,190,200,0.3);
}
.price__cta {
  margin-top: 12px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact__info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background:
    linear-gradient(140deg, rgba(184,238,240,0.35) 0%, rgba(255,255,255,0.7) 50%, rgba(212,181,154,0.2) 100%);
}
.contact__info h2 {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.05;
}
.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__meta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(253,253,252,0.9) 0%, rgba(232,234,228,0.85) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.15);
}
.contact__meta-row .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.contact__meta-row .value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}

.contact__form {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-900);
  background: linear-gradient(180deg, #E8EAE4 0%, #F2F3F0 100%);
  box-shadow:
    inset 0 1px 2px rgba(60,70,80,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.7);
  outline: none;
  transition: box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  box-shadow:
    inset 0 1px 2px rgba(60,70,80,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.7),
    0 0 0 3px rgba(111,227,232,0.25);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: 0;
  padding: 80px 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid rgba(60,70,80,0.08);
  max-width: 1440px;
  margin: 0 auto;
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.38em;
  margin-bottom: 12px;
}
.footer__brand p {
  color: var(--ink-500);
  font-size: 13px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13px;
  color: var(--ink-700);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--ink-900); }

.footer__base {
  grid-column: 1 / -1;
  padding-top: 40px;
  border-top: 1px solid rgba(60,70,80,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .services, .pricing, .contact, .compare { grid-template-columns: 1fr; }
  .compare__bar { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section { padding: 80px 20px; }
  .price--featured { transform: none; }
  .price--unfeatured { transform: none; opacity: 1; }
  .nav__links { display: none; }
}

@media (max-width: 720px) {
  .contact__info  { padding: 40px 24px; }
  .contact__form  { padding: 36px 24px; }
  .field-row      { grid-template-columns: 1fr; gap: 12px; }
  .footer         { padding: 60px 20px 30px; gap: 24px; }
}

/* ============================================
   CORE SPIN LOADER — page loading overlay
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--pearl-50, #fafaf9);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.csl-ring-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base glow */
.csl-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(24px);
  background: rgba(52, 211, 153, 0.15);
  animation: csl-pulse 2s ease-in-out infinite;
}

/* Outer dashed ring */
.csl-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.4);
  animation: csl-spin 10s linear infinite;
}

/* Main arc */
.csl-arc-main {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgb(16, 185, 129);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
  animation: csl-spin 2s linear infinite;
}

/* Reverse arc */
.csl-arc-rev {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgb(22, 163, 74);
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.4);
  animation: csl-spin 3s linear infinite reverse;
}

/* Inner fast ring */
.csl-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-left-color: rgba(21, 128, 61, 0.6);
  animation: csl-spin 1s ease-in-out infinite;
}

/* Orbital dot container */
.csl-orbital {
  position: absolute;
  inset: 0;
  animation: csl-spin 4s linear infinite;
}

/* Orbital dot */
.csl-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(5, 150, 105);
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.9);
}

/* Center core */
.csl-core {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(4, 120, 87);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: csl-pulse 2s ease-in-out infinite;
}

/* Status text */
.csl-text {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csl-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(4, 120, 87);
  animation: csl-fadein 0.5s ease;
}

@keyframes csl-spin {
  to { transform: rotate(360deg); }
}

@keyframes csl-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes csl-fadein {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SECURITY CARD — MD3 Ripple
   ============================================ */
.hero__sec-wrap {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 4;
  width: clamp(135px, 17%, 218px);
  transform: scale(0.95, 0.90);
  transform-origin: bottom right;
}

/* Aqua halo — hidden by default, only on hover */
.hero__sec-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-deep));
  border-radius: 30px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero__sec-wrap:hover .hero__sec-glow { opacity: 0.55; }

/* Glass card — exact wordmark properties */
.hero__sec-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,0.8);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 1px 2px rgba(0,0,0,0.08);
}

/* MD3 hover state layer — aqua tint */
.hero__sec-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--aqua);
  opacity: 0;
  transition: opacity 0.2s linear;
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

.hero__sec-card:hover::after { opacity: 0.05; }

/* Ripple ink created by JS — aqua on glass */
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  transform-origin: center;
  background: radial-gradient(closest-side, rgba(111,227,232,0.3) 65%, transparent 100%);
  animation: sec-ripple 0.7s cubic-bezier(0.2,0,0,1) forwards;
  pointer-events: none;
  z-index: 6;
}

@keyframes sec-ripple {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(1); opacity: 0; }
}

.hero__sec-inner {
  padding: clamp(11px, 1.5vw, 19px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.9vw, 12px);
  position: relative;
  z-index: 2;
}

.hero__sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero__sec-label {
  font-family: var(--font-mono);
  font-size: clamp(7px, 0.65vw, 9px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(40,50,55,0.55);
  margin-bottom: 3px;
}

.hero__sec-level {
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 700;
  color: rgba(40,50,55,0.92);
}

.hero__sec-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  flex-shrink: 0;
}

.hero__sec-badge.is-locked {
  background: rgba(185,150,120,0.12);
  border: 1px solid rgba(185,150,120,0.3);
  color: var(--bronze);
}

.hero__sec-badge.is-unlocked {
  background: rgba(111,227,232,0.15);
  border: 1px solid rgba(111,227,232,0.4);
  color: var(--aqua-deep);
}

.hero__sec-fp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3px, 0.5vw, 8px) 0;
  position: relative;
}

/* Cyan LED glow on fingerprint */
.hero__sec-fp-glow {
  position: absolute;
  inset: 0;
  background: var(--aqua);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero__sec-wrap.is-unlocked .hero__sec-fp-glow { opacity: 0.35; }

.hero__sec-fp svg {
  width: clamp(50px, 5.5vw, 80px);
  height: clamp(50px, 5.5vw, 80px);
  transition: color 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  color: rgba(40,50,55,0.2);
  position: relative;
  z-index: 1;
}

.hero__sec-wrap.is-unlocked .hero__sec-fp svg {
  color: var(--aqua-deep);
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(59,192,198,0.9));
}

.hero__sec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40,50,55,0.12), transparent);
}

.hero__sec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__sec-scan-label {
  font-family: var(--font-mono);
  font-size: clamp(7px, 0.6vw, 9px);
  color: rgba(40,50,55,0.45);
}

.hero__sec-scan-status {
  font-family: var(--font-ui, 'Space Grotesk', sans-serif);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 500;
  color: rgba(40,50,55,0.8);
  margin-top: 2px;
}

.hero__sec-arrow {
  width: clamp(26px, 2.8vw, 36px);
  height: clamp(26px, 2.8vw, 36px);
  border-radius: 50%;
  background: rgba(40,50,55,0.06);
  border: 1px solid rgba(40,50,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.hero__sec-wrap:hover .hero__sec-arrow { background: rgba(40,50,55,0.12); }

.hero__sec-arrow svg {
  width: clamp(11px, 1.1vw, 16px);
  height: clamp(11px, 1.1vw, 16px);
  color: rgba(40,50,55,0.5);
}

@media (max-width: 640px) { .hero__sec-wrap { display: none; } }

/* ============================================
   ONBOARDING MODAL
   ============================================ */
.ob {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ob.is-open {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 640px) {
  .ob { align-items: center; }
}

.ob__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31,35,33,0.55);
  backdrop-filter: blur(4px);
}

.ob__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 96dvh;
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(48px);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.ob.is-open .ob__sheet { transform: none; }

@media (min-width: 640px) {
  .ob__sheet {
    max-width: 560px;
    border-radius: 28px;
    max-height: 90dvh;
    transform: translateY(20px) scale(0.97);
  }
  .ob.is-open .ob__sheet { transform: none; }
}

.ob__progress {
  height: 3px;
  background: var(--pearl-70);
  flex-shrink: 0;
}
.ob__progress-bar {
  height: 100%;
  background: var(--aqua);
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.ob__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  background: rgba(255,255,255,0.65);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.ob__close:hover { background: rgba(255,255,255,0.95); color: var(--ink-900); }

.ob__steps-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 36px 28px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 640px) {
  .ob__steps-wrap { padding: 40px 40px 16px; }
}

.ob__step { display: none; }
.ob__step.is-active { display: block; }

.ob__step-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}

.ob__step-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink-900);
  margin-bottom: 28px;
}

.ob__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ob-req { color: var(--aqua-deep); }

.ob-toggle {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: linear-gradient(180deg, #E8EAE4 0%, #F2F3F0 100%);
  border-radius: 12px;
  box-shadow: inset 0 1px 2px rgba(60,70,80,0.12);
}
.ob-toggle__btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--ink-500);
  transition: all 0.2s;
}
.ob-toggle__btn.is-active {
  background: linear-gradient(180deg, #FBFBFA 0%, #E8E9E4 100%);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(100,110,120,0.15),
    0 1px 3px rgba(20,25,30,0.08);
}

.ob__hint {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.6;
}
.ob__optional-note {
  font-size: 11px;
  color: var(--ink-400);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.ob__step-optional {
  font-size: 0.45em;
  font-family: var(--font-mono);
  color: var(--ink-400);
  letter-spacing: 0.06em;
  font-weight: 400;
  vertical-align: middle;
  display: inline-block;
  margin-left: 4px;
}

.ob-review {
  background: linear-gradient(180deg, #E8EAE4 0%, #F2F3F0 100%);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: inset 0 1px 2px rgba(60,70,80,0.1);
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.ob-review__row {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(60,70,80,0.06);
}
.ob-review__row:last-child { border-bottom: none; }
.ob-review__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  width: 110px;
  flex-shrink: 0;
  padding-top: 3px;
}
.ob-review__value {
  font-size: 13px;
  color: var(--ink-700);
  flex: 1;
  word-break: break-word;
}

.ob__error {
  padding: 0 28px;
  font-size: 13px;
  color: #B04040;
  min-height: 18px;
}
.ob__error:not(:empty) { margin-bottom: 6px; }
@media (min-width: 640px) { .ob__error { padding: 0 40px; } }

.ob__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px 32px;
  flex-shrink: 0;
}
@media (min-width: 640px) { .ob__nav { padding: 12px 40px 36px; } }

.ob__back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-500);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.ob__back:hover { background: rgba(0,0,0,0.04); color: var(--ink-700); }
.ob__back.is-hidden { opacity: 0; pointer-events: none; }

.ob__next { min-width: 140px; justify-content: center; }
.ob__next:disabled { opacity: 0.6; pointer-events: none; }

body.ob-open { overflow: hidden; }
