:root {
  color-scheme: light;
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-2: #e8f2ff;
  --text: #08172a;
  --muted: #5d6d80;
  --line: #d9e6f2;
  --brand: #0b8f86;
  --brand-2: #1647b8;
  --gold: #c9912f;
  --cyan: #00b8ff;
  --ink: #07111f;
  --shadow: 0 22px 70px rgba(17, 38, 66, 0.16);
  --glow: 0 0 34px rgba(0, 184, 255, 0.26);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.dark {
  color-scheme: dark;
  --bg: #07111f;
  --surface: #0d1a2b;
  --surface-2: #12243a;
  --text: #eef6ff;
  --muted: #b2c1d4;
  --line: #223955;
  --brand: #3dd6c6;
  --brand-2: #7aa7ff;
  --gold: #e5b75a;
  --cyan: #42d7ff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --glow: 0 0 42px rgba(61, 214, 198, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    linear-gradient(rgba(22, 71, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 71, 184, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1440px, calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  z-index: 99;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 86px; height: auto; }
.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 12px; }
.site-nav { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.site-nav a { color: var(--muted); font-weight: 650; font-size: 14px; }
.site-nav a:hover { color: var(--brand-2); }
.theme-toggle, .nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  min-height: 40px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle { display: none; width: 44px; padding: 0; }
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--text); margin: 4px auto; }

.hero {
  position: relative;
  padding: 76px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 184, 255, 0.22), transparent 28%),
    radial-gradient(circle at 92% 68%, rgba(201, 145, 47, 0.22), transparent 28%),
    radial-gradient(circle at 8% 14%, rgba(11, 143, 134, 0.18), transparent 32%),
    linear-gradient(120deg, #fffdf7 0%, #f7fbff 42%, #eaf4ff 100%);
  isolation: isolate;
}
body.dark .hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 184, 255, 0.2), transparent 30%),
    radial-gradient(circle at 92% 68%, rgba(229, 183, 90, 0.16), transparent 30%),
    radial-gradient(circle at 8% 14%, rgba(61, 214, 198, 0.16), transparent 32%),
    linear-gradient(120deg, #07111f 0%, #0a1a31 48%, #081426 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(22, 71, 184, 0.08) 50%, transparent 51%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(201, 145, 47, 0.12) 71px, transparent 72px);
  mask-image: radial-gradient(circle at 75% 48%, black, transparent 58%);
  opacity: 0.5;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(201, 145, 47, 0.38);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(0, 184, 255, 0.12), 0 0 80px rgba(0, 184, 255, 0.1);
  z-index: -1;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(22, 71, 184, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 360px; height: 120px; right: 12%; top: 22%; transform: rotate(-18deg); }
.orbit-two { width: 520px; height: 170px; right: 1%; top: 44%; transform: rotate(18deg); border-color: rgba(201, 145, 47, 0.25); }
.hero-grid { display: grid; grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr); gap: 56px; align-items: center; min-height: 720px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 5.9vw, 104px);
  font-weight: 500;
  max-width: 850px;
  background: linear-gradient(110deg, var(--text), var(--brand-2) 54%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.dark h1 {
  background: linear-gradient(110deg, #ffffff, #77dfff 52%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
.hero-lead { font-size: 22px; color: var(--muted); max-width: 780px; margin: 22px 0 28px; }
.hero-lead::before {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 850;
  border: 1px solid transparent;
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 58%, #061c55);
  color: white;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, var(--glow);
}
.btn.secondary { background: var(--surface); color: var(--text); border-color: var(--line); }
.btn.line { border-color: var(--brand); color: var(--brand); background: color-mix(in srgb, var(--surface) 72%, transparent); }
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.trust-strip li, .quick-contact a, .search-grid div {
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-2) 64%, transparent));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: 0 12px 34px rgba(17, 38, 66, 0.08);
}
.trust-strip strong { display: block; font-size: 22px; color: var(--brand-2); }
.trust-strip span { color: var(--muted); font-size: 13px; }
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.banner-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 62% 42%, rgba(111, 201, 195, 0.24), transparent 32%),
    radial-gradient(circle at 82% 68%, rgba(163, 115, 214, 0.18), transparent 28%);
  perspective: 900px;
}
body.dark .banner-stage {
  background:
    radial-gradient(circle at 62% 42%, rgba(61, 214, 198, 0.16), transparent 32%),
    radial-gradient(circle at 82% 68%, rgba(122, 90, 214, 0.18), transparent 28%);
}
.banner-stage::before {
  content: "";
  position: absolute;
  inset: 52px 20px 20px 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(234,246,244,0.72));
  border: 1px solid rgba(201, 145, 47, 0.28);
  border-radius: 28px;
  box-shadow: 0 36px 80px rgba(17, 38, 66, 0.14), inset 0 0 0 1px rgba(255,255,255,0.7);
  transform: rotate(-4deg) skewY(-1deg);
}
body.dark .banner-stage::before {
  background: linear-gradient(145deg, rgba(13,26,43,0.92), rgba(18,36,58,0.7));
}
.banner-stage::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 120px;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,145,47,0.22), transparent 65%);
  filter: blur(3px);
}
.stage-globe {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.8), transparent 16%),
    repeating-radial-gradient(circle at 50% 50%, rgba(22, 71, 184, 0.18) 0 2px, transparent 3px 14px),
    radial-gradient(circle, rgba(122,180,255,0.35), rgba(255,255,255,0.06) 62%);
  opacity: 0.85;
  box-shadow: inset 0 0 70px rgba(22,71,184,0.14), 0 0 70px rgba(0,184,255,0.14);
}
.stage-globe::before,
.stage-globe::after {
  content: "";
  position: absolute;
  inset: 34px -20px;
  border: 1px solid rgba(201, 145, 47, 0.46);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.stage-globe::after { transform: rotate(24deg); inset: 82px -40px; }
.vault-object {
  position: absolute;
  right: 118px;
  top: 155px;
  width: 250px;
  height: 250px;
  z-index: 2;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #b9ded8, #6fa9a4 55%, #d8eee8);
  box-shadow: inset -18px -18px 34px rgba(23, 75, 79, 0.22), 0 30px 70px rgba(8, 23, 42, 0.24);
  border: 3px solid rgba(255, 225, 159, 0.68);
  transform: rotate(2deg);
}
.vault-door {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #e9f9f5 0 20%, #9bcac4 21% 42%, #548c8b 43% 100%);
  border: 8px solid #d9ad58;
  box-shadow: inset 0 0 28px rgba(4,20,32,0.24);
}
.vault-ring {
  position: absolute;
  inset: 26px;
  border: 8px double rgba(255, 239, 199, 0.9);
  border-radius: 50%;
}
.vault-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 8px solid #d9ad58;
}
.vault-handle::before,
.vault-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 7px;
  background: #d9ad58;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.vault-handle::after { transform: translate(-50%, -50%) rotate(90deg); }
.device-img {
  position: relative;
  z-index: 1;
  width: 72%;
  align-self: end;
  justify-self: start;
  margin-left: 12px;
  margin-bottom: 20px;
  opacity: 0.88;
  filter: drop-shadow(0 28px 36px rgba(20, 46, 77, 0.22));
}
.gold-lock {
  position: absolute;
  z-index: 3;
  bottom: 118px;
  right: 300px;
  width: 86px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f8dc8b, #b77c24);
  box-shadow: 0 18px 40px rgba(183, 124, 36, 0.3);
}
.gold-lock::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -34px;
  width: 46px;
  height: 48px;
  border: 9px solid #d6a545;
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
}
.gold-lock::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 30px;
  width: 11px;
  height: 24px;
  background: #4b330d;
  border-radius: 8px;
}
.stage-shield {
  position: absolute;
  right: 72px;
  bottom: 58px;
  z-index: 4;
  border-radius: 999px;
  padding: 12px 18px;
  color: #07111f;
  background: linear-gradient(135deg, #f8df9b, var(--gold));
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(201, 145, 47, 0.24);
}
.visual-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border: 1px solid rgba(201, 145, 47, 0.34);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 800;
  color: var(--text);
  backdrop-filter: blur(12px);
}
.visual-card span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.vc-one { left: 4px; top: 150px; transform: rotate(-11deg); }
.vc-two { right: 82px; top: 42px; transform: rotate(5deg); }
.vc-three { right: 8px; bottom: 174px; transform: rotate(-7deg); }
.vc-four { left: 92px; bottom: 42px; transform: rotate(4deg); }
.code-ghost {
  position: absolute;
  z-index: 0;
  color: color-mix(in srgb, var(--brand-2) 36%, transparent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  opacity: 0.72;
}
.code-a { right: 0; top: 80px; }
.code-b { left: 30px; bottom: 135px; color: color-mix(in srgb, var(--gold) 55%, transparent); }

.banner-inspired {
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  padding: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 45%, rgba(0,184,255,0.18), transparent 28%),
    linear-gradient(120deg, #07111f, #0a2545 58%, #081426);
  color: white;
  border: 1px solid rgba(201,145,47,0.34);
  box-shadow: var(--shadow);
}
.banner-inspired::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 24px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(0,184,255,0.22) 0 2px, transparent 3px 13px);
  opacity: 0.5;
}
.mini-brand {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}
.banner-inspired h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
}
.banner-inspired p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #c8d7e8;
  font-size: 18px;
}
.banner-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.banner-points span {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 9px 13px;
  color: #f7e6bc;
  font-weight: 800;
}

.quick-contact {
  padding: 20px 0;
  background: linear-gradient(90deg, var(--ink), #0d2b47 55%, #061a2f);
  border-block: 1px solid rgba(201, 145, 47, 0.32);
  color: white;
}
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quick-contact a {
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: none;
}
.quick-contact span { display: block; color: #a9c5df; font-size: 13px; }
.quick-contact strong { font-size: 18px; }

.tech-ribbon {
  position: relative;
  padding: 28px 0;
  background:
    linear-gradient(90deg, #07111f, #0b2e4d 50%, #07111f);
  color: white;
  border-bottom: 1px solid rgba(201,145,47,0.28);
}
.tech-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tech-ribbon-grid div {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(66,215,255,0.2), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
}
.tech-ribbon-grid div::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(201,145,47,0.34);
}
.tech-ribbon-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, #f6d98d, var(--gold));
  font-weight: 950;
  margin-bottom: 16px;
}
.tech-ribbon-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.tech-ribbon-grid em {
  display: block;
  font-style: normal;
  color: #bcd4ec;
}

.section { padding: 96px 0; }
.section.alt { background: var(--surface); }
.section-head { max-width: 860px; margin-bottom: 34px; }
.section-head p:last-child { color: var(--muted); font-size: 18px; }

#services {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,184,255,0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(201,145,47,0.18), transparent 30%),
    linear-gradient(135deg, #06111f 0%, #0a2037 48%, #07111f 100%);
}
#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(66,215,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,215,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}
#services::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201,145,47,0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(0,184,255,0.08);
}
#services .container { position: relative; }
#services .section-head p:last-child,
#services .service-card p { color: #c7d8ea; }
#services .section-head h2 { color: white; }
.service-grid, .plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .plan-card, .stack-panel, details, .contact-panel {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-2) 58%, transparent));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
#services .service-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    radial-gradient(circle at 80% 22%, rgba(0,184,255,0.12), transparent 34%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  color: white;
  backdrop-filter: blur(12px);
}
#services .service-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(201,145,47,0.26);
  border-radius: 50%;
  opacity: 0.7;
}
#services .service-card h3 { color: white; }
#services .service-card img {
  background:
    radial-gradient(circle at 50% 40%, rgba(0,184,255,0.18), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.14);
}
#services .service-card:nth-child(1),
#services .service-card:nth-child(4),
#services .service-card:nth-child(13),
#services .service-card:nth-child(16) {
  background:
    radial-gradient(circle at 78% 22%, rgba(201,145,47,0.2), transparent 32%),
    linear-gradient(145deg, rgba(15,70,105,0.92), rgba(7,17,31,0.78));
}
#services .service-card:nth-child(1)::after,
#services .service-card:nth-child(4)::after,
#services .service-card:nth-child(13)::after,
#services .service-card:nth-child(16)::after {
  width: 150px;
  height: 150px;
  right: 26px;
  bottom: 26px;
}
.section.alt .service-card, .section.alt .plan-card {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--bg) 92%, transparent), color-mix(in srgb, var(--surface) 76%, transparent));
}
.service-card, .plan-card { padding: 18px; }
.service-card, .plan-card {
  position: relative;
  overflow: hidden;
}
.service-card:nth-child(1),
.service-card:nth-child(4),
.service-card:nth-child(13),
.service-card:nth-child(16) {
  grid-column: span 2;
  min-height: 310px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.service-card:nth-child(1) h3,
.service-card:nth-child(1) p,
.service-card:nth-child(4) h3,
.service-card:nth-child(4) p,
.service-card:nth-child(13) h3,
.service-card:nth-child(13) p,
.service-card:nth-child(16) h3,
.service-card:nth-child(16) p {
  grid-column: 2;
}
.service-card:nth-child(1) h3,
.service-card:nth-child(4) h3,
.service-card:nth-child(13) h3,
.service-card:nth-child(16) h3 {
  align-self: end;
}
.service-card:nth-child(1) p,
.service-card:nth-child(4) p,
.service-card:nth-child(13) p,
.service-card:nth-child(16) p {
  align-self: start;
}
.service-card:nth-child(1) img,
.service-card:nth-child(4) img,
.service-card:nth-child(13) img,
.service-card:nth-child(16) img {
  height: 230px;
  margin-bottom: 0;
}
.service-card:nth-child(1) h3,
.service-card:nth-child(4) h3,
.service-card:nth-child(13) h3,
.service-card:nth-child(16) h3 {
  font-size: 28px;
}
.service-card:nth-child(4),
.service-card:nth-child(16) {
  background:
    radial-gradient(circle at 80% 30%, rgba(201,145,47,0.18), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-2) 68%, transparent));
}
.service-card:nth-child(13) {
  background:
    radial-gradient(circle at 82% 24%, rgba(0,184,255,0.18), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-2) 68%, transparent));
}
.service-card::before, .plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--gold));
}
.service-card img, .plan-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  background:
    radial-gradient(circle at 68% 30%, rgba(0,184,255,0.16), transparent 36%),
    linear-gradient(135deg, var(--surface-2), color-mix(in srgb, var(--brand) 10%, var(--surface)));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.plan-card:nth-child(odd) { transform: translateY(10px); }
.plan-card:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(17, 38, 66, 0.18), var(--glow);
}
.service-card, .plan-card { transition: transform 180ms ease, box-shadow 180ms ease; }
.service-card h3, .plan-card h3 { margin-bottom: 10px; }
.service-card p, .plan-card p { color: var(--muted); margin: 0; }

.platform {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
}
.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(201,145,47,0.16), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(0,184,255,0.14), transparent 28%);
  pointer-events: none;
}
.platform .container { position: relative; }
.platform-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: start; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.feature-list div, .process-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.feature-list strong, .search-grid strong, .process-list strong { display: block; margin-bottom: 6px; color: var(--brand-2); }
.feature-list span, .search-grid span, .process-list span { color: var(--muted); }
.stack-panel {
  padding: 24px;
  position: sticky;
  top: 98px;
  border-color: rgba(201, 145, 47, 0.38);
}
.stack-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f2d28b);
  color: #07111f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.stack-panel ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }
.stack-panel li { margin: 10px 0; }
.discovery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(0,184,255,0.13), transparent 28%),
    radial-gradient(circle at 88% 48%, rgba(201,145,47,0.14), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--surface-2));
}
.discovery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22,71,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,71,184,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}
.discovery-section .container { position: relative; }
.discovery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}
.discovery-hero h2 {
  max-width: 850px;
  font-size: clamp(38px, 4.8vw, 70px);
}
.discovery-hero p:last-child {
  max-width: 900px;
  color: var(--muted);
  font-size: 19px;
}
.discovery-orbit {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(0,184,255,0.2), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 82%, transparent), color-mix(in srgb, var(--surface-2) 62%, transparent));
  border: 1px solid rgba(201,145,47,0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.discovery-orbit::before,
.discovery-orbit::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(22,71,184,0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.discovery-orbit::after {
  inset: 86px 26px;
  border-color: rgba(201,145,47,0.28);
  transform: rotate(24deg);
}
.discovery-orbit strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  text-align: center;
  color: #07111f;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8df9b, var(--gold));
  box-shadow: 0 18px 48px rgba(201,145,47,0.28);
}
.discovery-orbit span {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(17,38,66,0.12);
  color: var(--text);
  font-weight: 850;
  font-size: 13px;
}
.discovery-orbit span:nth-child(1) { left: 24px; top: 54px; }
.discovery-orbit span:nth-child(2) { right: 28px; top: 68px; }
.discovery-orbit span:nth-child(3) { left: 40px; bottom: 66px; }
.discovery-orbit span:nth-child(4) { right: 34px; bottom: 54px; }
.discovery-orbit span:nth-child(5) { left: 50%; top: 18px; transform: translateX(-50%); }
.search-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.discovery-section .search-grid div {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0,184,255,0.14), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--surface-2) 74%, transparent));
}
.discovery-section .search-grid div::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(201,145,47,0.24);
}
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(0,184,255,0.18), transparent 28%),
    radial-gradient(circle at 8% 70%, rgba(201,145,47,0.16), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eaf6ff 52%, #fffaf0 100%);
  color: var(--text);
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22,71,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,71,184,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}
.process-section .container { position: relative; }
.process-section .section-head h2 { color: var(--text); }
.process-section .section-head p:last-child { color: var(--muted); }
.process-board {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.process-core {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 22%, rgba(0,184,255,0.2), transparent 34%),
    linear-gradient(145deg, #071a32, #0b3150);
  color: white;
  border: 1px solid rgba(201,145,47,0.34);
  box-shadow: 0 28px 80px rgba(17,38,66,0.18);
}
.process-core::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(201,145,47,0.34);
}
.process-core span {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 950;
  font-size: 13px;
}
.process-core strong {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.08;
  color: white;
}
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; counter-reset: step; }
.process-list li { counter-increment: step; }
.process-list li::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8df9b, var(--gold));
  color: #07111f;
  font-weight: 900;
  margin-bottom: 12px;
}
.process-section .process-list li {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 20%, rgba(0,184,255,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(232,246,255,0.72));
  border-color: rgba(22,71,184,0.12);
  box-shadow: 0 20px 55px rgba(17,38,66,0.1);
}
.process-section .process-list li::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(201,145,47,0.28);
}
.process-section .process-list strong { color: #0c2e68; font-size: 20px; }
.process-section .process-list span { color: #526980; }

body.dark .process-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(0,184,255,0.16), transparent 28%),
    radial-gradient(circle at 8% 70%, rgba(201,145,47,0.12), transparent 30%),
    linear-gradient(135deg, #06111f 0%, #0a2037 50%, #07111f 100%);
  color: white;
}
body.dark .process-section::before {
  background:
    linear-gradient(rgba(66,215,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,215,255,0.06) 1px, transparent 1px);
}
body.dark .process-section .section-head h2 { color: white; }
body.dark .process-section .section-head p:last-child { color: #bfd3e8; }
body.dark .process-core {
  background:
    radial-gradient(circle at 70% 25%, rgba(0,184,255,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}
body.dark .process-section .process-list li {
  background:
    radial-gradient(circle at 88% 20%, rgba(0,184,255,0.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
}
body.dark .process-section .process-list strong { color: white; }
body.dark .process-section .process-list span { color: #bfd3e8; }

.faq-wrap { max-width: 900px; }
details { padding: 0 18px; margin-bottom: 12px; box-shadow: none; }
summary { cursor: pointer; font-weight: 850; padding: 18px 0; }
details p { color: var(--muted); margin: 0 0 18px; }

.contact-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(0,184,255,0.18), transparent 30%),
    linear-gradient(135deg, #07111f, #09213c 58%, #07111f);
  color: white;
}
.contact-panel { padding: 34px; display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: center; }
.contact-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.contact-panel p { color: #c1d3e5; }
.contact-actions { flex-direction: column; }

.site-footer { padding: 44px 0; background: #07111f; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 1fr; gap: 24px; }
.site-footer p { color: #b8c6d8; margin-bottom: 0; }
.site-footer a { color: white; }
.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}
.sticky-whatsapp a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #13a859;
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .platform-grid, .contact-panel, .discovery-hero, .process-board { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 560px; }
  .tech-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .plan-grid, .search-grid { grid-template-columns: repeat(2, 1fr); }
  .discovery-orbit { min-height: 300px; }
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(13),
  .service-card:nth-child(16) {
    grid-column: span 2;
  }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stack-panel { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 22px, 1440px); }
  .brand { min-width: 0; }
  .brand img { width: 66px; }
  .brand small { display: none; }
  .theme-toggle { padding: 0 10px; }
  .hero { padding-top: 48px; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .trust-strip, .service-grid, .plan-grid, .feature-list, .search-grid, .process-list, .tech-ribbon-grid { grid-template-columns: 1fr; }
  .discovery-hero h2 { font-size: 36px; }
  .discovery-orbit { min-height: 280px; border-radius: 16px; }
  .discovery-orbit strong { width: 112px; height: 112px; }
  .discovery-orbit span { min-width: 78px; font-size: 12px; }
  .process-core strong { font-size: 30px; }
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(13),
  .service-card:nth-child(16) {
    grid-column: span 1;
    min-height: auto;
    display: block;
  }
  .service-card:nth-child(1) img,
  .service-card:nth-child(4) img,
  .service-card:nth-child(13) img,
  .service-card:nth-child(16) img {
    height: 145px;
    margin-bottom: 18px;
  }
  .service-card:nth-child(1) h3,
  .service-card:nth-child(4) h3,
  .service-card:nth-child(13) h3,
  .service-card:nth-child(16) h3 {
    font-size: 22px;
  }
  .plan-card:nth-child(odd) { transform: none; }
  .visual-card { position: static; margin-top: 8px; width: 100%; justify-content: center; text-align: center; }
  .hero-visual { display: block; min-height: auto; }
  .banner-stage { min-height: 380px; padding: 18px; border-radius: 14px; overflow: hidden; }
  .banner-stage::before { inset: 44px 8px 34px; }
  .stage-globe { width: 220px; height: 220px; right: -20px; top: 20px; }
  .vault-object { width: 150px; height: 150px; right: 54px; top: 128px; border-radius: 22px; }
  .vault-door { inset: 20px; border-width: 5px; }
  .vault-ring { inset: 14px; border-width: 5px; }
  .vault-handle { width: 48px; height: 48px; border-width: 5px; }
  .vault-handle::before, .vault-handle::after { width: 78px; height: 5px; }
  .device-img { width: 92%; margin: 0 0 28px; align-self: end; }
  .gold-lock { right: 162px; bottom: 94px; width: 54px; height: 48px; border-radius: 12px; }
  .gold-lock::before { left: 13px; top: -23px; width: 28px; height: 30px; border-width: 6px; }
  .gold-lock::after { left: 24px; top: 19px; height: 17px; }
  .stage-shield { right: 22px; bottom: 42px; font-size: 12px; }
  .code-ghost { display: none; }
  .banner-inspired { padding: 24px; }
  .section { padding: 58px 0; }
  .service-card img, .plan-card img { height: 145px; }
  .contact-panel { padding: 22px; }
}
