/* ================================================================
   AE SUPER TOOL — Product Landing Page
   ================================================================ */

:root {
  --bg:        #0d0f13;
  --bg-mid:    #111318;
  --bg-lift:   #171a20;
  --surface:   #1c1f27;
  --surface2:  #24272f;
  --line:      #2c3040;
  --text:      #edf1f7;
  --muted:     #9aa0ad;
  --dim:       #636a78;
  --blue:      #72b7ff;
  --cyan:      #5ed4d0;
  --violet:    #b7a4ff;
  --amber:     #ffbf66;
  --rose:      #f28f8f;
  --green:     #7ed095;
  --ease:      200ms cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; z-index: 50;
  top: 14px;
  left: clamp(12px, 2.5vw, 32px);
  right: clamp(12px, 2.5vw, 32px);
  height: 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 9px 0 10px;
  border: 1px solid rgba(255,255,255, .08);
  border-radius: 9px;
  background: rgba(16, 19, 25, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 28px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.05);
}

.nav-brand { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-badge {
  width: 32px; height: 32px; flex: 0 0 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--violet) 55%, var(--cyan) 100%);
  color: #090e17;
  font-size: 13px; font-weight: 900;
  letter-spacing: -.01em;
  overflow: hidden; position: relative;
}
.nav-badge::after {
  content: "";
  position: absolute; left: -16px; top: -8px;
  width: 12px; height: 54px;
  transform: rotate(20deg);
  background: rgba(255,255,255,.3);
  animation: glint 5.5s ease-in-out infinite;
}
@keyframes glint {
  0%, 60%, 100% { opacity: 0; transform: translateX(0) rotate(20deg); }
  70%  { opacity: 1; transform: translateX(62px) rotate(20deg); }
  82%  { opacity: 0; transform: translateX(62px) rotate(20deg); }
}

.nav-name { font-size: 16px; font-weight: 800; letter-spacing: -.01em; color: #d4f0ff; }
.nav-name b { color: var(--text); }

.nav-links {
  display: flex; align-items: center; gap: 0;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.nav-links a {
  padding: 6px 10px; border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  min-height: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 0 18px;
  border: 1px solid transparent; border-radius: 7px;
  font-size: 14px; font-weight: 700;
  white-space: nowrap; cursor: pointer;
  transition: transform var(--ease), border-color var(--ease),
              background var(--ease), box-shadow var(--ease), opacity var(--ease);
}
.btn:hover:not(.btn-disabled) { transform: translateY(-1px); }

.btn-sm { min-height: 32px; padding: 0 12px; font-size: 12px; font-weight: 700; }

.btn-primary {
  color: #090e17;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  box-shadow: 0 6px 20px rgba(94, 212, 208, .2);
}
.btn-primary:hover:not(.btn-disabled) { box-shadow: 0 10px 28px rgba(94,212,208,.3); }

.btn-ghost {
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover:not(.btn-disabled) {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}

.btn-disabled { opacity: .6; cursor: default; pointer-events: none; }

/* ================================================================
   UTILITY
   ================================================================ */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cyan);
}
.section-head { max-width: 800px; margin-bottom: 44px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: .96; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 16px; max-width: 600px; margin: 0; }

.edge {
  position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.c-blue   { color: var(--blue);   --rgb: 114, 183, 255; }
.c-cyan   { color: var(--cyan);   --rgb: 94,  212, 208; }
.c-violet { color: var(--violet); --rgb: 183, 164, 255; }
.c-amber  { color: var(--amber);  --rgb: 255, 191, 102; }
.c-rose   { color: var(--rose);   --rgb: 242, 143, 143; }
.c-green  { color: var(--green);  --rgb: 126, 208, 149; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(108px, 14vh, 148px) clamp(24px, 6vw, 96px) clamp(80px, 10vh, 104px);
  background:
    radial-gradient(ellipse 65% 55% at 72% 30%, rgba(94,212,208,.10), transparent 54%),
    linear-gradient(122deg, rgba(114,183,255,.10) 0%, transparent 36%, rgba(183,164,255,.08) 72%),
    var(--bg-mid);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  opacity: .14;
  background:
    linear-gradient(rgba(94,212,208,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,212,208,.11) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(120deg, transparent 16%, black 44%, black 100%);
  -webkit-mask-image: linear-gradient(120deg, transparent 16%, black 44%, black 100%);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(94,212,208,.25) 40%, rgba(183,164,255,.22) 62%, transparent 95%);
}

.hero-content { position: relative; z-index: 2; }

h1 {
  font-size: clamp(68px, 9vw, 114px);
  font-weight: 900; line-height: .82;
  text-transform: uppercase; letter-spacing: -.025em;
  margin-bottom: 22px;
}

.hero-desc {
  max-width: 500px;
  color: #c0c8d4; font-size: 17px; line-height: 1.65;
  margin-bottom: 24px;
}

.stat-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px; max-width: 440px; margin-bottom: 24px;
}
.stat {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  background: rgba(255,255,255,.03);
  display: flex; flex-direction: column; gap: 3px;
}
.stat strong { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1; }
.stat span   { font-size: 12px; color: var(--muted); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; max-width: 520px; }
.tag-row span {
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px;
  font-size: 12px; color: var(--muted);
  background: rgba(255,255,255,.03);
}

/* Hero visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(420px, 52vw, 640px);
}

.hero-glow {
  position: absolute;
  width: 86%; height: 86%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(94,212,208,.22) 0%, rgba(114,183,255,.14) 38%, transparent 68%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-box {
  position: relative; z-index: 2;
  width: min(540px, 96%);
  mix-blend-mode: screen;
}

.hero-float {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.13); border-radius: 20px;
  background: rgba(14, 18, 26, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,.36);
}
.hero-float svg { width: 15px; height: 15px; flex-shrink: 0; }
.float-1 { top: 10%; left: -4%;   color: var(--violet); }
.float-2 { bottom: 18%; right: -6%; color: var(--cyan); }
.float-3 { top: 52%; left: -10%;  color: var(--blue); }

/* ================================================================
   VALUE PROPS
   ================================================================ */
.props-section {
  padding: clamp(72px, 9vh, 96px) clamp(24px, 6vw, 96px);
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.05);
}
.props-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.prop-card {
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  background: var(--surface);
  transition: border-color var(--ease);
}
.prop-card:hover { border-color: rgba(255,255,255,.15); }
.prop-num {
  display: block;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  margin-bottom: 14px;
}
.prop-card h3 {
  font-size: 16px; font-weight: 700; line-height: 1.25;
  margin-bottom: 10px; color: var(--text);
}
.prop-card p { font-size: 14px; color: var(--muted); line-height: 1.62; margin: 0; }

/* ================================================================
   VIDEO
   ================================================================ */
.video-section {
  padding: clamp(80px, 10vh, 112px) clamp(24px, 6vw, 96px);
  background: var(--bg-mid);
}
.video-section-inner { max-width: 920px; margin: 0 auto; }

.video-header {
  max-width: 580px; margin: 0 auto 36px; text-align: center;
}
.video-header .eyebrow { display: block; margin-bottom: 12px; }
.video-header h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; line-height: .96; letter-spacing: -.025em;
  margin-bottom: 10px;
}
.video-header p { color: var(--muted); margin: 0; }

/* Custom play facade */
.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 72px rgba(0,0,0,.48);
  cursor: pointer;
  outline: none;
}
.video-facade:focus-visible {
  box-shadow: 0 0 0 3px rgba(94,212,208,.5), 0 24px 72px rgba(0,0,0,.48);
}

.vf-bg {
  position: absolute; inset: 0;
  background: #070c14;
}
.vf-grid {
  position: absolute; inset: 0; opacity: .22;
  background:
    linear-gradient(rgba(94,212,208,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,212,208,.14) 1px, transparent 1px);
  background-size: 48px 48px;
}
.vf-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(94,212,208,.08), transparent 70%);
}

.vf-center {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}

.play-btn {
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.play-btn svg {
  width: 28px; height: 28px;
  margin-left: 4px;
}
.video-facade:hover .play-btn {
  transform: scale(1.10);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.40);
  box-shadow: 0 0 32px rgba(94,212,208,.24);
}
.vf-label {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

/* Loaded state */
.video-embed-wrap {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 72px rgba(0,0,0,.48);
}
.video-embed-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-section {
  padding: clamp(72px, 9vh, 96px) clamp(24px, 6vw, 96px);
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.feat-card {
  position: relative; overflow: hidden;
  padding: 22px 22px 20px 26px;
  min-height: 148px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 9px;
  background: linear-gradient(118deg, rgba(var(--rgb), .065), transparent 46%), var(--surface);
  transition: transform var(--ease), border-color var(--ease);
}
.feat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}
.feat-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feat-card p  { font-size: 14px; color: #b6bec9; line-height: 1.58; margin: 0; }

/* ================================================================
   AI SECTION
   ================================================================ */
.ai-section {
  padding: clamp(72px, 9vh, 96px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(94deg, rgba(114,183,255,.06) 0%, transparent 50%, rgba(255,191,102,.04) 100%),
    #141620;
}
.ai-inner { max-width: 1200px; margin: 0 auto; }

.workflow-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px; margin-bottom: 12px;
}
.wf-step {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 9px;
  background: linear-gradient(118deg, rgba(114,183,255,.07), transparent 48%), var(--surface);
}
.wf-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 28px; margin-bottom: 14px; border-radius: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  color: #080f1a;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}
.wf-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.wf-step p  { font-size: 14px; color: #b6bec9; line-height: 1.58; margin: 0; }

.ai-caps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.ai-caps > div {
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.07); border-radius: 9px;
  background: rgba(255,255,255,.025);
}
.ai-caps h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.ai-caps p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.58; }

/* ================================================================
   UTILITY — AUDITOR + CLIENT KIT
   ================================================================ */
.utility-section {
  padding: clamp(72px, 9vh, 96px) clamp(24px, 6vw, 96px);
  background: var(--bg-mid);
}
.utility-inner { max-width: 1200px; margin: 0 auto; }

.utility-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.util-card {
  position: relative; overflow: hidden;
  padding: 30px 30px 30px 34px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  background: linear-gradient(118deg, rgba(var(--rgb), .07), transparent 44%), var(--surface);
}
.util-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.util-card p  { font-size: 15px; color: #b6bec9; line-height: 1.65; max-width: 460px; margin: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.pill-row span {
  padding: 4px 11px;
  border: 1px solid rgba(255,255,255,.10); border-radius: 20px;
  font-size: 12px; color: var(--muted);
  background: rgba(255,255,255,.04);
}

/* ================================================================
   LAUNCH / CTA
   ================================================================ */
.launch-section {
  padding: clamp(72px, 9vh, 96px) clamp(24px, 6vw, 96px);
  background: var(--bg);
}
.launch-inner { max-width: 1200px; margin: 0 auto; }

.launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .32fr);
  gap: clamp(24px, 5vw, 60px); align-items: center;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 12px;
  background:
    linear-gradient(118deg, rgba(255,191,102,.08), transparent 46%), var(--surface);
}
.launch-text .eyebrow { display: block; margin-bottom: 12px; }
.launch-text h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800; line-height: .96; letter-spacing: -.025em;
  margin-bottom: 12px;
}
.launch-text p { color: var(--muted); max-width: 500px; }
.launch-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.launch-box {
  width: 100%; max-width: 280px; justify-self: end;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.44));
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px clamp(24px, 6vw, 96px) 34px;
  color: var(--dim); font-size: 13px;
  background: #09090d;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-name { font-weight: 700; }

/* ================================================================
   TOOL FORGE
   ================================================================ */
.forge-section {
  padding: clamp(80px, 10vh, 112px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(255,191,102,.07), transparent 54%),
    linear-gradient(94deg, rgba(255,191,102,.05) 0%, transparent 38%),
    #0d0f13;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.forge-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(44px, 7vw, 96px); align-items: start;
}
.forge-left .eyebrow { display: block; margin-bottom: 12px; color: var(--amber); }
.forge-left h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800; line-height: .96; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.forge-left p {
  font-size: 16px; color: var(--muted); line-height: 1.68; max-width: 520px;
  margin-bottom: 14px;
}
.forge-detail {
  font-size: 14px !important;
  color: var(--dim) !important;
}

.forge-steps { display: flex; flex-direction: column; gap: 12px; }

.forge-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  background: linear-gradient(100deg, rgba(255,191,102,.06), transparent 50%), var(--surface);
  transition: border-color var(--ease), transform var(--ease);
}
.forge-step:hover {
  border-color: rgba(255,191,102,.28);
  transform: translateX(3px);
}
.forge-step-num {
  flex: 0 0 36px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  color: #0d0f13;
  background: linear-gradient(135deg, var(--amber), #ffda99);
  margin-top: 1px;
}
.forge-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.forge-step p  { font-size: 14px; color: var(--muted); line-height: 1.58; margin: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 56px;
  }
  .hero-visual {
    min-height: 380px;
    justify-content: flex-start;
  }
  .hero-box { width: min(420px, 80%); }

  .props-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-caps { grid-template-columns: repeat(2, 1fr); }

  .forge-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }

  h1 { font-size: clamp(56px, 14vw, 80px); }

  .float-3 { display: none; }

  .props-inner { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .workflow-grid  { grid-template-columns: 1fr; }
  .ai-caps        { grid-template-columns: 1fr; }
  .utility-grid   { grid-template-columns: 1fr; }

  .launch-card { grid-template-columns: 1fr; }
  .launch-box  { max-width: 200px; justify-self: start; }
}

@media (max-width: 480px) {
  .nav .btn-sm { display: none; }

  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .launch-actions { flex-direction: column; }
  .launch-actions .btn { justify-content: center; }

  .float-1, .float-2 { display: none; }

  .site-footer { flex-direction: column; align-items: flex-start; }
}
