 :root {
  --bg: #081019;
  --bg-soft: #0d1724;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.08);
  --text: #eef4ff;
  --muted: #9fb0c7;
  --line: rgba(255,255,255,0.1);
  --accent: #d11f5f;
  --accent-2: #7c3aed;
  --accent-3: #44c1f0;
  --shadow: 0 30px 80px rgba(0,0,0,0.35);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(209,31,95,0.14), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(124,58,237,0.18), transparent 24%),
    radial-gradient(circle at 75% 65%, rgba(68,193,240,0.10), transparent 22%),
    linear-gradient(180deg, #07111c 0%, #081019 45%, #09121d 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 16, 25, 0.68);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.3),
    0 14px 30px rgba(209,31,95,0.18);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav > a {
  color: var(--muted);
  font-size: 15px;
}

.nav > a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 32px rgba(209,31,95,0.24);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 84px 0 56px;
  overflow: clip;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: .7;
  pointer-events: none;
}
.orb-a {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 8%;
  background: rgba(209,31,95,0.18);
}
.orb-b {
  width: 220px;
  height: 220px;
  left: 4%;
  bottom: 10%;
  background: rgba(124,58,237,0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: #d7e3f7;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #74e2b0, var(--accent-3));
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 720px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.iphone-stage {
  position: relative;
  width: min(520px, 100%);
  display: grid;
  place-items: center;
}

.iphone-3d-wrap {
  perspective: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.iphone-3d {
  transform: rotateY(-18deg) rotateX(8deg);
  transition: transform 0.5s ease;
  will-change: transform;
}

.iphone-frame {
  position: relative;
  width: 320px;
}

.iphone-frame-img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
  pointer-events: none;
}

.iphone-screen {
  position: absolute;
  top: 1.2%;
  left: 1.6%;
  width: 95.8%;
  height: 98.2%;
  overflow: hidden;
  border-radius: 51px;
  background: #0e1725;
  z-index: 3;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.screen-gloss {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.015) 22%, rgba(255,255,255,0) 48%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.05));
  pointer-events: none;
  z-index: 3;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 240px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-note strong { display: block; margin-bottom: 8px; }
.floating-note span { color: var(--muted); line-height: 1.55; font-size: 14px; }

.screen-indicators {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  background: rgba(8,16,25,0.45);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}

.screen-indicators button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}

.screen-indicators button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  transform: scale(1.35);
}

.logo-strip {
  padding: 12px 0 30px;
}

.logo-strip__inner {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
  padding: 22px 0;
}

.logo-strip__inner span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #d5e2f6;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.align-center {
  margin-inline: auto;
  text-align: center;
}

.section-head.narrow {
  max-width: 700px;
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #cdd9ee;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.65;
}
.bullet::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.surface-card {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #0e1928, #0b1320);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.surface-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.surface-toolbar small { color: var(--muted); }

.toolbar-dots {
  display: flex;
  gap: 8px;
}

.toolbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.portal-rotator {
  position: relative;
  padding: 22px;
  min-height: 420px;
}

.portal-slide {
  position: absolute;
  inset: 22px;
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .8s ease, transform .9s ease;
  pointer-events: none;
}

.portal-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.portal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 22px;
}

.portal-tabs button {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.portal-tabs button.is-active {
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.feature-card,
.info-card,
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(209,31,95,0.22), rgba(124,58,237,0.22));
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 20px;
}

.feature-card h3,
.info-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.feature-card p,
.info-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.portal-info-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.cta-panel {
  border-radius: 38px;
  padding: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(209,31,95,0.18), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(124,58,237,0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 0 0 44px;
}

.footer-grid {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 20px;
  color: var(--muted);
}

.footer-grid h4 {
  color: var(--text);
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.footer-grid a:hover { color: var(--text); }
.footer-grid p { line-height: 1.7; }

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .cta-panel,
  .footer-grid,
  .feature-grid,
  .portal-info-grid,
  .steps-grid,
  .logo-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header__inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 16px;
    line-height: 1.1;
  }

  .brand-copy small {
    font-size: 11px;
    white-space: normal;
    line-height: 1.2;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(10,16,24,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }
  .nav-cta { flex-direction: column; }

  .hero {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-grid,
  .hero-stats,
  .split-grid,
  .feature-grid,
  .portal-info-grid,
  .steps-grid,
  .footer-grid,
  .logo-strip__inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: auto;
    display: block;
    margin-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero-copy p,
  .section-head p,
  .cta-panel p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .nav-cta .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 24px;
  }

  .stat-card,
  .feature-card,
  .info-card,
  .step-card {
    padding: 22px;
  }

  .iphone-stage {
    width: 100%;
    gap: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .iphone-frame {
    width: min(74vw, 300px);
  }

  .iphone-3d {
    transform: rotateY(-8deg) rotateX(3deg) rotateZ(-2deg);
  }

  .floating-note {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;
  }

  .screen-indicators {
    margin-top: 2px;
  }

  .logo-strip__inner span {
    min-height: 60px;
  }

  .portal-rotator {
    min-height: 280px;
    padding: 16px;
  }

  .portal-slide {
    inset: 16px;
  }

  .portal-tabs {
    padding: 0 16px 16px;
  }

  .cta-panel {
    padding: 24px;
  }

  .footer-grid {
    gap: 8px;
  }
}

#seo-copy .section-head{max-width:900px}


.hero-copy,
.hero-visual,
.iphone-stage,
.split-grid > *,
.feature-grid > *,
.portal-info-grid > *,
.steps-grid > * {
  min-width: 0;
}
