/* ============================================================
   LUNARA EXTERNAL
   Reproduit la structure de buymatcha.xyz :
   noir #0a0a0a / violet #b97cf2 / peche #ffcec2
   radius 10 13 17 20 400px - titres 45px - prix 76px
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --text: #fff;
  --text-2: #ffffff8f;
  --text-3: #ffffff70;
  --violet: #b97cf2;
  --violet-70: #b97cf2b3;
--peach: #ffcec2;
  --peach-dim: #ffcec280;
  --line: #ffffff1f;
  --line-soft: #ffffff12;
  --card: #ffffff08;
  --card-2: #ffffff0f;
  --shell: 1200px;
  --content: 1000px;

  /* alias conserves pour admin.html */
  --txt: var(--text);
  --muted: var(--text-2);
  --r: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 500; letter-spacing: -0.04em; }
a { color: inherit; text-decoration: none; }
code, .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
em { font-style: italic; }
.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 32px; }
.wrap { max-width: var(--content); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(46% 32% at 12% 0%, #b97cf20f, transparent 72%),
    radial-gradient(38% 28% at 92% 14%, #ffcec20a, transparent 74%);
}
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .028;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ================= NAV ================= */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 82px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  max-width: 100%;
  background: rgba(10, 10, 10, 0.44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 600; letter-spacing: -0.03em; }
.brand-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(150deg, var(--violet), var(--peach));
  box-shadow: 0 0 18px #b97cf259;
}

.nav-links { display: flex; align-items: center; gap: 32px; font-size: 15px; color: var(--text-2); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ================= BOUTONS ================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 17px 34px; border-radius: 400px;
  border: 0.3px solid #ffffff4d;
  font-size: 16px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.6em;
  color: var(--text); cursor: pointer; white-space: nowrap;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(162deg, #deb0ffe6, #b97cf2e6);
  color: #0a0a0a; font-weight: 600; border-color: transparent;
  box-shadow: 0 10px 24px #7b3ff240, inset 1.5px 0.5px 16px #ffffff59;
}
.btn-primary:hover { box-shadow: 0 14px 32px #7b3ff255, inset 1.5px 0.5px 16px #ffffff59; }

.btn-secondary { background: var(--card); border: 1px solid var(--line); box-shadow: inset 1px 1px 16px #ffffff0f; }
.btn-secondary:hover { border-color: #ffffff4d; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 17px; border-radius: 400px;
  border: 1px solid var(--line); background: var(--card);
  font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: #ffffff4d; color: var(--text); }
.btn-ghost.sm { padding: 5px 11px; font-size: 12.5px; }

.arrow { font-size: 13px; }

/* ================= BLOBS ================= */

.blob {
  position: absolute; width: 300px; height: 430px; border-radius: 470px;
  filter: blur(80px); opacity: .13; pointer-events: none; z-index: 0;
}
.blob-v { background: radial-gradient(closest-side, #b97cf266, transparent); }
.blob-p { background: radial-gradient(closest-side, #ffcec24d, transparent); }

/* ================= HERO ================= */

.hero { position: relative; padding: 200px 0 96px; text-align: center; overflow: hidden; }
.hero .blob-1 { top: -120px; left: -130px; }
.hero .blob-2 { top: 20px; right: -150px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 19px; letter-spacing: -0.02em; line-height: 1.6em;
  background: linear-gradient(0deg, var(--violet-70) -36%, var(--peach) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.badge i { width: 7px; height: 7px; background: var(--peach); transform: rotate(45deg); flex: 0 0 auto; }

.hero h1 {
  margin: 24px 0 0;
  font-size: 137px; line-height: 1.2em; letter-spacing: -0.04em; font-weight: 500;
}
.hero h1 .ch {
  display: inline-block;
  background: linear-gradient(615deg, #f3d6ff, #c76eff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rise .8s cubic-bezier(.2, .8, .2, 1) backwards;
}
.hero h1 .ch.n { animation-delay: .05s; }
.hero h1 .ch.o { animation-delay: .1s; }
.hero h1 .ch.r { animation-delay: .15s; }
.hero h1 .ch.a { animation-delay: .2s; }
.hero h1 .ch.s { animation-delay: .25s; }
.hero h1 .ch.t { animation-delay: .3s; }
.hero h1 .ch.e { animation-delay: .35s; }
.hero h1 .ch.p { animation-delay: .4s; }
.hero h1 .ch.d { animation-delay: .45s; }
.hero h1 .ch.d2 { animation-delay: .5s; }
.hero h1 .ch.m { animation-delay: .55s; }
.hero h1 .ch.k { animation-delay: .6s; }
.hero h1 .ch.i { animation-delay: .65s; }

@keyframes rise { from { opacity: 0; transform: translateY(60px) rotate(6deg); } to { opacity: 1; transform: none; } }

.hero p {
  max-width: 640px; margin: 28px auto 0;
  font-size: 22px; line-height: 1.3em; letter-spacing: -0.02em; color: var(--text-2);
}
.hero p b { color: var(--text); font-weight: 500; }

.hero-actions { margin-top: 42px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 30px; font-size: 14px; color: var(--text-3); }

/* ================= MARQUEE ================= */

.marquee-band { position: relative; padding: 54px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-band .lbl { text-align: center; font-size: 15px; color: var(--text-3); margin-bottom: 26px; }
.marquee { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span {
  padding: 0 30px; font-size: 30px; font-weight: 500; letter-spacing: -0.03em;
  color: #ffffff2e; white-space: nowrap; display: flex; align-items: center; gap: 30px;
}
.marquee span::after { content: ''; width: 6px; height: 6px; background: var(--violet); transform: rotate(45deg); opacity: .55; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ================= SECTIONS ================= */

.sec { position: relative; padding: 104px 0; }

.sec-title { font-size: 45px; line-height: 1.15; text-align: center; margin-bottom: 16px; letter-spacing: -0.03em; }
.sec-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; letter-spacing: -0.01em;
  color: var(--violet);
}
.sec-sub { text-align: center; color: var(--text-2); font-size: 18px; margin: 0 auto 56px; max-width: 620px; }

/* ================= COMPARATIF ================= */

.vs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vs::after {
  content: 'VS';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  color: var(--text-3); z-index: 2;
}
.vs-col {
  position: relative;
  border-radius: 20px; border: 1px solid var(--line);
  background: var(--card); overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.vs-col.win {
  border-color: #b97cf259;
  background: linear-gradient(180deg, #b97cf21c 0%, #b97cf207 38%, #ffffff05 100%);
  box-shadow: 0 0 50px #b97cf226, inset 0 1px 0 #ffffff14;
}
.vs-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 30px 28px 24px;
  border-bottom: 1px solid var(--line);
}
.vs-col.win .vs-head {
  background: linear-gradient(180deg, #b97cf233, transparent);
  border-bottom-color: #b97cf24d;
}
.vs-head h3 { font-size: 30px; letter-spacing: -0.03em; }
.vs-col.win .vs-head h3 {
  background: linear-gradient(100deg, var(--peach) 0%, var(--violet) 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vs-tag {
  flex: 0 0 auto;
  padding: 5px 12px; border-radius: 400px;
  border: 1px solid #b97cf266; background: #b97cf21f;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--peach); white-space: nowrap;
}
.vs-row {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px; color: var(--text-2);
  transition: background-color .25s;
}
.vs-row:last-child { border-bottom: 0; }
.vs-row:hover { background: #ffffff0a; }
.vs-row i {
  width: 23px; height: 23px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  font-size: 12px; font-style: normal;
}
.vs-row.yes { color: var(--text); font-weight: 500; }
.vs-row.yes i {
  background: linear-gradient(140deg, var(--violet), #7b3ff2);
  color: #fff; box-shadow: 0 0 14px #b97cf273;
}
.vs-row.no { color: var(--text-3); }
.vs-row.no i { background: #ffffff0f; color: #ffffff59; }

/* ================= BENTO ================= */

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
  position: relative;
  padding: 46px 32px 42px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: inset 0 -17px 17.8px #ffffff08;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #b97cf299, transparent);
  opacity: 0; transition: opacity .4s;
}
.bento-card:hover {
  border-color: #ffffff4d;
  transform: translateY(-5px);
  box-shadow: inset 0 -17px 17.8px #ffffff0f, 0 18px 40px -24px #000000cc;
}
.bento-card:hover::before { opacity: 1; }
.bento-card.feature { border-color: #b97cf24d; background: #ffffff0d; }

.bento-card .blob { top: -170px; right: -120px; }
.bento-ico {
  position: relative;
  width: 54px; height: 54px; border-radius: 50%; margin-bottom: 26px;
  display: grid; place-items: center;
  background: var(--card-2); border: 1px solid var(--line); color: var(--violet);
  transition: transform .3s, border-color .3s, background-color .3s;
}
.bento-card:hover .bento-ico {
  transform: scale(1.07);
  border-color: #b97cf273;
  background: #b97cf21f;
}
.bento-ico svg { width: 24px; height: 24px; }
.bento-card h3 {
  position: relative;
  font-size: 30px; line-height: 1.15em; letter-spacing: -0.035em; margin-bottom: 15px;
}
.bento-card h3 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; letter-spacing: -0.01em;
  color: var(--violet);
}
.bento-card p {
  position: relative;
  font-size: 16.5px; line-height: 1.62em; color: var(--text-2);
}

/* ================= LISTE ================= */

.list-card { border-radius: 20px; border: 1px solid var(--line); background: var(--card); padding: 40px; position: relative; overflow: hidden; }
.cat { margin-bottom: 34px; }
.cat:last-child { margin-bottom: 0; }
.cat h4 { font-size: 20px; letter-spacing: -0.03em; margin-bottom: 4px; }
.cat h4 span { color: var(--violet); }
.cat-hint { font-size: 14px; color: var(--text-3); margin-bottom: 15px; }
.cat ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.cat li {
  padding: 9px 15px; border-radius: 13px; border: 1px solid var(--line-soft);
  background: #ffffff08; font-size: 14.5px; color: var(--text-2);
  transition: background-color .25s, border-color .25s, color .25s;
}
.cat li:hover { background: #ffffff14; border-color: #ffffff38; color: var(--text); }
.cat li::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 9px; border-radius: 50%; background: var(--violet); vertical-align: middle; }

/* ================= CATEGORIES COMPACTES ================= */

.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.cats .cat { margin-bottom: 0; }

.cat {
  grid-column: span 2;
  padding: 30px 26px 32px;
  border-radius: 20px; border: 1px solid var(--line); background: var(--card);
  transition: border-color .3s, transform .3s;
}
.cat.half { grid-column: span 3; }
.cat:hover { border-color: #ffffff40; transform: translateY(-3px); }

.cat-ico {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 22px;
  display: grid; place-items: center;
  background: var(--card-2); border: 1px solid var(--line); color: var(--violet);
  transition: transform .3s, border-color .3s;
}
.cat:hover .cat-ico { transform: scale(1.07); border-color: #b97cf273; }
.cat-ico svg { width: 21px; height: 21px; }

.cat h4 { font-size: 22px; letter-spacing: -0.03em; margin-bottom: 16px; }
.cat h4 span { color: var(--text); font-family: inherit; font-style: normal; font-weight: 500; }
.cat-hint { font-size: 14px; color: var(--text-3); margin-bottom: 15px; }
.cat ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cat li {
  display: flex; align-items: center; gap: 10px;
  padding: 0; border: 0; background: none; border-radius: 0;
  font-size: 15px; line-height: 1.5em; color: var(--text-2);
}
.cat li::before {
  content: ''; flex: 0 0 auto; width: 5px; height: 5px;
  border-radius: 50%; background: var(--violet);
}
.cat li b { color: var(--text); font-weight: 500; }

/* ================= PRIX ================= */

.price-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.price {
  position: relative; flex: 1 1 280px; max-width: 380px;
  padding: 34px 28px 36px; border-radius: 20px;
  border: 1px solid var(--line); background: var(--card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.price:hover { border-color: #ffffff40; transform: translateY(-4px); }
.price.hot { border-color: #b97cf266; }
.price.hot:hover { border-color: #b97cf280; }
.price .blob { top: -180px; right: -130px; }
.price-flag {
  position: relative; align-self: flex-start; display: inline-block; padding: 5px 13px; border-radius: 400px;
  border: 1px solid var(--line); background: var(--card-2); font-size: 13px; color: var(--text-2);
}
.price h3 { position: relative; margin: 18px 0 0; font-size: 26px; letter-spacing: -0.03em; }
.price .amount { position: relative; display: flex; align-items: baseline; gap: 7px; margin: 10px 0 2px; }
.price .amount b {
  font-size: 58px; line-height: 1.3em; letter-spacing: -0.04em; font-weight: 500;
  background: linear-gradient(195deg, #ffffff, #c76eff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price.hot .amount b { background: linear-gradient(195deg, #ffffff, #ffcec2); -webkit-background-clip: text; background-clip: text; }
.price .amount i { font-style: normal; font-size: 14px; color: var(--text-3); }
.price .desc { position: relative; font-size: 15.5px; color: var(--text-2); margin: 12px 0 24px; }
.price ul { position: relative; list-style: none; margin-bottom: 28px; flex: 1; }
.price li { position: relative; display: flex; gap: 10px; padding: 5px 0; font-size: 15px; color: var(--text-2); }
.price li::before {
  content: ''; flex: 0 0 auto; width: 15px; height: 15px; margin-top: 4px; border-radius: 50%;
  background: var(--violet);
}
.price li.off { color: #ffffff40; }
.price li.off::before { background: transparent; box-shadow: inset 0 0 0 1.4px #ffffff40; }
.price .btn { position: relative; width: 100%; }
.price-note { text-align: center; margin-top: 34px; font-size: 15px; color: var(--text-3); }

/* ================= FAQ ================= */

.faq { display: flex; flex-direction: column; gap: 13px; }
.qa { border-radius: 20px; border: 1px solid var(--line); background: var(--card); overflow: hidden; transition: border-color .25s; }
.qa.open { border-color: #ffffff40; }
.qa-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 27px 32px; background: none; border: 0;
  color: var(--text); font: inherit; font-size: 17px; text-align: left; cursor: pointer;
}
.qa-q .plus { flex: 0 0 auto; width: 24px; height: 24px; display: grid; place-items: center; font-size: 20px; color: var(--text-3); transition: transform .3s; }
.qa-q:hover { color: var(--violet); }
.qa-q:hover .plus { color: var(--violet); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.qa-a p { padding: 0 32px 27px; font-size: 16px; line-height: 1.55em; color: var(--text-2); }
.qa.open .qa-a { max-height: 340px; }
.qa.open .plus { transform: rotate(45deg); }

/* ================= CTA ================= */

.cta-card {
  position: relative; padding: 76px 32px; border-radius: 20px;
  border: 1px solid var(--line); background: var(--card);
  text-align: center; overflow: hidden;
}
.cta-card .blob { top: -200px; left: 50%; transform: translateX(-50%); }
.cta-card h4 { position: relative; font-size: 45px; line-height: 1.3em; }
.cta-card h4 em { font-style: normal; color: var(--violet); }
.cta-card p { position: relative; margin: 16px auto 32px; max-width: 520px; font-size: 18px; line-height: 26px; color: var(--text-2); }
.cta-links { position: relative; display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ================= FOOTER ================= */

footer { margin-top: 20px; border-top: 1px solid var(--line); background: #00000033; backdrop-filter: blur(44px); -webkit-backdrop-filter: blur(44px); }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: 60px 32px; max-width: var(--shell); margin: 0 auto; }
.foot-top h4 { font-size: 30px; line-height: 1.3em; max-width: 420px; }
.foot-top h4 em { font-style: normal; color: var(--violet); }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 15px; color: var(--text-2); }
.foot-links a:hover { color: var(--text); }
.copy { border-top: 1px solid var(--line-soft); text-align: center; padding: 24px; font-size: 14px; color: var(--text-3); }

/* ================= REVEAL =================
   Visible par defaut. L'animation n'est activee que si le JS
   marque <html class="js">, donc une panne de script ne peut
   jamais laisser du contenu en opacite zero. */

.rv { opacity: 1; transform: none; }
.js .rv { opacity: 0; transform: translateY(34px); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
}

/* ================= BOOT / CHARGEMENT ================= */

#boot {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .55s ease, visibility .55s;
}
#boot.done { opacity: 0; visibility: hidden; }
.boot-in { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.boot-logo {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(150deg, var(--violet), var(--peach));
  box-shadow: 0 0 34px #b97cf24d;
  animation: bootPulse 1.5s ease-in-out infinite;
}
.boot-name { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }
.boot-bar { width: 190px; height: 2px; border-radius: 2px; background: #ffffff1f; overflow: hidden; }
.boot-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--violet), var(--peach)); transition: width .22s ease; }
@keyframes bootPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.86); opacity: .65; } }

html.is-booting body { overflow: hidden; }
html.is-booting .rv { opacity: 0 !important; }
.js .rv { transition: opacity .65s ease, transform .65s ease; }

/* ================= BOUTONS ETAT ================= */

.btn { position: relative; }
.btn .btn-label { transition: opacity .2s; }
.btn .btn-spin {
  display: none; width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent;
  animation: spin .7s linear infinite;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn-label { opacity: 0; }
.btn.is-loading .btn-spin { display: block; }
.btn.is-offline { opacity: .5; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================= ANCRES SOUS NAV ================= */

section[id] { scroll-margin-top: 100px; }
.nav.stuck { background: rgba(10, 10, 10, 0.78); box-shadow: 0 12px 34px #00000066; }

/* ============================================================
   ADMIN — classes utilisees par admin.html
   ============================================================ */

body > .nav + .wrap { padding-top: 120px; }
.card { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 1.4rem; }
.card h2 { font-size: 1.05rem; letter-spacing: -0.03em; margin: 0 0 1rem; font-weight: 500; }
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1rem; align-items: start; }
.field { margin-bottom: .8rem; }
.field label { display: block; font-size: .78rem; color: var(--muted); margin-bottom: .3rem; }
input, select {
  width: 100%; padding: .55rem .7rem; font-family: inherit; font-size: .9rem;
  background: #00000059; border: 1px solid var(--line); border-radius: 10px; color: var(--text);
}
input:focus, select:focus { outline: none; border-color: var(--violet); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.chips { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.chip b { display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.chip span { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.msg { margin-top: .8rem; font-size: .85rem; }
.scroll { overflow-x: auto; }
.muted { color: var(--muted); font-size: .85rem; }
.mark { display: inline-block; width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(150deg, var(--violet), var(--peach)); }
.ok { color: #86efac; }
.ko { color: #fca5a5; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero h1 { font-size: 110px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cats .cat, .cat.half { grid-column: span 3; }
}

@media (max-width: 760px) {
  .nav { padding: 0 20px; height: 70px; }
  .nav-links { gap: 14px; font-size: 14px; }
  .hero { padding: 150px 0 60px; }
  .hero h1 { font-size: 68px; }
  .hero p { font-size: 18px; }
  .sec { padding: 60px 0; }
  .sec-title { font-size: 30px; }
  .sec-sub { font-size: 16px; margin-bottom: 32px; }
  .vs { grid-template-columns: 1fr; }
  .vs::after { display: none; }
  .bento { grid-template-columns: 1fr; }
  .cats .cat, .cat.half { grid-column: span 6; }
  .bento-card h3 { font-size: 23px; }
  .price .amount b { font-size: 46px; }
  .cta-card { padding: 52px 22px; }
  .cta-card h4 { font-size: 27px; }
  .foot-top { padding: 40px 24px; }
  .qa-q { padding: 20px; font-size: 16px; }
  .qa-a p { padding: 0 20px 20px; }
  .list-card { padding: 26px 22px; }
}
