/* Oravel — editorial dark, violet accent, grain + aurora. v2 */
:root {
  --bg: #07070b;
  --bg2: #0c0c13;
  --bg3: #12121c;
  --text: #f0eff7;
  --text2: #9c9bb3;
  --text3: #5d5c76;
  --accent: #7c6cff;
  --accent2: #a89dff;
  --accent-soft: rgba(124, 108, 255, 0.12);
  --line: rgba(255, 255, 255, 0.07);
  --line2: rgba(255, 255, 255, 0.12);
  --green: #4ade80;
  --amber: #fbbf24;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --serif: "Fraunces", Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(124, 108, 255, 0.4); color: #fff; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* aurora + grain */
.aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(124, 108, 255, 0.17), transparent 62%),
    radial-gradient(700px 420px at -6% 12%, rgba(76, 61, 173, 0.12), transparent 60%),
    radial-gradient(1000px 600px at 50% 115%, rgba(124, 108, 255, 0.07), transparent 65%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
a { color: var(--accent2); text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--mono); }

/* ─ nav ─ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 7, 11, 0.72); border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--line); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: baseline; gap: 9px; color: var(--text); }
.logo .word { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: 0.2px; }
.logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); align-self: center; }
.logo .by { font-family: var(--mono); font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text3); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-links > a:not(.btn) { color: var(--text2); transition: color 0.15s; }
.nav-links > a:not(.btn):hover { color: var(--text); }
@media (max-width: 720px) { .nav-links > a:not(.btn) { display: none; } }

/* ─ buttons ─ */
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 11px; font-size: 14.5px; font-weight: 600;
  border: 1px solid var(--line2); color: var(--text); background: transparent; transition: all 0.18s; cursor: pointer;
}
.btn:hover { border-color: var(--accent2); color: #fff; }
.btn.primary {
  background: linear-gradient(135deg, #8b7cff, #6c5aff); border-color: transparent; color: #fff;
  box-shadow: 0 6px 30px rgba(124, 108, 255, 0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 38px rgba(124, 108, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn.lg { padding: 15px 30px; font-size: 15.5px; border-radius: 13px; }

/* ─ hero ─ */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 82px 0 72px; }
@media (max-width: 920px) { .hero { grid-template-columns: 1fr; padding-top: 54px; } }
.kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
h1 { font-family: var(--serif); font-size: clamp(42px, 5.6vw, 68px); line-height: 1.02; font-weight: 600; letter-spacing: -1px; margin-bottom: 24px; }
h1 em { font-style: italic; color: var(--accent2); }
.hero .sub { font-size: 17.5px; color: var(--text2); max-width: 480px; margin-bottom: 34px; }
.hero .sub b { color: var(--text); font-weight: 600; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .note { margin-top: 18px; font-family: var(--mono); font-size: 11.5px; color: var(--text3); letter-spacing: 0.3px; }

/* answer demo card */
.answer-demo { position: relative; }
.answer-demo .halo { position: absolute; inset: -40px; background: radial-gradient(60% 60% at 50% 45%, rgba(124,108,255,0.16), transparent 70%); z-index: -1; }
.chat {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--line2); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.chat .bar { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.chat .bar .dots { display: flex; gap: 5px; }
.chat .bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--bg3); border: 1px solid var(--line2); }
.chat .bar span { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-left: 6px; }
.chat .q { font-size: 14px; color: var(--text2); background: var(--bg3); border-radius: 11px; padding: 10px 14px; width: fit-content; margin-bottom: 16px; }
.chat .a { font-size: 14.5px; line-height: 1.75; color: var(--text); min-height: 128px; }
.chat .a .caret { display: inline-block; width: 8px; height: 17px; background: var(--accent2); vertical-align: -3px; margin-left: 2px; animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.cite {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11.5px;
  color: var(--accent2); background: var(--accent-soft); border: 1px solid rgba(124, 108, 255, 0.35);
  border-radius: 999px; padding: 2px 10px; white-space: nowrap;
  opacity: 0; transform: translateY(4px); transition: all 0.4s;
}
.cite.show { opacity: 1; transform: none; }
.cite::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.chat .foot { margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; color: var(--text3); display: flex; justify-content: space-between; }
.chat .foot .ok { color: var(--green); opacity: 0; transition: opacity 0.5s; }
.chat .foot .ok.show { opacity: 1; }

/* ─ ticker ─ */
.ticker-wrap { border-block: 1px solid var(--line); padding: 15px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ticker { display: flex; gap: 54px; width: max-content; animation: slide 30s linear infinite; font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); white-space: nowrap; }
.ticker b { color: var(--text2); font-weight: 500; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker { animation: none; } .chat .a .caret { animation: none; } }

/* ─ sections ─ */
section { padding: 84px 0; }
.sec-kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.sec-kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
h2 { font-family: var(--serif); font-size: clamp(30px, 3.8vw, 44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; }
h2 em { font-style: italic; color: var(--accent2); }
.sec-sub { color: var(--text2); max-width: 560px; font-size: 16.5px; }

/* feature rows */
.feat { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; padding: 56px 0; }
.feat.flip { grid-template-columns: 1.1fr 1fr; }
.feat.flip .copy { order: 2; }
.feat.flip .visual { order: 1; }
@media (max-width: 920px) { .feat, .feat.flip { grid-template-columns: 1fr; gap: 30px; } .feat.flip .copy { order: 1; } .feat.flip .visual { order: 2; } }
.feat h3 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; line-height: 1.15; margin-bottom: 14px; }
.feat p { color: var(--text2); font-size: 15.5px; max-width: 440px; }
.feat .points { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.feat .points span { font-size: 14px; color: var(--text2); padding-left: 24px; position: relative; }
.feat .points span::before { content: "→"; position: absolute; left: 0; color: var(--accent2); font-family: var(--mono); }

/* ui mock panels */
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.012));
  border: 1px solid var(--line2); border-radius: 18px; padding: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5); position: relative; overflow: hidden;
}
.panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(168,157,255,0.5), transparent); }
.panel .ph { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 15px; display: flex; justify-content: space-between; }
.panel .ph b { color: var(--accent2); font-weight: 500; }
.rowline { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.rowline:last-child { border: 0; }
.rowline .t { flex: 1; color: var(--text); }
.rowline .m { font-family: var(--mono); font-size: 11px; color: var(--text3); }
.pill { font-family: var(--mono); font-size: 10px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line2); color: var(--text2); white-space: nowrap; }
.pill.v { color: var(--accent2); border-color: rgba(124,108,255,0.4); background: var(--accent-soft); }
.pill.g { color: var(--green); border-color: rgba(74,222,128,0.35); background: rgba(74,222,128,0.08); }
.pill.a { color: var(--amber); border-color: rgba(251,191,36,0.35); background: rgba(251,191,36,0.08); }
.bar-bg { flex: none; width: 74px; height: 5px; border-radius: 99px; background: var(--bg3); overflow: hidden; }
.bar-bg i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.skel { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.07); margin: 9px 0; }
.article-mock p.line { font-size: 13.5px; line-height: 1.8; color: var(--text2); margin-bottom: 10px; }
.article-mock .link { color: var(--accent2); border-bottom: 1px dotted rgba(168,157,255,0.5); }

/* how */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 46px; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.stepv { padding: 0 26px 8px 0; position: relative; }
.stepv .num { font-family: var(--serif); font-style: italic; font-size: 42px; color: var(--accent2); opacity: 0.85; line-height: 1; margin-bottom: 14px; }
.stepv::before { content: ""; position: absolute; top: 20px; left: -26px; right: 26px; height: 1px; background: var(--line); }
.stepv:first-child::before { display: none; }
@media (max-width: 860px) { .stepv::before { display: none; } .stepv { padding: 18px 0; border-bottom: 1px solid var(--line); } }
.stepv h4 { font-size: 16px; margin-bottom: 7px; }
.stepv p { font-size: 13.5px; color: var(--text2); }

/* cta */
.finale { text-align: center; padding: 100px 0 110px; }
.finale h2 { font-size: clamp(36px, 5vw, 58px); max-width: 700px; margin: 0 auto 20px; }
.finale .sec-sub { margin: 0 auto 38px; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.price-card { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)); border: 1px solid var(--line2); border-radius: 18px; padding: 30px 28px; position: relative; display: flex; flex-direction: column; }
.price-card ul { flex: 1; }
.price-card.hot { border-color: rgba(124,108,255,0.55); box-shadow: 0 0 60px rgba(124,108,255,0.12); }
.price-card .tier { font-family: var(--mono); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent2); margin-bottom: 14px; }
.price-card .amount { font-family: var(--serif); font-size: 32px; font-weight: 600; margin-bottom: 4px; }
.price-card .per { font-family: var(--mono); font-size: 11.5px; color: var(--text3); margin-bottom: 22px; }
.price-card ul { list-style: none; margin-bottom: 26px; }
.price-card li { font-size: 14px; color: var(--text2); padding: 6px 0 6px 24px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* legal */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 28px 90px; }
.legal h1 { font-size: 36px; text-align: left; margin-bottom: 8px; letter-spacing: -0.5px; }
.legal .updated { font-family: var(--mono); color: var(--text3); font-size: 12px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 14.5px; color: var(--text2); margin-bottom: 10px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal b { color: var(--text); }

/* footer */
footer { border-top: 1px solid var(--line); padding: 52px 0 60px; position: relative; overflow: hidden; }
.bigmark { font-family: var(--serif); font-size: clamp(90px, 16vw, 210px); font-weight: 600; line-height: 0.8; color: rgba(255,255,255,0.026); user-select: none; pointer-events: none; position: absolute; right: -10px; bottom: -36px; }
.foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; position: relative; }
.foot .links { display: flex; gap: 24px; font-size: 13.5px; }
.foot .links a { color: var(--text3); transition: color 0.15s; }
.foot .links a:hover { color: var(--text); }
.foot .fine { font-family: var(--mono); font-size: 11px; color: var(--text3); }

/* reveals */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }
