:root {
  --bg: #04141d;
  --bg-soft: #07232e;
  --panel: rgba(8, 42, 52, 0.74);
  --panel-strong: #082b35;
  --text: #f4fbf8;
  --muted: #a9c1c5;
  --line: rgba(104, 244, 194, 0.18);
  --brand: #63f4ae;
  --brand-2: #20d9ca;
  --brand-deep: #14a887;
  --danger: #ef7f89;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 9%, rgba(28, 211, 175, .15), transparent 30%),
    radial-gradient(circle at 90% 28%, rgba(39, 209, 216, .11), transparent 28%),
    linear-gradient(180deg, #04131c 0%, #061b25 46%, #031118 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: white;
  color: #04141d;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.glass {
  background: linear-gradient(145deg, rgba(14, 54, 65, .85), rgba(5, 28, 37, .72));
  border: 1px solid rgba(98, 244, 174, .22);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}

.ambient { position: fixed; border-radius: 999px; filter: blur(80px); opacity: .13; pointer-events: none; z-index: -1; }
.ambient-one { width: 420px; height: 420px; background: var(--brand); top: 12%; left: -180px; }
.ambient-two { width: 480px; height: 480px; background: var(--brand-2); top: 54%; right: -240px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 20, 29, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s, background .25s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(4, 20, 29, .9); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; filter: drop-shadow(0 0 16px rgba(99,244,174,.3)); }
.brand-copy { display: grid; line-height: 1.16; }
.brand-copy strong { font-size: 18px; letter-spacing: .04em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--brand); letter-spacing: .12em; text-transform: uppercase; font-size: 10px; }
.main-nav { display: flex; align-items: center; gap: 32px; color: #c9dada; font-size: 14px; font-weight: 650; }
.main-nav a { transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--brand); }
.nav-cta { border: 1px solid rgba(99,244,174,.36); padding: 12px 18px; border-radius: 999px; background: rgba(99,244,174,.06); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 6px 0; border-radius: 4px; transition: .25s; }

.hero { padding-top: 88px; min-height: calc(100svh - 84px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: .14em; font-weight: 750; font-size: 12px; display: flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.eyebrow span { width: 34px; height: 1px; background: var(--brand); box-shadow: 0 0 10px var(--brand); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 82px); line-height: .99; letter-spacing: -.055em; margin-bottom: 28px; max-width: 760px; }
h1 em { font-style: normal; color: var(--brand); text-shadow: 0 0 35px rgba(99,244,174,.15); }
.hero-lead { color: #bfd0d2; font-size: clamp(17px, 1.7vw, 21px); max-width: 690px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 42px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 23px; border-radius: 999px; font-weight: 750; font-size: 14px; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--brand), #36dbb4); color: #03231d; box-shadow: 0 14px 38px rgba(72, 237, 173, .2); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(72, 237, 173, .32); }
.button-ghost { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.035); color: var(--text); gap: 10px; }
.button-ghost:hover { border-color: rgba(99,244,174,.4); background: rgba(99,244,174,.055); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-proof div { display: grid; gap: 2px; padding-right: 20px; }
.hero-proof strong { color: white; font-size: 14px; }
.hero-proof span { color: #77949a; font-size: 12px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 14%; border-radius: 50%; background: radial-gradient(circle, rgba(75, 245, 180, .22), rgba(32,217,202,.05) 48%, transparent 70%); filter: blur(20px); z-index: -1; }
.orbital-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(99,244,174,.17); z-index: -1; }
.ring-a { width: 520px; height: 520px; animation: orbit 26s linear infinite; }
.ring-b { width: 390px; height: 390px; border-style: dashed; animation: orbit 18s linear infinite reverse; }
.ring-a::before, .ring-b::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 18px var(--brand); }
.ring-a::before { top: 23%; left: 2%; }
.ring-b::after { right: 14%; bottom: 4%; }
@keyframes orbit { to { transform: rotate(360deg); } }
.command-card { width: min(440px, 88vw); border-radius: 30px; padding: 24px; transform: perspective(1000px) rotateY(-6deg) rotateX(3deg); }
.command-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #bdd0d2; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.command-head > div { display: flex; gap: 8px; align-items: center; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }
.live-pill { color: var(--brand); border: 1px solid rgba(99,244,174,.3); border-radius: 999px; padding: 4px 9px; letter-spacing: .1em; }
.command-main { display: flex; align-items: center; gap: 22px; padding: 29px 0 22px; }
.score-ring { width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at center, #07303a 55%, transparent 57%), conic-gradient(var(--brand) 0 86%, rgba(255,255,255,.08) 86%); box-shadow: 0 0 34px rgba(99,244,174,.14); position: relative; }
.score-ring span { font-size: 34px; font-weight: 850; line-height: 1; }
.score-ring small { position: absolute; top: 58%; right: 25%; color: var(--brand); }
.command-main p { color: #97adb1; font-size: 13px; margin-bottom: 4px; }
.command-main strong { display: block; font-size: 28px; color: var(--brand); }
.command-main > div:last-child small { color: #789398; }
.mini-chart { height: 104px; display: flex; align-items: flex-end; gap: 8px; padding: 12px 0 20px; border-bottom: 1px solid var(--line); }
.mini-chart span { flex: 1; height: var(--h); min-height: 18px; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(32,217,202,.25), var(--brand)); box-shadow: 0 0 10px rgba(99,244,174,.15); }
.command-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 18px; }
.command-footer div { display: grid; }
.command-footer span { color: #789398; font-size: 11px; }
.command-footer strong { margin-top: 2px; font-size: 15px; }
.float-chip { position: absolute; padding: 10px 14px; border: 1px solid rgba(99,244,174,.25); border-radius: 999px; background: rgba(5, 35, 43, .78); backdrop-filter: blur(12px); color: var(--brand); font-size: 12px; font-weight: 760; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.chip-one { top: 11%; right: 3%; animation: float 5s ease-in-out infinite; }
.chip-two { bottom: 18%; left: 0; animation: float 6s ease-in-out infinite .6s; }
.chip-three { bottom: 7%; right: 12%; animation: float 5.5s ease-in-out infinite 1.1s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.signal-strip { border-block: 1px solid var(--line); background: rgba(10, 41, 50, .45); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid span { padding: 20px; text-align: center; color: #9eb7ba; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; border-right: 1px solid var(--line); }
.signal-grid span:last-child { border-right: 0; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
h2 { font-size: clamp(36px, 4.8vw, 62px); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 22px; }
.section-heading > p:last-child, .product-copy > p, .why-copy > p { color: var(--muted); font-size: 18px; max-width: 720px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 360px; padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(165deg, rgba(13, 49, 59, .78), rgba(4, 23, 31, .6)); overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; top: -95px; right: -85px; border-radius: 50%; background: var(--brand); filter: blur(70px); opacity: .08; transition: opacity .25s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(99,244,174,.42); box-shadow: 0 22px 55px rgba(0,0,0,.28); }
.service-card:hover::after { opacity: .18; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: rgba(99,244,174,.1); border: 1px solid rgba(99,244,174,.22); color: var(--brand); font-weight: 850; font-size: 19px; margin-bottom: 48px; }
.service-number { position: absolute; top: 29px; right: 28px; color: #55767b; font-size: 12px; letter-spacing: .14em; }
.service-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 14px; }
.service-card p { color: #9eb3b6; font-size: 14px; }
.service-card ul { padding: 0; margin: 22px 0 0; list-style: none; border-top: 1px solid var(--line); padding-top: 16px; }
.service-card li { color: #c7d7d8; font-size: 12px; padding: 4px 0; }
.service-card li::before { content: "•"; color: var(--brand); margin-right: 8px; }

.product-section { background: linear-gradient(180deg, rgba(7, 35, 45, .18), rgba(11, 54, 63, .43), rgba(4, 20, 29, .16)); border-block: 1px solid var(--line); }
.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.product-copy strong { color: white; }
.feature-list { margin: 38px 0 28px; display: grid; gap: 18px; }
.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature-list span { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(99,244,174,.26); display: grid; place-items: center; color: var(--brand); font-size: 10px; }
.feature-list p { margin: 3px 0 0; color: #9fb4b7; font-size: 14px; }
.text-link { color: var(--brand); font-weight: 800; display: inline-flex; gap: 12px; align-items: center; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.pulse-dashboard { border-radius: 28px; padding: 26px; }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.dashboard-top > div { display: grid; }
.dashboard-top small { color: var(--brand); letter-spacing: .14em; font-weight: 750; font-size: 10px; }
.dashboard-top strong { font-size: 20px; margin-top: 4px; }
.analysis-pill { background: rgba(99,244,174,.1); border: 1px solid rgba(99,244,174,.25); color: var(--brand); border-radius: 999px; padding: 7px 11px; font-size: 10px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 22px 0; }
.dashboard-stats div { background: rgba(1, 19, 26, .42); padding: 16px; border: 1px solid rgba(255,255,255,.045); border-radius: 16px; display: grid; }
.dashboard-stats small, .dashboard-stats span { color: #789499; font-size: 10px; }
.dashboard-stats strong { color: white; font-size: 20px; margin: 3px 0; }
.sentiment-block, .topics-block { background: rgba(1, 19, 26, .36); border: 1px solid rgba(255,255,255,.045); border-radius: 16px; padding: 17px; margin-bottom: 12px; }
.sentiment-title { display: flex; justify-content: space-between; font-size: 12px; }
.sentiment-title span { color: #789499; }
.sentiment-bar { height: 10px; display: flex; overflow: hidden; border-radius: 999px; margin: 17px 0 12px; }
.sentiment-bar span { height: 100%; }
.positive { background: var(--brand); }
.neutral { background: #39b7cc; }
.negative { background: var(--danger); }
.sentiment-legend { display: flex; flex-wrap: wrap; gap: 14px; color: #99afb2; font-size: 10px; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 5px; }
.positive-dot { background: var(--brand); } .neutral-dot { background: #39b7cc; } .negative-dot { background: var(--danger); }
.topics-block > strong { font-size: 12px; display: block; margin-bottom: 14px; }
.topic-row { display: grid; grid-template-columns: 135px 1fr 34px; align-items: center; gap: 12px; margin: 10px 0; font-size: 10px; color: #a9bdc0; }
.topic-row > div { height: 6px; background: rgba(255,255,255,.07); border-radius: 999px; overflow: hidden; }
.topic-row i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand-2), var(--brand)); border-radius: 999px; }
.topic-row em { font-style: normal; color: #6f8b8f; text-align: right; }
.dashboard-insight { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; background: rgba(99,244,174,.07); border: 1px solid rgba(99,244,174,.15); border-radius: 15px; padding: 14px; }
.dashboard-insight > span { color: var(--brand); font-size: 18px; }
.dashboard-insight p { margin: 0; color: #9db5b8; font-size: 11px; }
.dashboard-insight strong { display: block; color: white; margin-bottom: 2px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { border-top: 1px solid rgba(99,244,174,.36); padding: 25px 22px 10px 0; min-height: 210px; }
.process-card > span { color: var(--brand); font-size: 11px; letter-spacing: .13em; }
.process-card h3 { margin: 24px 0 12px; font-size: 22px; }
.process-card p { color: #91aaae; font-size: 14px; }

.why-section { padding-top: 70px; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.why-list { border-top: 1px solid var(--line); }
.why-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.why-list span { color: var(--brand); font-size: 11px; }
.why-list p { margin: 0; color: #9eb4b7; }
.why-list strong { color: white; }

.contact-section { padding-top: 60px; }
.contact-card { display: grid; grid-template-columns: 1fr .82fr; gap: 70px; padding: 58px; border: 1px solid rgba(99,244,174,.25); border-radius: 34px; background: radial-gradient(circle at 10% 0, rgba(99,244,174,.1), transparent 32%), linear-gradient(145deg, rgba(12, 51, 61, .85), rgba(5, 26, 35, .9)); box-shadow: var(--shadow); }
.contact-card > div > p:not(.eyebrow) { color: #a9bec1; font-size: 17px; }
.contact-direct { margin-top: 32px; display: grid; gap: 15px; }
.contact-direct a, .contact-direct div { display: grid; border-bottom: 1px solid var(--line); padding-bottom: 13px; }
.contact-direct small { color: #718f94; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.contact-direct strong { margin-top: 2px; font-size: 15px; overflow-wrap: anywhere; }
.contact-direct a:hover strong { color: var(--brand); }
.contact-form { background: rgba(2, 19, 26, .52); border: 1px solid rgba(255,255,255,.05); border-radius: 23px; padding: 25px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: #b8cacc; font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.035); color: white; border-radius: 12px; padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(99,244,174,.55); box-shadow: 0 0 0 3px rgba(99,244,174,.08); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #5f7c81; }
.form-note { color: #607d82; font-size: 10px; margin: -5px 0 0; text-align: center; }

.site-footer { padding: 45px 0 28px; border-top: 1px solid var(--line); background: rgba(2, 13, 19, .5); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr .7fr; align-items: center; gap: 30px; }
.footer-grid > p { color: #789398; font-size: 13px; margin: 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 19px; color: #a5b9bc; font-size: 12px; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.05); padding-top: 20px; display: flex; justify-content: space-between; color: #58757a; font-size: 10px; letter-spacing: .05em; }
.floating-contact { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; z-index: 40; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #04261f; font-weight: 900; font-size: 12px; box-shadow: 0 13px 38px rgba(32,217,202,.32); transition: transform .2s; }
.floating-contact:hover { transform: translateY(-4px) scale(1.03); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero-grid, .product-grid, .why-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
  .hero-visual { min-height: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { gap: 45px; }
  .why-grid { gap: 38px; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 15px; }
  .nav-toggle { display: block; z-index: 5; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: absolute; top: 74px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); border-radius: 18px; padding: 12px; background: rgba(4, 23, 31, .97); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; margin-top: 5px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .hero-proof div { padding: 0 0 10px; border-bottom: 1px solid rgba(255,255,255,.04); }
  .hero-visual { min-height: 460px; }
  .ring-a { width: 420px; height: 420px; }
  .ring-b { width: 315px; height: 315px; }
  .command-card { transform: none; padding: 19px; }
  .float-chip { font-size: 10px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid span:nth-child(2) { border-right: 0; }
  .signal-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .dashboard-stats { grid-template-columns: 1fr; }
  .topic-row { grid-template-columns: 115px 1fr 30px; }
  .contact-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 425px; margin-top: 10px; }
  .command-main { gap: 14px; }
  .score-ring { width: 82px; height: 82px; }
  .score-ring span { font-size: 28px; }
  .chip-one { right: -4px; top: 8%; }
  .chip-two { left: -4px; bottom: 14%; }
  .chip-three { display: none; }
  .dashboard-top { align-items: flex-start; flex-direction: column; }
  .sentiment-title { flex-direction: column; gap: 3px; }
  .topic-row { grid-template-columns: 1fr; gap: 5px; }
  .topic-row em { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Product catalogue architecture */
.products-section {
  background: linear-gradient(180deg, rgba(7, 35, 45, .18), rgba(11, 54, 63, .36), rgba(4, 20, 29, .16));
  border-block: 1px solid var(--line);
}
.products-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.products-heading > div { max-width: 760px; }
.products-heading > div > p:last-child { color: var(--muted); font-size: 18px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.products-grid-home:has(.product-card:only-child) {
  grid-template-columns: minmax(0, 1fr);
}
.product-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(99,244,174,.2);
  background:
    radial-gradient(circle at 90% 0, rgba(99,244,174,.12), transparent 30%),
    linear-gradient(155deg, rgba(11, 51, 61, .86), rgba(3, 20, 28, .88));
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
  overflow: hidden;
  position: relative;
}
.products-grid-home .product-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 30px;
}
.products-grid-home .product-card-top {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.products-grid-home .product-category,
.products-grid-home .product-card h3,
.products-grid-home .product-tagline,
.products-grid-home .product-summary,
.products-grid-home .product-platforms {
  grid-column: 2;
}
.products-grid-home .product-card-actions {
  grid-column: 3;
  grid-row: 1 / span 6;
  min-width: 210px;
  align-self: center;
}
.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.product-symbol {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 38px;
  font-weight: 900;
  border: 1px solid rgba(99,244,174,.26);
  background: rgba(99,244,174,.08);
  box-shadow: inset 0 0 30px rgba(99,244,174,.05), 0 0 35px rgba(99,244,174,.08);
}
.product-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brand);
  border: 1px solid rgba(99,244,174,.25);
  background: rgba(99,244,174,.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-category {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.product-card h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -.035em;
}
.product-tagline {
  color: white;
  font-size: 18px;
  font-weight: 760;
  margin: 0 0 15px;
}
.product-summary {
  color: #9fb6b9;
  font-size: 15px;
  margin: 0 0 24px;
  max-width: 680px;
}
.product-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.product-platforms span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: #a9bec1;
  font-size: 10px;
  font-weight: 700;
}
.product-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
}
.empty-products {
  color: var(--muted);
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: 20px;
}
.catalog-hero {
  padding-top: 155px;
  padding-bottom: 70px;
}
.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}
.catalog-hero h1,
.product-detail-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 20px 0 28px;
}
.catalog-note {
  padding: 28px;
  border-radius: 24px;
}
.catalog-note strong {
  display: block;
  color: var(--brand);
  font-size: 18px;
  margin-bottom: 10px;
}
.catalog-note p { color: #a8bdc0; margin: 0; }
.products-catalog-section { padding-top: 35px; }
.catalog-cta-section { padding-top: 30px; }
.catalog-cta-card { align-items: center; }
.catalog-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.product-detail-hero {
  padding-top: 145px;
  background: linear-gradient(180deg, rgba(7, 35, 45, .2), rgba(11, 54, 63, .35), rgba(4, 20, 29, .05));
  border-bottom: 1px solid var(--line);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.product-title-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 6px;
}
.product-symbol-large { width: 86px; height: 86px; font-size: 48px; }
.product-detail-tagline {
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
}
.product-detail-description {
  color: #a8bdc0;
  font-size: 17px;
  max-width: 700px;
}
.product-platforms-large { margin-top: 30px; }
.product-disclaimer {
  display: block;
  color: #67858a;
  margin-top: 13px;
  font-size: 10px;
}
.product-detail-section { background: rgba(8, 38, 48, .22); }
.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.detail-columns h2 { font-size: clamp(32px, 4vw, 52px); }
.detail-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.detail-list li {
  color: #b4c7c9;
  padding: 17px 0 17px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}
.product-process-section { border-top: 1px solid var(--line); }
.product-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-step {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(9, 40, 49, .45);
}
.product-step span {
  color: var(--brand);
  font-size: 11px;
  letter-spacing: .12em;
}
.product-step p {
  color: white;
  font-size: 18px;
  font-weight: 720;
  margin: 44px 0 0;
}
.product-not-found {
  min-height: 70vh;
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
  padding-top: 180px;
}
.product-not-found h1 {
  font-size: clamp(42px, 7vw, 72px);
  max-width: 900px;
}

@media (max-width: 1050px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid-home:has(.product-card:only-child) { grid-template-columns: 1fr; }
  .products-grid-home .product-card {
    grid-template-columns: 130px 1fr;
  }
  .products-grid-home .product-card-actions {
    grid-column: 2;
    grid-row: auto;
    min-width: 0;
  }
  .catalog-hero-grid,
  .product-detail-grid,
  .detail-columns { grid-template-columns: 1fr; }
  .product-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .products-heading { align-items: flex-start; flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-home .product-card {
    display: flex;
    gap: 0;
  }
  .products-grid-home .product-card-top { flex-direction: row; align-self: auto; }
  .product-card { min-height: 0; padding: 24px; }
  .product-card-actions { width: 100%; }
  .product-card-actions .button { width: 100%; }
  .catalog-hero { padding-top: 115px; }
  .catalog-hero-grid { gap: 35px; }
  .product-detail-hero { padding-top: 110px; }
  .product-detail-grid { gap: 45px; }
  .product-steps { grid-template-columns: 1fr; }
  .catalog-cta-actions { flex-direction: column; }
  .catalog-cta-actions .button { width: 100%; }
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 64px);
  text-align: center;
  border: 1px solid rgba(100, 255, 205, 0.26);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(5, 36, 48, 0.96), rgba(2, 17, 28, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.thank-you-card img {
  margin: 0 auto 22px;
}

.thank-you-card h1 {
  margin: 12px 0 16px;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
}

.thank-you-card .hero-actions {
  justify-content: center;
  margin-top: 28px;
}
