:root {
  --brand-dark: #071233;
  --brand-mid: #10214f;
  --bg: #04050b;
  --bg-2: #0a0d17;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7ff;
  --text-muted: #9aa3b7;
  --accent: #ff8a1f;
  --accent-2: #ffb86b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 32px;
  --container: min(1220px, calc(100vw - 32px));
  --section-space: clamp(88px, 9vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 138, 31, 0.16), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(114, 216, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" on, "cv11" on;
  letter-spacing: 0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 38%, rgba(255, 255, 255, 0.01));
  pointer-events: none;
  z-index: -1;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
a:hover, button:hover { cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.page-shell { position: relative; isolation: isolate; }
.container { width: var(--container); margin: 0 auto; }
.section-pad { padding: var(--section-space) 0; }
section[id] { scroll-margin-top: 92px; }

p, .lead { color: var(--text-muted); }
h1, h2, h3 { letter-spacing: -0.03em; margin: 0; text-wrap: balance; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: white;
  color: #070911;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 5, 11, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header.scrolled {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  padding: 7px;
  background: linear-gradient(145deg, #071233 0%, #10214f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text span { color: var(--accent-2); }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text) !important;
}

.hero {
  padding-top: 96px;
  padding-bottom: 88px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 9.4ch;
  margin: 18px 0 16px;
}
.lead {
  font-size: 1.08rem;
  max-width: 50ch;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #140c02;
  box-shadow: 0 16px 36px rgba(255, 138, 31, 0.24);
}
.btn-secondary,
.btn-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  box-shadow: none;
}
.btn-link {
  padding: 0 2px;
  min-height: auto;
  border: 0;
  background: transparent;
  justify-content: flex-start;
}
.btn-link:hover { color: var(--text); transform: translateX(2px); }
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-highlights li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 6% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.16), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-frame {
  position: relative;
  width: min(100%, 640px);
  padding: 20px;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  z-index: 2;
  transition: transform 0.35s ease;
}
.hero-frame img {
  border-radius: 28px;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-side-card {
  position: absolute;
  right: -18px;
  bottom: 48px;
  width: min(220px, 34vw);
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  z-index: 3;
  transform: rotate(-8deg);
  transition: transform 0.35s ease;
}
.hero-side-card img {
  border-radius: 18px;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
}
.hero-logo-pill {
  position: absolute;
  left: -18px;
  top: 34px;
  width: 104px;
  height: 104px;
  padding: 15px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(4, 5, 11, 0.96), rgba(12, 15, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  z-index: 4;
  transition: transform 0.35s ease;
}
.hero-logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(4, 5, 11, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 700;
  z-index: 3;
}

.product-section { padding-top: 24px; }
.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 11.5ch;
}
.showcase-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: start;
}
.showcase-card {
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}
.showcase-card img {
  border-radius: 22px;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}
.showcase-card-large { grid-row: span 2; }
.showcase-card-large img { aspect-ratio: 0.72 / 1; }

.split-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.split-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.08;
  margin: 12px 0 10px;
  max-width: 9.5ch;
}
.feature-list {
  display: grid;
  gap: 14px;
}
.feature-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--text);
}
.feature-item p { margin: 0; }

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.13), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}
.cta-card h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin: 10px 0;
  max-width: 11ch;
}

.footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-grid, .split-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 580px; }
  .showcase-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-card-large { grid-row: auto; }
}

@media (max-width: 640px) {
  .container { width: calc(100vw - 24px); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { min-height: 70px; }
  .nav { gap: 10px; }
  .nav a { font-size: 0.95rem; }
  .hero { padding-top: 64px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero h1 { max-width: 11ch; }
  .hero-visual { min-height: 460px; }
  .hero-frame { padding: 10px; }
  .hero-side-card { right: 8px; bottom: 18px; width: 120px; }
  .hero-logo-pill { left: 8px; top: 12px; width: 72px; height: 72px; }
  .showcase-shell { grid-template-columns: 1fr; }
  .split-shell, .cta-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.cta-card ul{
    margin:20px 0;
    padding-left:20px;
}

.cta-card li{
    margin-bottom:10px;
    line-height:1.8;
}

.cta-card hr{
    border:0;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:40px 0;
}

.cta-card h2{
    margin-bottom:16px;
}

.cta-card p{
    line-height:1.9;
}

.cta-card a{
    color:inherit;
}
