:root {
  color-scheme: dark;
  --bg: #090c11;
  --surface: #121720;
  --surface-2: #181f2b;
  --line: #27303f;
  --ink: #f4f7fb;
  --muted: #9aa5b5;
  --lime: #a3e635;
  --lime-ink: #172706;
  --lime-soft: rgba(163, 230, 53, .11);
  --blue: #7dd3fc;
  --danger: #fca5a5;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .35);
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 5%, rgba(163, 230, 53, .13), transparent 34rem),
    radial-gradient(circle at 12% 40%, rgba(125, 211, 252, .06), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 inherit;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.preview-banner {
  position: relative;
  z-index: 60;
  padding: 7px 16px;
  background: #facc15;
  color: #1c1917;
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
}

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--lime); color: var(--lime-ink); }
.skip-link:focus { top: 1rem; }
.wrap { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(780px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(39, 48, 63, .8);
  background: rgba(9, 12, 17, .88);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; font-size: 1.08rem; letter-spacing: -.02em; }
.brand img { width: 37px; height: 37px; }
.brand em { color: var(--lime); font-style: normal; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a, .lang-link { padding: 9px 12px; border-radius: 12px; color: var(--muted); text-decoration: none; font-weight: 650; font-size: .92rem; }
.main-nav a:hover, .main-nav a[aria-current="page"], .lang-link:hover { color: var(--ink); background: var(--surface-2); }
.nav-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: var(--surface); color: var(--ink); border-radius: 12px; padding: 8px 12px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border: 1px solid var(--line); border-radius: 14px; padding: 11px 18px; background: var(--surface-2); color: var(--ink); text-decoration: none; font-weight: 800; cursor: pointer; }
.button:hover { border-color: #465266; transform: translateY(-1px); }
.button.primary { border-color: var(--lime); background: var(--lime); color: var(--lime-ink); }
.button.ghost { background: transparent; }
.button.small { min-height: 40px; padding: 8px 14px; font-size: .9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero { padding: clamp(64px, 9vw, 112px) 0 72px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr); gap: clamp(36px, 6vw, 84px); align-items: center; }
.hero-copy-only { display: block; }
.hero-copy-only .hero-copy { max-width: 940px; }
.eyebrow { margin: 0 0 14px; color: var(--lime); text-transform: uppercase; font-size: .8rem; font-weight: 850; letter-spacing: .16em; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(2.75rem, 6.5vw, 5.6rem); font-weight: 900; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin: 0; font-size: 1.25rem; }
.lead { margin: 24px 0 0; max-width: 690px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero .actions { margin-top: 30px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; color: var(--muted); font-size: .86rem; }
.proof-row span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; background: rgba(18, 23, 32, .75); }

.product-frame { position: relative; max-width: 590px; margin-inline: auto; padding: 14px; border: 1px solid #303a49; border-radius: 30px; background: linear-gradient(145deg, #171e29, #0d1118); box-shadow: var(--shadow); }
.product-frame img { width: 100%; height: auto; border: 1px solid #242d3b; border-radius: 20px; object-fit: contain; }
.product-frame.mobile { max-width: 360px; }
.live-badge { position: absolute; right: 26px; top: 26px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(163, 230, 53, .28); border-radius: 999px; padding: 7px 10px; background: rgba(9, 12, 17, .88); color: var(--lime); font-size: .75rem; font-weight: 800; }
.live-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

.section { padding: 80px 0; }
.section + .section { border-top: 1px solid rgba(39, 48, 63, .55); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head p { max-width: 600px; margin: 0; color: var(--muted); }
.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid > .card { margin: 0; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px); background: rgba(18, 23, 32, .84); }
.card p { margin: 12px 0 0; color: var(--muted); }
.card .kicker { margin: 0 0 18px; color: var(--lime); font-size: .82rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 13px; background: var(--lime-soft); color: var(--lime); font-weight: 900; }
.feature-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.feature-list li { position: relative; padding-left: 27px; color: var(--muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 900; }

.liveview-title { margin-bottom: 28px; }
.tour { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.tour figure { margin: 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--surface); }
.tour picture { display: grid; place-items: start center; background: #0a0d13; }
.tour img { width: min(100%, 375px); height: auto; aspect-ratio: auto; object-fit: contain; object-position: top; }
.tour figcaption { padding: 18px; color: var(--muted); }
.tour strong { display: block; color: var(--ink); margin-bottom: 5px; }

.band { border: 1px solid rgba(163, 230, 53, .25); border-radius: 28px; padding: clamp(28px, 6vw, 58px); background: linear-gradient(120deg, rgba(163, 230, 53, .12), rgba(18, 23, 32, .9)); }
.band p { color: var(--muted); max-width: 760px; }
.band .actions { margin-top: 24px; }

.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card.recommended { border-color: rgba(163, 230, 53, .55); box-shadow: 0 0 0 1px rgba(163, 230, 53, .12); }
.price { margin: 20px 0 4px; font-size: 2rem; font-weight: 900; }
.price-note { color: var(--muted); font-size: .9rem; }
.price-card .extra-user-note { margin-top: 16px; padding-bottom: 22px; }
.price-card .button { margin-top: auto; }

.credit-definition { border-left: 3px solid var(--lime); padding: 14px 18px; border-radius: 0 14px 14px 0; background: var(--lime-soft); }
.payment-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.payment-row span { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d6dae1; border-radius: 10px; padding: 8px 13px; background: #fff; color: #151922; font-size: .82rem; font-weight: 850; box-shadow: 0 3px 12px rgba(0,0,0,.16); }
.payment-row span::before { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; background: #eef1f5; font-size: .68rem; font-weight: 900; }
.payment-row .visa::before { content: "V"; color: #1434cb; }
.payment-row .mastercard::before { content: "●"; color: #eb001b; background: linear-gradient(90deg, #eb001b 0 48%, #f79e1b 52%); -webkit-background-clip: text; background-clip: text; }
.payment-row .amex::before { content: "AX"; color: #fff; background: #2e77bc; }
.payment-row .apple::before { content: "●"; color: #111; }
.payment-row .google::before { content: "G"; color: #4285f4; }
.payment-row .link-pay::before { content: "L"; color: #635bff; }
.payment-row .twint::before { content: "T"; color: #fff; background: #111; }
.payment-row small { color: #596273; font-weight: 700; }

.article { padding: 68px 0 90px; }
.article-header { max-width: 860px; margin-bottom: 42px; }
.article-header h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
.prose { max-width: 850px; }
.prose h2 { margin: 46px 0 14px; font-size: 1.8rem; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: #c0c8d4; }
.prose a { color: var(--lime); }
.prose blockquote { margin: 28px 0; border-left: 4px solid var(--lime); padding: 18px 22px; background: var(--lime-soft); border-radius: 0 14px 14px 0; }
.prose address { font-style: normal; color: #c0c8d4; }
.faq-index { margin: 0 0 44px; border: 1px solid var(--line); border-radius: 18px; padding: 20px 24px; background: rgba(18, 23, 32, .84); }
.faq-index ul { margin: 0; padding-left: 20px; columns: 2; column-gap: 36px; }
.faq-index li { break-inside: avoid; margin: 6px 0; }
.faq-group { scroll-margin-top: 96px; }
.faq-group + .faq-group { margin-top: 52px; }
.faq-group h2 { margin-top: 0; }
.faq-item { scroll-margin-top: 96px; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; cursor: pointer; list-style: none; padding: 20px 48px 20px 0; color: var(--ink); font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 15px; color: var(--lime); font-size: 1.6rem; font-weight: 500; }
.faq-item[open] summary::after { content: "−"; }
.faq-item div { padding: 0 48px 18px 0; }
.faq-item p { margin: 0; }
.callout { margin: 28px 0; border: 1px solid rgba(125, 211, 252, .28); border-radius: 18px; padding: 20px; background: rgba(125, 211, 252, .06); }
.legal-note { border-left: 3px solid var(--muted); padding-left: 15px; color: var(--muted); font-size: .9rem; }

.contact-form { max-width: 760px; display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: #d8dee8; font-weight: 650; }
input, select, textarea { width: 100%; border: 1px solid #364154; border-radius: 13px; padding: 12px 14px; background: #0d1118; color: var(--ink); }
textarea { min-height: 170px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.status-message { display: none; margin-bottom: 20px; border-radius: 14px; padding: 14px 16px; }
.status-message[data-visible="true"] { display: block; }
.status-message.success { border: 1px solid rgba(163,230,53,.4); background: var(--lime-soft); }
.status-message.error { border: 1px solid rgba(252,165,165,.4); background: rgba(252,165,165,.08); }

.site-footer { border-top: 1px solid var(--line); padding: 50px 0; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid h2 { font-size: .9rem; color: var(--ink); letter-spacing: 0; }
.footer-grid ul { margin: 13px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .85rem; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 65px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #0d1118; box-shadow: var(--shadow); }
  .main-nav[data-open="true"] { display: grid; }
  .lang-link { margin-left: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-frame { width: min(100%, 720px); }
  .grid.three, .price-grid { grid-template-columns: 1fr 1fr; }
  .tour { grid-template-columns: repeat(3, minmax(280px, 1fr)); overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x proximity; }
  .tour figure { scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .site-header .button.small { display: none; }
  .hero { padding-top: 48px; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .grid.two, .grid.three, .price-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .faq-index ul { columns: 1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
