/* ============================================================
   NovaBits Themes — premium WordPress theme store
   ============================================================ */
:root {
  --bg: #07070c;
  --bg-soft: #0c0c14;
  --surface: #11111b;
  --surface-2: #171725;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f0f0f7;
  --muted: #9b9bb3;
  --violet: #7c5cff;
  --mint: #00e0b8;
  --pink: #ff5c93;
  --amber: #ffb020;
  --grad: linear-gradient(100deg, #7c5cff 0%, #00e0b8 100%);
  --radius: 20px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  --font: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", var(--font);
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(800px, 92%); }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.14; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); max-width: 56ch; }
.accent { color: var(--mint); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 0.95rem/1 var(--font);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad); color: #06060b; box-shadow: 0 12px 30px rgba(124, 92, 255, 0.4); }
.btn--primary:hover { box-shadow: 0 18px 40px rgba(0, 224, 184, 0.35); }
.btn--ghost { border-color: var(--border-strong); background: rgba(255, 255, 255, 0.04); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); }
.btn--light { background: #fff; color: #06060b; }
.btn--outline-light { border-color: rgba(6, 6, 11, 0.45); color: #06060b; }
.btn--sm { padding: 10px 19px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 12, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 26px; height: 72px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; gap: 9px; }
.logo__mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(124, 92, 255, 0.5);
}
.nav__links { display: flex; gap: 26px; margin-left: auto; font-size: 0.94rem; color: var(--muted); }
.nav__links a:hover { color: var(--text); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding: clamp(58px, 8vw, 110px) 0 clamp(48px, 6vw, 84px); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: -45% -15% auto;
  height: 760px;
  background:
    radial-gradient(640px 340px at 22% 40%, rgba(124, 92, 255, 0.3), transparent 70%),
    radial-gradient(560px 320px at 80% 18%, rgba(0, 224, 184, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; padding: 7px 16px;
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); color: var(--muted);
  margin-bottom: 24px;
}
.pill b { color: var(--mint); font-weight: 600; }
.hero h1 { margin-bottom: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__proof {
  display: flex; gap: clamp(18px, 3vw, 40px);
  list-style: none; margin-top: 42px; padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hero__proof strong { display: block; font-family: var(--display); font-size: 1.5rem; }
.hero__proof span { color: var(--muted); font-size: 0.82rem; }

/* browser mockup (hero) */
.mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.mock:hover { transform: perspective(1400px) rotateY(-3deg); }
.mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a3a4d; }
.mock__bar i:nth-child(1) { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__url {
  margin-left: 10px; flex: 1;
  font-size: 0.72rem; color: var(--muted);
  background: var(--bg); border-radius: 7px;
  padding: 5px 12px; font-family: ui-monospace, Menlo, monospace;
}
.mock__body { padding: 22px; background: linear-gradient(160deg, #12121d 0%, #0b0b13 100%); }

.shop-preview__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.shop-preview__logo { width: 78px; height: 12px; border-radius: 6px; background: var(--grad); }
.shop-preview__menu { display: flex; gap: 8px; }
.shop-preview__menu i { width: 34px; height: 8px; border-radius: 5px; background: rgba(255, 255, 255, 0.14); }
.shop-preview__hero {
  height: 92px; border-radius: 12px; margin-bottom: 16px;
  background:
    linear-gradient(120deg, rgba(124, 92, 255, 0.85), rgba(0, 224, 184, 0.6));
  position: relative; overflow: hidden;
}
.shop-preview__hero::after {
  content: "";
  position: absolute; left: 18px; top: 26px;
  width: 46%; height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 0 -2px rgba(255, 255, 255, 0.55), 0 44px 0 -6px rgba(255, 255, 255, 0.4);
}
.shop-preview__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.shop-preview__item { border-radius: 10px; background: rgba(255, 255, 255, 0.06); padding: 8px; }
.shop-preview__item i {
  display: block; height: 46px; border-radius: 7px; margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.5), rgba(0, 224, 184, 0.28));
}
.shop-preview__item:nth-child(2) i { background: linear-gradient(135deg, rgba(255, 92, 147, 0.5), rgba(255, 176, 32, 0.3)); }
.shop-preview__item:nth-child(3) i { background: linear-gradient(135deg, rgba(0, 224, 184, 0.5), rgba(77, 155, 255, 0.3)); }
.shop-preview__item:nth-child(4) i { background: linear-gradient(135deg, rgba(255, 176, 32, 0.5), rgba(255, 92, 147, 0.3)); }
.shop-preview__item b { display: block; height: 7px; width: 70%; border-radius: 4px; background: rgba(255, 255, 255, 0.3); }
.shop-preview__item em {
  display: block; height: 7px; width: 40%; border-radius: 4px; margin-top: 6px;
  background: var(--mint); opacity: 0.75;
}

/* ---------------- sections ---------------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--bg-soft); border-block: 1px solid var(--border); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto clamp(38px, 5vw, 58px); }
.section__head p { color: var(--muted); margin-top: 12px; }

/* ---------------- product cards ---------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.product:hover {
  transform: translateY(-7px);
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.5);
}

/* ---- CSS-drawn theme previews ---- */
.pv { height: 190px; position: relative; overflow: hidden; padding: 14px; }
.pv__frame {
  width: 100%; height: 100%;
  background: #0a0a12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}
.pv__dots { display: flex; gap: 5px; padding: 7px 9px; background: rgba(255, 255, 255, 0.06); }
.pv__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }

/* login theme preview */
.pv--login { background: linear-gradient(140deg, #1a1030, #06131a); }
.pv--login .pv__stage { height: calc(100% - 21px); display: grid; place-items: center; }
.pv--login .pv__card {
  width: 58%; background: rgba(255, 255, 255, 0.96);
  border-radius: 10px; padding: 12px 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}
.pv--login .pv__logo { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); margin: 0 auto 10px; }
.pv--login .pv__field { height: 9px; background: #e7e7f0; border-radius: 5px; margin-bottom: 7px; }
.pv--login .pv__field.w60 { width: 60%; margin-inline: auto; }
.pv--login .pv__go { height: 12px; background: var(--grad); border-radius: 6px; margin-top: 4px; }

/* shop theme preview */
.pv--shop { background: linear-gradient(140deg, #072a24, #04121c); }
.pv--shop .pv__stage { height: calc(100% - 21px); padding: 10px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 8px; }
.pv--shop .pv__tile { border-radius: 7px; background: linear-gradient(135deg, rgba(0, 224, 184, 0.55), rgba(77, 155, 255, 0.3)); position: relative; }
.pv--shop .pv__tile:nth-child(2) { background: linear-gradient(135deg, rgba(255, 176, 32, 0.55), rgba(255, 92, 147, 0.32)); }
.pv--shop .pv__tile:nth-child(3) { background: linear-gradient(135deg, rgba(124, 92, 255, 0.55), rgba(0, 224, 184, 0.28)); }
.pv--shop .pv__tile:nth-child(4) { background: linear-gradient(135deg, rgba(255, 92, 147, 0.5), rgba(124, 92, 255, 0.3)); }
.pv--shop .pv__tile:nth-child(5) { background: linear-gradient(135deg, rgba(77, 155, 255, 0.5), rgba(0, 224, 184, 0.3)); }
.pv--shop .pv__tile:nth-child(6) { background: linear-gradient(135deg, rgba(255, 176, 32, 0.5), rgba(124, 92, 255, 0.3)); }
.pv--shop .pv__tile::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: 8px; height: 6px; border-radius: 4px; background: rgba(0, 0, 0, 0.35); }

/* blog theme preview */
.pv--blog { background: linear-gradient(140deg, #241032, #0a0a16); }
.pv--blog .pv__stage { height: calc(100% - 21px); padding: 12px; }
.pv--blog .pv__cover { height: 52px; border-radius: 8px; background: linear-gradient(120deg, #7c5cff, #ff5c93); margin-bottom: 10px; }
.pv--blog .pv__line { height: 8px; border-radius: 5px; background: rgba(255, 255, 255, 0.22); margin-bottom: 7px; }
.pv--blog .pv__line.w70 { width: 70%; }
.pv--blog .pv__line.w45 { width: 45%; }
.pv--blog .pv__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 12px; }
.pv--blog .pv__cols i { height: 34px; border-radius: 7px; background: rgba(255, 255, 255, 0.1); }

/* portfolio theme preview */
.pv--port { background: linear-gradient(140deg, #0b1e3a, #05060f); }
.pv--port .pv__stage { height: calc(100% - 21px); padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pv--port .pv__m { border-radius: 8px; background: linear-gradient(160deg, rgba(77, 155, 255, 0.6), rgba(124, 92, 255, 0.35)); }
.pv--port .pv__m:nth-child(2) { grid-row: span 2; background: linear-gradient(160deg, rgba(255, 176, 32, 0.55), rgba(255, 92, 147, 0.3)); }
.pv--port .pv__m:nth-child(3) { background: linear-gradient(160deg, rgba(0, 224, 184, 0.55), rgba(77, 155, 255, 0.3)); }
.pv--port .pv__m:nth-child(4) { background: linear-gradient(160deg, rgba(255, 92, 147, 0.5), rgba(124, 92, 255, 0.32)); }

/* landing theme preview */
.pv--land { background: linear-gradient(140deg, #301506, #0a0a12); }
.pv--land .pv__stage { height: calc(100% - 21px); padding: 12px; }
.pv--land .pv__hero { height: 54px; border-radius: 8px; background: linear-gradient(120deg, rgba(255, 176, 32, 0.8), rgba(255, 92, 147, 0.55)); position: relative; margin-bottom: 11px; }
.pv--land .pv__hero::after { content: ""; position: absolute; left: 12px; top: 14px; width: 42%; height: 9px; border-radius: 5px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 17px 0 -2px rgba(255, 255, 255, 0.6); }
.pv--land .pv__feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pv--land .pv__feats i { height: 44px; border-radius: 8px; background: rgba(255, 255, 255, 0.1); }

/* dashboard theme preview */
.pv--dash { background: linear-gradient(140deg, #06262b, #061018); }
.pv--dash .pv__stage { height: calc(100% - 21px); display: grid; grid-template-columns: 46px 1fr; }
.pv--dash .pv__side { background: rgba(255, 255, 255, 0.07); padding: 10px 8px; display: flex; flex-direction: column; gap: 8px; }
.pv--dash .pv__side i { height: 8px; border-radius: 4px; background: rgba(0, 224, 184, 0.55); }
.pv--dash .pv__side i:nth-child(n+3) { background: rgba(255, 255, 255, 0.18); }
.pv--dash .pv__main { padding: 10px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 34px 1fr; gap: 8px; }
.pv--dash .pv__stat { border-radius: 7px; background: rgba(255, 255, 255, 0.09); }
.pv--dash .pv__chart { grid-column: span 3; border-radius: 8px; background: linear-gradient(120deg, rgba(0, 224, 184, 0.35), rgba(124, 92, 255, 0.25)); position: relative; overflow: hidden; }
.pv--dash .pv__chart::after {
  content: ""; position: absolute; left: 8%; bottom: 18%; width: 84%; height: 46%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.35));
  clip-path: polygon(0 100%, 12% 62%, 26% 78%, 42% 38%, 58% 56%, 74% 22%, 88% 40%, 100% 8%, 100% 100%);
}

.product__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.product__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product__tags span {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--mint); background: rgba(0, 224, 184, 0.1);
  padding: 4px 9px; border-radius: 6px;
}
.product__body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.product__meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--muted); }
.product__meta b { color: var(--text); font-weight: 600; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.price { font-family: var(--display); font-size: 1.55rem; font-weight: 700; }
.price--lg { color: var(--mint); }
.price s { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* ---------------- features ---------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 24px;
}
.feature__icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(124, 92, 255, 0.16); border: 1px solid rgba(124, 92, 255, 0.3);
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.9rem; }

/* ---------------- steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.step__num {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad); color: #06060b;
  font-family: var(--display); font-weight: 700; font-size: 1.25rem;
  margin-bottom: 18px;
}
.step p { color: var(--muted); font-size: 0.93rem; margin-top: 10px; }
.step strong { color: var(--text); }

.pay-note {
  margin-top: 34px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(100deg, rgba(124, 92, 255, 0.14), rgba(0, 224, 184, 0.09));
  border: 1px solid rgba(124, 92, 255, 0.34);
  border-radius: var(--radius); padding: 26px 28px;
}
.pay-note h4 { font-size: 1.05rem; }
.pay-note p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.pay-note .btn { margin-left: auto; }

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 4px 22px; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.faq[open] { border-color: rgba(124, 92, 255, 0.45); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--mint); transition: transform 0.2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); font-size: 0.94rem; padding-bottom: 20px; }

/* ---------------- CTA ---------------- */
.cta { background: var(--grad); padding: clamp(56px, 7vw, 92px) 0; text-align: center; }
.cta h2 { color: #06060b; }
.cta p { margin: 14px auto 30px; max-width: 54ch; font-weight: 500; color: rgba(6, 6, 11, 0.75); }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--light { background: #06060b; color: #fff; }

/* ---------------- footer ---------------- */
.footer { padding: 46px 0 34px; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px; margin-bottom: 30px;
}
.footer__grid p { color: var(--muted); font-size: 0.88rem; margin-top: 12px; max-width: 34ch; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 9px; font-size: 0.9rem; color: var(--muted); }
.footer ul a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.84rem;
}

/* ---------------- modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 4, 8, 0.78); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; width: min(520px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 30px; box-shadow: var(--shadow);
  animation: pop 0.25s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text); font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: rgba(255, 255, 255, 0.1); }
.modal__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-right: 40px; margin-bottom: 20px; }
.modal__networks { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.net-tab {
  font: 600 0.8rem/1 var(--font); padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--muted);
  cursor: pointer; transition: 0.16s;
}
.net-tab.is-active { background: rgba(124, 92, 255, 0.18); border-color: var(--violet); color: var(--text); }
.net-tab__badge { display: block; font-size: 0.62rem; font-weight: 500; color: var(--mint); margin-top: 3px; }

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text);
  font: 500 0.92rem var(--font); transition: border-color 0.16s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--violet); }
.copyline { display: flex; gap: 10px; }
.copyline input { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85rem; }
.net-note {
  font-size: 0.85rem; color: var(--muted);
  background: rgba(0, 224, 184, 0.08);
  border: 1px dashed rgba(0, 224, 184, 0.4);
  border-radius: 12px; padding: 12px 15px; margin-bottom: 20px;
}
.net-note strong { color: var(--mint); }
.modal__hint { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------------- toast ---------------- */
.toast {
  position: fixed; left: 50%; bottom: 30px;
  transform: translate(-50%, 90px);
  background: var(--surface-2); border: 1px solid rgba(0, 224, 184, 0.5);
  color: var(--text); padding: 12px 22px; border-radius: 999px;
  font-size: 0.9rem; z-index: 200; opacity: 0;
  transition: 0.3s ease; pointer-events: none;
}
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }

/* ---------------- page header (inner pages) ---------------- */
.page-head { padding: clamp(50px, 7vw, 90px) 0 clamp(30px, 4vw, 50px); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: -60% -10% auto; height: 420px;
  background: radial-gradient(500px 240px at 30% 50%, rgba(124, 92, 255, 0.28), transparent 70%);
  pointer-events: none;
}
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.prose { padding-bottom: clamp(56px, 7vw, 96px); }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose p, .prose li { color: var(--muted); font-size: 0.97rem; margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose strong { color: var(--text); }

/* ---------------- responsive ---------------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .mock { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease; margin-left: 0;
  }
  .nav__links.is-open { max-height: 340px; }
  .nav__links a { padding: 16px 6%; border-top: 1px solid var(--border); }
  .nav__cta { display: none; }
  .nav__toggle { display: block; margin-left: auto; }
  .pay-note { flex-direction: column; align-items: flex-start; }
  .pay-note .btn { margin-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .shop-preview__grid { grid-template-columns: repeat(2, 1fr); }
}
