/* ================================================================
   Pure Optimizer — site styles
   ================================================================ */

:root {
  --bg:            #07090d;
  --bg-2:          #0a0d12;
  --panel:         #10141b;
  --panel-2:       #131924;
  --line:          #1e2531;
  --line-2:        #2a3345;
  --text:          #eef2f8;
  --text-dim:      #9aa4b5;
  --text-mute:     #6b7482;
  --accent:        #5cf5c8;
  --accent-2:      #3b82f6;
  --accent-warm:   #ffb547;
  --danger:        #ff5d7a;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.55), 0 8px 24px -8px rgba(0,0,0,.45);
  --shadow-md: 0 12px 32px -8px rgba(0,0,0,.5);

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Typography ---------------- */

h1, h2, h3, h4, h5 {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }

p { margin: 0 0 1em; color: var(--text-dim); }

em { font-style: normal; color: var(--accent); font-weight: 500; }

/* ---------------- Nav ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(7, 9, 13, 0.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-mark { width: 26px; height: 26px; }

.brand-name .brand-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: .95rem;
}

.nav-links a {
  color: var(--text-dim);
  transition: color .15s ease;
  padding: 8px 0;
}

.nav-links a:hover { color: var(--text); }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #04121e;
  box-shadow: 0 8px 24px -6px rgba(92, 245, 200, .35), 0 2px 8px -2px rgba(59, 130, 246, .4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -6px rgba(92, 245, 200, .5), 0 4px 12px -2px rgba(59, 130, 246, .5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.04); border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 8px 14px; font-size: .875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(59, 130, 246, .18), transparent 60%),
    radial-gradient(50% 60% at 85% 30%, rgba(92, 245, 200, .12), transparent 60%),
    radial-gradient(40% 50% at 50% 100%, rgba(59, 130, 246, .08), transparent 60%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero-inner { max-width: 860px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(92, 245, 200, .3);
  border-radius: 999px;
  background: rgba(92, 245, 200, .06);
}

.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #b8c4d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin: 20px 0 32px;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 700px;
}

.signal strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.signal span {
  font-size: .875rem;
  color: var(--text-mute);
}

/* ---------------- Sections ---------------- */

.section {
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 20%, var(--bg-2) 80%, transparent 100%);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 16px; }
.section-head .sub { font-size: 1.05rem; color: var(--text-dim); margin-top: 12px; }

/* ---------------- Grid ---------------- */

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-signals { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------------- Cards ---------------- */

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--panel-2);
}

.product { display: flex; flex-direction: column; }

.product.highlight {
  background: linear-gradient(180deg, rgba(92, 245, 200, .04) 0%, var(--panel) 40%);
  border-color: rgba(92, 245, 200, .25);
}

.ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(92, 245, 200, .15), rgba(59, 130, 246, .1));
  border: 1px solid var(--line-2);
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  position: relative;
}

.product-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  color: var(--accent);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.product-icon[data-icon="gaming"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 4H7a5 5 0 0 0-5 5v6a5 5 0 0 0 5 5c1.4 0 2.6-.6 3.5-1.5L12 17l1.5 1.5A5 5 0 0 0 17 20a5 5 0 0 0 5-5V9a5 5 0 0 0-5-5ZM9 13H7v2H5v-2H3v-2h2V9h2v2h2v2Zm7 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3-3a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 4H7a5 5 0 0 0-5 5v6a5 5 0 0 0 5 5c1.4 0 2.6-.6 3.5-1.5L12 17l1.5 1.5A5 5 0 0 0 17 20a5 5 0 0 0 5-5V9a5 5 0 0 0-5-5ZM9 13H7v2H5v-2H3v-2h2V9h2v2h2v2Zm7 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3-3a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z' fill='white'/></svg>");
}

.product-icon[data-icon="creator"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V6a4 4 0 0 0-4-4Zm7 10a7 7 0 0 1-6 6.92V22h-2v-3.08A7 7 0 0 1 5 12h2a5 5 0 0 0 10 0h2Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V6a4 4 0 0 0-4-4Zm7 10a7 7 0 0 1-6 6.92V22h-2v-3.08A7 7 0 0 1 5 12h2a5 5 0 0 0 10 0h2Z' fill='white'/></svg>");
}

.product-icon[data-icon="work"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 7h-4V5a3 3 0 0 0-3-3h-2a3 3 0 0 0-3 3v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2Zm-9-2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2h-4V5Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 7h-4V5a3 3 0 0 0-3-3h-2a3 3 0 0 0-3 3v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2Zm-9-2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2h-4V5Z' fill='white'/></svg>");
}

.product-icon[data-icon="ultimate"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m12 2 2.6 6.3 6.8.5-5.2 4.4 1.6 6.6L12 16.3l-5.8 3.5 1.6-6.6-5.2-4.4 6.8-.5L12 2Z' fill='white'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='m12 2 2.6 6.3 6.8.5-5.2 4.4 1.6 6.6L12 16.3l-5.8 3.5 1.6-6.6-5.2-4.4 6.8-.5L12 2Z' fill='white'/></svg>");
}

.feat {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  flex: 1;
}

.feat li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--text-dim);
  font-size: .92rem;
}

.feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: .8;
  clip-path: polygon(15% 45%, 40% 70%, 85% 20%, 95% 30%, 40% 90%, 5% 55%);
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  margin-top: auto;
  transition: gap .15s ease, letter-spacing .15s ease;
}

.card-link:hover { letter-spacing: .01em; }

.micro-note {
  text-align: center;
  color: var(--text-mute);
  font-size: .875rem;
  margin-top: 32px;
}

/* ---------------- Pricing ---------------- */

.pricing-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 6px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.ptab {
  background: transparent;
  color: var(--text-dim);
  border: 0;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.ptab:hover { color: var(--text); }

.ptab.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121e;
}

.pricing-grid { max-width: 980px; margin-left: auto; margin-right: auto; }

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s ease, border-color .18s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}

.price-card.featured {
  border-color: rgba(92, 245, 200, .4);
  background: linear-gradient(180deg, rgba(92, 245, 200, .06) 0%, var(--panel) 30%);
  box-shadow: var(--shadow-md);
}

.price-tag { font-size: .8rem; color: var(--accent); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.price-name { font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.price-blurb { color: var(--text-mute); font-size: .875rem; margin-bottom: 20px; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 24px;
}

.price-amount .currency { font-size: 1.2rem; color: var(--text-dim); }
.price-amount .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-amount .period { color: var(--text-mute); font-size: .95rem; }

.price-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  flex: 1;
}

.price-feat li {
  padding: 5px 0;
  color: var(--text-dim);
  font-size: .9rem;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  transition: all .15s ease;
}

.price-cta:hover { background: rgba(255,255,255,.04); border-color: var(--accent); color: var(--accent); }

.price-card.featured .price-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121e;
  border-color: transparent;
}

.price-card.featured .price-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(92, 245, 200, .5);
}

.pay-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dim);
  font-size: .9rem;
}

.pay-strip svg { color: var(--accent); flex-shrink: 0; }
.pay-strip strong { color: var(--text); }

/* ---------------- Steps ---------------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.steps h4 { margin-bottom: 8px; }

/* ---------------- Trust ---------------- */

.trust-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.trust-card h4 { color: var(--accent); margin-bottom: 12px; }

/* ---------------- FAQ ---------------- */

.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color .15s ease;
}

.faq details[open] { border-color: var(--line-2); }

.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq p {
  padding: 0 24px 20px;
  color: var(--text-dim);
  margin: 0;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  padding: clamp(60px, 8vw, 90px) 0;
  background: linear-gradient(135deg, rgba(92, 245, 200, .08) 0%, rgba(59, 130, 246, .08) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { font-size: 1.1rem; margin-bottom: 32px; }

/* ---------------- Footer ---------------- */

.footer {
  background: var(--bg-2);
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-tag { color: var(--text-mute); margin-top: 12px; font-size: .9rem; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 500px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-cols h5 { margin-bottom: 16px; }

.footer-cols a, .footer-cols span {
  display: block;
  color: var(--text-dim);
  padding: 6px 0;
  font-size: .9rem;
  transition: color .15s ease;
}

.footer-cols a:hover { color: var(--accent); }

.muted { color: var(--text-mute) !important; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------- Focus states ---------------- */

a:focus-visible, button:focus-visible, details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ================================================================
   Checkout modal
   ================================================================ */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-modal.hidden { display: none; }

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .15s ease;
}

.checkout-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(480px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp .2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--text-mute);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.checkout-close:hover { background: rgba(255,255,255,.06); color: var(--text); }

.checkout-view.hidden { display: none; }

.checkout-card h2 { margin: 0 0 6px; font-size: 1.25rem; }
.co-sub { color: var(--text-mute); font-size: .875rem; margin: 0 0 24px; }

.co-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.co-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: .9rem;
}

.co-summary-row span { color: var(--text-dim); }
.co-summary-row strong { color: var(--text); font-weight: 600; }

.co-summary-row.co-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}

.co-summary-row.co-total strong {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 1.1rem;
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.co-field label {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 600;
}

.co-field input {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease;
}

.co-field input:focus { border-color: var(--accent); }

.co-submit { width: 100%; padding: 14px; }

.co-fine {
  color: var(--text-mute);
  font-size: .75rem;
  text-align: center;
  margin: 12px 0 0;
}

.co-error {
  background: rgba(255, 93, 122, .1);
  border: 1px solid rgba(255, 93, 122, .3);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--danger);
  font-size: .85rem;
  margin-top: 12px;
}

.co-error.hidden { display: none; }

/* Success view */

.co-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121e;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.co-key {
  display: flex;
  gap: 8px;
  align-items: stretch;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 14px;
}

.co-key code {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  color: var(--accent);
  word-break: break-all;
  padding: 8px 0;
  background: transparent;
  min-width: 0;
}

.co-copy {
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  transition: all .15s ease;
  flex-shrink: 0;
}
.co-copy:hover { border-color: var(--accent); color: var(--accent); }
.co-copy-ok { background: var(--accent); color: #04121e; border-color: var(--accent); }

.co-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.co-actions .btn { flex: 1; padding: 12px; font-size: .9rem; }

/* ================================================================
   Verify strip on main page
   ================================================================ */

.verify-strip {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.verify-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.verify-strip h3 { margin: 0 0 6px; font-size: 1.1rem; }
.verify-strip p  { margin: 0; color: var(--text-mute); font-size: .9rem; }
.verify-strip .actions { display: flex; gap: 10px; flex-wrap: wrap; }

