/* AI Automation Design System.
   Monochrome studio style: true black, silver and steel metallics,
   plus one soft accent, MacBook Air sky blue, used as rim light and glow only. */

:root{
  --black: #000000;
  --panel-1: #121214;
  --panel-2: #1c1c1f;
  --white: #ffffff;
  --steel-light: #ededf2;
  --steel: #949499;
  --grey: #9c9ca1;
  --hairline: rgba(255,255,255,0.10);
  --sky: #b59ede;
  --sky-bright: #c6b2e8;
  --sky-glow: rgba(181,158,222,0.24);
  --sky-edge: rgba(181,158,222,0.36);
  --sky-wash: rgba(181,158,222,0.06);
  --max: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Ambient glow ---------- */
.glow-top{
  position: relative;
}
.glow-top::before{
  content:"";
  position:absolute; top:-200px; left:50%; transform:translateX(-50%);
  width:900px; height:500px;
  background: radial-gradient(ellipse at center, var(--sky-glow) 0%, rgba(181,158,222,0.06) 45%, transparent 70%);
  pointer-events:none;
  z-index:0;
}

/* ---------- Header ---------- */
header.site{
  position: sticky; top:0; z-index: 50;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
header.site .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 28px; max-width: var(--max); margin:0 auto;
}
.brand{
  font-weight:700; font-size:17px; letter-spacing:-0.01em;
  display:flex; align-items:center; gap:10px;
}
.brand .dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--sky);
  box-shadow: 0 0 10px 2px var(--sky-glow);
}
.brand-lockup{ display:flex; flex-direction:column; line-height:1; gap:3px; }
.brand-lockup .via{ font-weight:700; font-size:17px; letter-spacing:0.01em; }
.brand-lockup .caption{ font-size:9px; letter-spacing:0.22em; color:var(--grey); text-transform:uppercase; }

/* Hero wordmark with glass reflection, a signature moment rather than a header repeat */
.wordmark{ display:inline-block; text-align:center; }
.wordmark .seam{
  height:1px; margin: 2px auto 0; width: 70%;
  background: linear-gradient(90deg, transparent, var(--sky-bright) 50%, transparent);
  box-shadow: 0 0 12px 1px var(--sky-glow);
  opacity: 0.8;
}
.wordmark .via-big{
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 800; letter-spacing: 0.06em;
  background: linear-gradient(180deg, #ffffff 15%, #b8b8be 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1;
}
.wordmark .via-reflect{
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 800; letter-spacing: 0.14em;
  line-height:1;
  text-align:center;
  transform: scaleY(-1);
  background: linear-gradient(180deg, rgba(181,158,222,0.55) 0%, rgba(181,158,222,0.12) 55%, rgba(181,158,222,0) 85%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin-top: -2px;
}
.wordmark .caption-big{
  margin-top:14px;
  font-size:12px; letter-spacing:0.3em; text-transform:uppercase; color:var(--grey); font-weight:600;
}
nav.main{ display:flex; gap:30px; }
nav.main a{
  font-size:14px; color: var(--grey); font-weight:500;
  transition: color .15s ease;
}
nav.main a:hover, nav.main a.active{ color: var(--white); }
.nav-cta{
  border:1px solid var(--sky-edge);
  padding: 9px 18px; border-radius:999px;
  font-size:13px; font-weight:600; color: var(--white);
  transition: all .2s ease;
}
.nav-cta:hover{ background: var(--sky-glow); }
.menu-btn{ display:none; background:none; border:none; color:var(--white); font-size:22px; }

/* ---------- Hero ---------- */
.hero{ padding: 110px 0 90px; text-align:left; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--sky-bright); font-weight:600; margin-bottom:22px;
}
.eyebrow::before{
  content:""; width:5px; height:5px; border-radius:50%;
  background: var(--sky); box-shadow:0 0 8px 2px var(--sky-glow);
}
h1{
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700; letter-spacing:-0.03em; line-height:1.05;
  margin: 0 0 26px;
  background: linear-gradient(180deg, #ffffff 25%, #c7c7cf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  max-width: 820px;
}
.lede{
  font-size: 19px; color: var(--grey); max-width: 620px; margin: 0 0 40px;
}
.hero-actions{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 15px 28px; border-radius:999px; font-weight:600; font-size:15px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary{
  background: linear-gradient(180deg, #ffffff, #e7e7ea);
  color:#0a0a0b;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 24px rgba(255,255,255,0.08);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 30px rgba(169,201,220,0.18); }
.btn-secondary{
  background: transparent;
  border: 1px solid var(--sky-edge);
  color: var(--white);
}
.btn-secondary:hover{ background: var(--sky-glow); transform: translateY(-1px); }
.btn-sm{ padding: 11px 20px; font-size:14px; }

/* ---------- Sections / cards ---------- */
section{ padding: 90px 0 56px; position: relative; }

/* ---------- Shimmer + flow dividers ---------- */
@keyframes shimmer{
  0%, 100%{ box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04), 0 0 40px var(--sky-wash); }
  50%{ box-shadow: 0 20px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 60px var(--sky-glow); }
}
.card{ animation: shimmer 7s ease-in-out infinite; }
.card:nth-child(2){ animation-delay: 1.4s; }
.card:nth-child(3){ animation-delay: 2.8s; }

.flow-divider{
  height: 1.5px;
  margin: 0 auto;
  max-width: 400px;
  background: linear-gradient(90deg, transparent, var(--sky) 50%, transparent);
  opacity: 0.9;
}

.section-head{ max-width: 640px; margin-bottom: 56px; }
.kicker{
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color: var(--sky-bright); font-weight:600; margin-bottom:14px;
}
h2{
  font-size: clamp(28px, 3.4vw, 40px); font-weight:700; letter-spacing:-0.02em;
  margin: 0 0 16px; color: var(--white);
}
.section-sub{ color: var(--grey); font-size:17px; max-width:560px; }

.grid{ display:grid; gap: 24px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: linear-gradient(160deg, var(--panel-2), var(--panel-1));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04), 0 0 40px var(--sky-wash);
}
.section-tint{
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--sky-wash), transparent 70%);
}
.media-frame{
  border-radius: 20px;
  border: 1px solid var(--sky-edge);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 60px var(--sky-wash);
}
.media-frame::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(169,201,220,0.10), transparent 55%);
  pointer-events:none;
}
.media-frame svg{ display:block; width:100%; height:auto; }
.card::before{
  content:"";
  position:absolute; inset:0; border-radius:20px; padding:1px;
  background: linear-gradient(135deg, var(--sky-edge), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
}
.card h3{ font-size:19px; font-weight:600; margin: 4px 0 10px; color: var(--white); }
.card p{ color: var(--grey); font-size:15px; margin:0; }
.card .num{
  font-size:13px; font-weight:700; color: var(--sky-bright);
  letter-spacing:0.08em; margin-bottom: 14px; display:block;
}

/* ---------- Steps (How it works) ---------- */
.steps{ display:flex; flex-direction:column; gap:0; }
.step{
  display:grid; grid-template-columns: 64px 1fr; gap:24px;
  padding: 32px 0; border-top: 1px solid var(--hairline);
}
.step:last-child{ border-bottom: 1px solid var(--hairline); }
.step-num{
  font-size:14px; font-weight:700; color:var(--sky-bright);
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--sky-edge);
  display:flex; align-items:center; justify-content:center;
}
.step h3{ font-size:20px; margin:0 0 8px; font-weight:600; }
.step p{ color:var(--grey); margin:0; max-width:560px; }

/* ---------- Pricing ---------- */
.price-card{
  display:flex; flex-direction:column; height:100%;
}
.price-card .price{
  font-size:40px; font-weight:700; margin: 10px 0 4px;
  background: linear-gradient(180deg, #ffffff, #b8b8be);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.price-card .price span{ font-size:14px; color:var(--grey); font-weight:500; -webkit-text-fill-color: var(--grey); }
.price-card ul{ list-style:none; padding:0; margin: 22px 0 28px; flex:1; }
.price-card li{
  padding: 10px 0 10px 26px; position:relative; color: var(--steel-light); font-size:14.5px;
  border-top: 1px solid var(--hairline);
}
.price-card li:first-child{ border-top:none; }
.price-card li::before{
  content:"•"; position:absolute; left:0; color: var(--sky);
}
.price-card.featured{
  border-color: var(--sky-edge);
  box-shadow: 0 0 0 1px var(--sky-edge), 0 24px 60px rgba(169,201,220,0.10);
}
.tag{
  position:absolute; top:-12px; right:24px;
  background: var(--sky); color:#05070a; font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:999px; letter-spacing:0.04em;
}

/* ---------- FAQ ---------- */
.faq-item{
  border-top: 1px solid var(--hairline);
  padding: 26px 0;
}
.faq-item:last-child{ border-bottom: 1px solid var(--hairline); }
.faq-item h3{ font-size:17px; font-weight:600; margin:0 0 10px; color:var(--white); }
.faq-item p{ color:var(--grey); margin:0; font-size:15px; max-width:680px; }

/* ---------- Form ---------- */
.form-panel{
  background: linear-gradient(160deg, var(--panel-2), var(--panel-1));
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-bottom:20px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field label{ font-size:13px; color: var(--grey); font-weight:500; }
.field input, .field select, .field textarea{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--sky-edge);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size:13px; color: var(--steel); margin-top:18px; }

/* ---------- Footer ---------- */
footer.site{
  border-top: 1px solid var(--hairline);
  padding: 56px 0 40px;
  margin-top: 60px;
}
.footer-grid{
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap: 40px;
}
.footer-cols{ display:flex; gap: 64px; flex-wrap:wrap; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:var(--grey); margin:0 0 14px; }
.footer-col a{ display:block; font-size:14px; color: var(--steel-light); margin-bottom:10px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  border-top: 1px solid var(--hairline);
  margin-top: 48px; padding-top: 24px;
  font-size:13px; color: var(--steel);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
}

/* ---------- CTA band ---------- */
.cta-band{
  border-radius: 28px;
  border: 1px solid var(--sky-edge);
  background: linear-gradient(160deg, rgba(169,201,220,0.07), rgba(0,0,0,0));
  padding: 64px 48px;
  text-align:center;
  box-shadow: 0 0 60px rgba(169,201,220,0.06);
}
.cta-band h2{ margin-bottom: 14px; }
.cta-band p{ color:var(--grey); font-size:16px; margin:0 0 30px; }

/* ---------- Utility ---------- */
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.small{ font-size:13px; color:var(--steel); }

/* ---------- Comparison table ---------- */
.compare-wrap{
  background: linear-gradient(160deg, var(--panel-2), var(--panel-1));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px var(--sky-wash);
}
table.compare{ width:100%; border-collapse: collapse; }
table.compare th, table.compare td{
  padding: 16px 18px; text-align:center; font-size:14px;
  border-top: 1px solid var(--hairline);
}
table.compare th{ font-weight:600; }
table.compare td:first-child, table.compare th:first-child{
  text-align:left; color: var(--grey); font-weight:500; width:38%;
}
table.compare thead th{ padding-top:26px; }
table.compare thead .tier-name{ font-size:15px; font-weight:700; color:var(--white); display:block; }
table.compare thead .tier-price{
  font-size:22px; font-weight:700; margin-top:6px; display:block;
  background: linear-gradient(180deg, #ffffff, #b8b8be);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
table.compare thead .tier-price span{ font-size:12px; color:var(--grey); font-weight:500; -webkit-text-fill-color: var(--grey); }
table.compare .recommended{ background: var(--sky-wash); position:relative; }
table.compare thead th.recommended{ border-left:1px solid var(--sky-edge); border-right:1px solid var(--sky-edge); }
table.compare tbody td.recommended{ border-left:1px solid var(--sky-edge); border-right:1px solid var(--sky-edge); }
table.compare tbody tr:last-child td.recommended{ border-bottom:1px solid var(--sky-edge); }
.rec-tag{
  display:inline-block; background: var(--sky); color:#05070a; font-size:10px; font-weight:700;
  padding:3px 10px; border-radius:999px; letter-spacing:0.04em; margin-bottom:6px;
}
.tick{ color: var(--sky-bright); font-weight:700; }
.tick-no{ color: #3a3a3e; }

/* ---------- Taster callout ---------- */
.taster{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background: linear-gradient(160deg, var(--panel-2), var(--panel-1));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.taster .price{ font-size:32px; }

/* ---------- Flow strip ---------- */
.flow-strip{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.flow-strip .fs-item{
  padding: 14px 24px; border-radius:999px; border:1px solid var(--hairline);
  background: var(--panel-1); font-size:14px; font-weight:600; color:var(--steel-light);
}
.flow-strip .fs-arrow{ color: var(--sky); font-size:18px; }

@media (max-width: 700px){
  table.compare{ font-size:12px; }
  table.compare th, table.compare td{ padding:12px 8px; }
  .flow-strip{ flex-direction:column; }
  .flow-strip .fs-arrow{ transform: rotate(90deg); }
}

.pic-placeholder{
  display:flex; align-items:center; justify-content:center;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed var(--hairline);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  color: var(--steel);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 140px;
}
.pic-placeholder.wide{ aspect-ratio: 4 / 3; }

/* ---------- Testimonials ---------- */
.testimonial{
  background: linear-gradient(160deg, var(--panel-2), var(--panel-1));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
}
.testimonial .quote-mark{ color: var(--sky); font-size:32px; font-weight:700; line-height:1; margin-bottom:10px; display:block; }
.testimonial p{ color: var(--steel-light); font-size:15px; line-height:1.6; margin:0 0 18px; }
.testimonial .who{ font-size:13.5px; color:var(--grey); }
.testimonial .who strong{ color:var(--white); font-weight:600; }

@media (max-width: 860px){
  nav.main, .nav-cta{ display:none; }
  .menu-btn{ display:block; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ flex-direction:column; }
  section{ padding: 60px 0; }
  .hero{ padding: 80px 0 60px; }
  .step > div[style*="grid-template-columns:1fr 140px"]{
    grid-template-columns: 1fr !important;
  }
  .step .media-frame{ width: 140px; margin-top: 16px; }
}
