:root {
  --bg: #070714;
  --bg-2: #0d1026;
  --card: rgba(21, 24, 52, 0.72);
  --card-strong: rgba(28, 31, 66, 0.9);
  --line: rgba(130, 156, 255, 0.18);
  --text: #ffffff;
  --muted: #c8d0ee;
  --muted-2: #92a0c5;
  --cyan: #57e7ff;
  --blue: #4f8dff;
  --purple: #a461ff;
  --violet: #6d34ff;
  --pink: #ff4fd8;
  --gold: #ffd257;
  --green: #4bffc0;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(141, 88, 255, 0.32), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(255, 210, 87, 0.14), transparent 26rem),
    radial-gradient(circle at 75% 42%, rgba(61, 212, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #070714 0%, #140b2f 48%, #090616 100%);
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}
.orb-one { top: 12%; left: -12rem; background: var(--purple); }
.orb-two { bottom: 8%; right: -12rem; background: var(--gold); opacity: 0.22; }
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 62%);
  z-index: -3;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 25, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.26);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  box-shadow: 0 0 28px rgba(255, 210, 87, 0.25);
  color: #140b2f;
  font-size: 20px;
}
.brand-text { white-space: nowrap; }
.brand-text b { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: 14px; font-weight: 800; }
.site-nav a { padding: 10px 13px; border-radius: 999px; transition: 0.2s ease; }
.site-nav a:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.site-nav .nav-cta {
  min-width: 122px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  color: #160d2e;
  background: linear-gradient(135deg, var(--gold), #ffbd3f);
  box-shadow: 0 0 24px rgba(255, 210, 87, 0.24);
}
.site-nav .nav-cta:hover {
  color: #160d2e;
  background: linear-gradient(135deg, var(--gold), #ffbd3f);
  box-shadow: 0 0 30px rgba(255, 210, 87, 0.36);
  transform: translateY(-1px);
}

.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--text); border-radius: 10px; }

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 42px;
  padding: 72px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -0.055em; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 10px; }

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #160d2e; background: linear-gradient(135deg, var(--gold), #ffbd3f); box-shadow: 0 0 34px rgba(255, 210, 87, 0.28); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.07); border-color: var(--line); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-proof span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.glass-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(23, 28, 65, 0.82), rgba(11, 13, 32, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wide-preview {
  width: 100%;
  border-radius: 30px;
  padding: 10px;
  transform: rotate(1deg);
  overflow: hidden;
}
.wide-preview img { border-radius: 22px; aspect-ratio: 16 / 10.5; object-fit: cover; object-position: center; }
.phone-preview {
  position: absolute;
  right: -6px;
  bottom: -16px;
  width: min(36vw, 235px);
  min-width: 178px;
  border-radius: 32px;
  padding: 8px;
  transform: rotate(-3deg);
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0,0,0,0.58), 0 0 44px rgba(255, 210, 87, 0.18);
}
.phone-preview img { border-radius: 24px; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 88px;
}
.stats-strip div {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  padding: 22px;
}
.stats-strip strong { display: block; margin-bottom: 6px; font-size: 18px; }
.stats-strip span { color: var(--muted); line-height: 1.55; }

.section-block { padding: 46px 0 42px; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.compact-heading { max-width: 850px; }

.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.workflow-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  padding: 24px;
  overflow: hidden;
}
.workflow-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 0.45fr 0.55fr; gap: 24px; align-items: center; }
.accent-card { border-color: rgba(255, 210, 87, 0.28); background: linear-gradient(145deg, rgba(104, 53, 215, 0.2), rgba(255,255,255,0.05)); }
.step-number {
  width: 46px; height: 46px; border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: rgba(255,210,87,0.13);
  color: var(--gold);
  font-weight: 900;
  border: 1px solid rgba(255,210,87,0.28);
}
.workflow-copy p { color: var(--muted); line-height: 1.65; }
.workflow-shot { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: #080816; }
.workflow-shot-wide img { width: 100%; aspect-ratio: 16 / 9.6; object-fit: cover; object-position: top left; }
.workflow-shot-phone { width: min(100%, 250px); margin: 14px auto 0; border-radius: 28px; }
.workflow-shot-phone img { width: 100%; }

.image-feature,
.dual-showcase,
.cta-section {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(38, 20, 82, 0.78), rgba(8, 9, 25, 0.72));
  padding: 28px;
  overflow: hidden;
}
.image-feature-copy p,
.showcase-copy p,
.cta-section p { color: var(--muted); line-height: 1.7; }
.image-feature-frame,
.showcase-frame { border-radius: 26px; padding: 8px; overflow: hidden; }
.image-feature-frame img,
.showcase-frame img { border-radius: 18px; width: 100%; }

.feature-grid,
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card,
.requirements-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  padding: 24px;
}
.icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(255, 210, 87, 0.12);
  margin-bottom: 16px;
  font-size: 22px;
}
.feature-card p,
.requirements-grid p { color: var(--muted); line-height: 1.65; }

.dual-showcase { grid-template-columns: 0.36fr 0.64fr; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; color: var(--muted); display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; line-height: 1.45; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card { margin: 0; border-radius: 24px; overflow: hidden; padding: 8px; }
.gallery-card img { border-radius: 18px; aspect-ratio: 16 / 11; object-fit: cover; object-position: top left; }
.gallery-card figcaption { color: var(--muted); font-weight: 800; padding: 12px 8px 6px; }

.cta-section {
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, rgba(108, 52, 255, 0.4), rgba(255, 210, 87, 0.14));
}
.cta-section h2 { max-width: 760px; }
.cta-section p { max-width: 760px; margin-bottom: 0; }

.site-footer {
  margin-top: 60px;
  padding: 30px 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }

@media (max-width: 980px) {
  .site-header { border-radius: 26px; align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 8px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 54px; }
  .hero-visual { min-height: 480px; }
  .stats-strip, .feature-grid, .requirements-grid, .gallery-grid { grid-template-columns: 1fr; }
  .workflow-grid, .workflow-card-wide, .image-feature, .dual-showcase, .cta-section { grid-template-columns: 1fr; }
  .workflow-card-wide { grid-column: auto; }
  .dual-showcase { margin-top: 24px; }
  .cta-section { align-items: start; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section-shell, .site-header { width: min(100% - 24px, var(--max)); }
  .brand-text { font-size: 14px; }
  .hero { padding-top: 44px; gap: 22px; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
  .hero-text { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .wide-preview { transform: none; }
  .phone-preview { right: 10px; bottom: 0; min-width: 158px; width: 44vw; }
  .stats-strip { margin-bottom: 44px; }
  .image-feature, .dual-showcase, .cta-section { padding: 18px; border-radius: 26px; }
  .workflow-card, .feature-card, .requirements-grid article { padding: 18px; }
  .workflow-shot-phone { max-width: 220px; }
}
