:root {
  --bg: #111117;
  --bg-deep: #0b0b10;
  --surface: #191a22;
  --surface-2: #20212b;
  --surface-3: #292b37;
  --border: #353746;
  --border-soft: rgba(185, 162, 239, 0.16);
  --text: #f1eff7;
  --muted: #aaa7b8;
  --purple: #a78bda;
  --purple-2: #b99bef;
  --purple-dark: #765ab7;
  --purple-soft: #342f43;
  --success: #73d5a1;
  --danger: #ef8898;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behaviour: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% -5%, rgba(167,139,218,.16), transparent 34rem),
    radial-gradient(circle at 12% 30%, rgba(118,90,183,.10), transparent 28rem),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(14,14,20,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 45px; height: 45px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 17px; letter-spacing: .01em; }
.brand-copy span { color: var(--purple-2); font-size: 13px; margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--muted); padding: 10px 13px; border-radius: 10px; font-size: 14px; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.045); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 8px 10px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: .18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 10px 35px rgba(141,108,209,.22);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.07); }
.btn-secondary { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.btn-secondary:hover { border-color: rgba(185,155,239,.6); background: #272833; }
.btn-small { min-height: 38px; padding: 0 14px; font-size: 13px; }

.hero { padding: 86px 0 42px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 60px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9b9ed;
  background: rgba(167,139,218,.09);
  border: 1px solid rgba(167,139,218,.19);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple-2); box-shadow: 0 0 15px rgba(185,155,239,.75); }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; margin: 22px 0 22px; }
h1 .accent, .accent { color: var(--purple-2); }
.hero p { font-size: 19px; color: #c0bdca; max-width: 650px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trial-note { color: var(--muted); font-size: 13px; margin-top: 14px; }
.hero-card {
  position: relative;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(167,139,218,.05));
  border: 1px solid rgba(185,155,239,.19);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 18% 8% -9%;
  background: rgba(123,88,190,.24);
  filter: blur(80px);
  z-index: -1;
}
.hero-card img { border-radius: 17px; border: 1px solid rgba(255,255,255,.08); }

.stat-row { padding: 34px 0 74px; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border-soft); background: rgba(28,29,38,.72); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 24px; border-right: 1px solid var(--border-soft); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 23px; margin-bottom: 3px; }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 86px 0; }
.section.alt { background: rgba(7,7,11,.24); border-block: 1px solid rgba(255,255,255,.04); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.kicker { color: var(--purple-2); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; line-height: 1.08; margin: 10px 0 14px; }
.section-head p, .lead { color: var(--muted); font-size: 17px; margin: 0; }

.workflow { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.step {
  min-height: 170px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid var(--border-soft);
  position: relative;
}
.step-num { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #e8defa; background: var(--purple-soft); border: 1px solid rgba(167,139,218,.22); font-weight: 750; }
.step h3 { margin: 22px 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 26px; border-radius: var(--radius); background: rgba(27,28,36,.82); border: 1px solid var(--border-soft); }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--purple-soft); color: var(--purple-2); font-weight: 800; margin-bottom: 18px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.project-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.project-panel { padding: 34px; border-radius: 24px; background: linear-gradient(145deg, rgba(167,139,218,.12), rgba(28,29,38,.75)); border: 1px solid rgba(185,155,239,.22); }
.project-file {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(7,7,11,.38);
  border: 1px solid rgba(255,255,255,.08);
}
.file-icon { width: 50px; height: 58px; border-radius: 10px; display:grid; place-items:center; background: #272236; color: #c8adfa; font-size: 22px; }
.project-file strong { display:block; }
.project-file span { color: var(--muted); font-size: 13px; }
.check-list { display: grid; gap: 13px; margin-top: 22px; }
.check { display: flex; gap: 11px; color: #cbc7d2; }
.check i { width: 21px; height:21px; border-radius:50%; display:grid; place-items:center; font-style:normal; background: rgba(115,213,161,.12); color: var(--success); flex: 0 0 auto; font-size: 12px; margin-top:2px; }

.showcase { padding: 12px; border-radius: 24px; background: rgba(255,255,255,.035); border: 1px solid var(--border-soft); box-shadow: var(--shadow); }
.showcase img { border-radius: 16px; }

.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: stretch; }
.price-card { padding: 34px; border-radius: 24px; background: rgba(28,29,38,.86); border: 1px solid rgba(185,155,239,.25); position: relative; overflow:hidden; }
.price-card::before { content:""; position:absolute; width:260px; height:260px; border-radius:50%; right:-100px; top:-120px; background:rgba(167,139,218,.13); filter:blur(15px); }
.price { font-size: 52px; font-weight: 800; letter-spacing: -.05em; margin: 10px 0 0; }
.price small { font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-card ul { list-style:none; padding:0; margin: 25px 0; display:grid; gap:12px; }
.price-card li { color:#cbc8d4; }
.price-card li::before { content:"✓"; color:var(--success); margin-right:10px; font-weight:700; }
.trial-card { padding: 34px; border-radius: 24px; background: linear-gradient(145deg, rgba(77,61,112,.38), rgba(27,28,36,.86)); border: 1px solid rgba(185,155,239,.22); display:flex; flex-direction:column; justify-content:center; }
.trial-card h3 { font-size: 29px; margin:0 0 8px; }
.trial-card p { color:var(--muted); margin:0 0 20px; }

.cta { padding: 50px; border-radius: 26px; background: linear-gradient(135deg, rgba(84,64,125,.45), rgba(30,30,40,.88)); border:1px solid rgba(185,155,239,.25); display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cta h2 { margin:0 0 7px; font-size:36px; }
.cta p { margin:0; color:var(--muted); }

.page-hero { padding: 76px 0 44px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 62px); margin-bottom: 14px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.content-wrap { display:grid; grid-template-columns: 260px 1fr; gap:34px; align-items:start; }
.side-nav { position: sticky; top: 105px; border:1px solid var(--border-soft); background:rgba(27,28,36,.65); border-radius:16px; padding:10px; }
.side-nav a { display:block; color:var(--muted); padding:10px 12px; border-radius:9px; font-size:14px; }
.side-nav a:hover { color:var(--text); background:rgba(255,255,255,.04); }
.prose { max-width: 850px; }
.prose h2 { font-size: 30px; margin-top: 48px; }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color:#bebbc8; }
.prose code { background:#242530; border:1px solid var(--border); padding:2px 6px; border-radius:6px; color:#d7c7f8; }
.notice { padding:18px 20px; border-radius:14px; background:rgba(167,139,218,.08); border:1px solid rgba(167,139,218,.18); color:#cbc4db; }
.faq-list { display:grid; gap:12px; }
details { background:rgba(27,28,36,.72); border:1px solid var(--border-soft); border-radius:14px; padding:17px 19px; }
summary { cursor:pointer; font-weight:650; }
details p { color:var(--muted); margin:12px 0 3px; }

footer { padding: 44px 0 28px; border-top:1px solid rgba(255,255,255,.06); background:rgba(8,8,12,.55); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:30px; }
.footer-brand p { color:var(--muted); font-size:13px; max-width:340px; }
.footer-col strong { display:block; margin-bottom:12px; font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:#d6d2df; }
.footer-col a { display:block; color:var(--muted); font-size:13px; padding:4px 0; }
.footer-bottom { margin-top:34px; padding-top:20px; border-top:1px solid rgba(255,255,255,.05); display:flex; justify-content:space-between; gap:20px; color:#777482; font-size:12px; }

@media (max-width: 1000px) {
  .hero-grid, .project-feature, .pricing-grid { grid-template-columns:1fr; }
  .workflow { grid-template-columns:repeat(3,1fr); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .hero { padding-top:60px; }
  .hero-copy { max-width:760px; }
  .content-wrap { grid-template-columns:1fr; }
  .side-nav { position:static; display:flex; flex-wrap:wrap; }
}
@media (max-width: 760px) {
  .container { width:min(100% - 28px, var(--max)); }
  .nav-links { display:none; position:absolute; left:14px; right:14px; top:68px; flex-direction:column; align-items:stretch; background:#171820; border:1px solid var(--border); border-radius:14px; padding:8px; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px; }
  .menu-toggle { display:block; }
  h1 { font-size: 48px; }
  .hero-grid { gap:38px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--border-soft); }
  .workflow { grid-template-columns:repeat(2,1fr); }
  .feature-grid { grid-template-columns:1fr; }
  .cta { padding:30px; flex-direction:column; align-items:flex-start; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; }
}
@media (max-width: 480px) {
  .brand-copy strong { font-size:14px; }
  .brand-copy span { font-size:10px; }
  .brand img { width:38px; height:38px; }
  .hero { padding-top:44px; }
  h1 { font-size: 42px; }
  .hero p { font-size:17px; }
  .workflow, .stats, .footer-grid { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid var(--border-soft); }
  .stat:last-child { border-bottom:0; }
  .step { min-height:145px; }
  .section { padding:66px 0; }
  .hero-actions .btn { width:100%; }
}
