/* ===== Runnex — Dark sport / lime accent (SPINTIP-style) ===== */
:root {
  --color-bg: #0b1117;
  --color-bg-soft: #111a24;
  --color-surface: #151f2b;
  --color-surface-raised: #1a2634;
  --color-text: #f4f7fb;
  --color-text-muted: #94a3b8;
  --color-accent: #c8ff00;
  --color-accent-hover: #d4ff33;
  --color-accent-soft: rgba(200, 255, 0, 0.12);
  --color-accent-glow: #c8ff00;
  --color-accent-light: rgba(200, 255, 0, 0.35);
  --color-accent-on: #0b1117;
  --color-warm: #c8ff00;
  --color-warm-soft: rgba(200, 255, 0, 0.08);
  --color-border: rgba(148, 163, 184, 0.18);
  --color-disclaimer-bg: #151f2b;
  --color-disclaimer-border: rgba(200, 255, 0, 0.35);
  --color-header-bg: rgba(11, 17, 23, 0.85);
  --color-header-bg-end: rgba(11, 17, 23, 0.95);
  --color-header-border: rgba(148, 163, 184, 0.15);
  --color-header-text: #f4f7fb;
  --color-header-text-muted: #94a3b8;
  --color-header-text-hover: #ffffff;
  --color-header-accent: #c8ff00;
  --color-header-accent-end: #a8e600;
  --color-header-accent-glow: #c8ff00;
  --color-footer-bg: #060a0e;
  --color-footer-bg-end: #0b1117;
  --color-footer-heading: #c8ff00;
  --color-footer-text: #e2e8f0;
  --color-footer-text-muted: #94a3b8;
  --color-footer-link-hover: #c8ff00;
  --color-footer-border: rgba(148, 163, 184, 0.12);
  --color-hero-overlay-start: rgba(11, 17, 23, 0.55);
  --color-hero-overlay-end: rgba(11, 17, 23, 0.82);
  --shadow-header: rgba(0, 0, 0, 0.35);
  --shadow-header-accent: rgba(200, 255, 0, 0.25);
  --shadow-accent: rgba(200, 255, 0, 0.3);
  --color-ad-banner: #060a0e;
  --color-ad-banner-text: #94a3b8;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 80% -5%, rgba(200, 255, 0, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(200, 255, 0, 0.03), transparent 45%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.home-main {
  padding-top: 0;
}

.hero-backdrop {
  position: relative;
  padding-top: 28px;
  background-image:
    linear-gradient(135deg, var(--color-hero-overlay-start) 0%, var(--color-hero-overlay-end) 100%),
    url("../images/555.png");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(48px, 8vw, 96px);
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 1;
}

.hero-backdrop > .container {
  position: relative;
  z-index: 2;
}

main:not(.home-main) {
  background-image: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
}

/* ===== Ad banner ===== */
.ad-banner {
  background: var(--color-ad-banner);
  color: var(--color-ad-banner-text);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 1px rgba(12, 10, 9, 0.2);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, var(--color-header-bg) 0%, var(--color-header-bg-end) 100%);
  border-bottom: 1px solid var(--color-header-border);
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  box-shadow: 0 12px 40px var(--shadow-header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--color-header-text);
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.88;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--color-header-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header .btn-ghost {
  background: transparent;
  border: 1px solid rgba(250, 250, 249, 0.28);
  color: #d6d3d1;
}

.site-header .btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 191, 36, 0.45);
}

.site-header .btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-on);
  box-shadow: 0 4px 20px var(--shadow-header-accent);
}

.site-header .btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 28px var(--shadow-header-accent);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-ghost:hover {
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border-color: var(--color-accent-light);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-on);
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-family: inherit;
  display: inline-block;
  box-shadow: 0 4px 16px var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-accent-hover);
  box-shadow: 0 10px 32px var(--shadow-header-accent);
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
}

/* ===== Disclaimer ===== */
.disclaimer-block {
  background: rgba(28, 25, 23, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 auto 12px;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(12, 10, 9, 0.25);
  border-left: 4px solid var(--color-header-accent);
}

.disclaimer-block h3 {
  font-family: var(--font-display);
  color: var(--color-header-accent-glow);
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.disclaimer-block p {
  color: #f5f5f4;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===== Hero — image left, text card right (no overlap) ===== */
.hero {
  position: relative;
  z-index: 2;
  margin: clamp(8px, 1.5vw, 16px) 0 0;
  padding: clamp(24px, 3.5vw, 36px) clamp(16px, 2.5vw, 28px) clamp(48px, 6vw, 72px);
  overflow: hidden;
  width: 100%;
  max-width: none;
  border-radius: 0;
  min-height: clamp(360px, 55vw, 520px);
  background: none;
}

.hero-shell {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  justify-items: center;
}

.hero-visual {
  display: none;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--radius) + 10px) 6px calc(var(--radius) + 10px) calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 5 / 4;
  max-height: min(520px, 72vh);
  background: var(--color-bg-soft);
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(28, 25, 23, 0.07) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(12px, 2vw, 20px) 0;
  animation: slideUp 0.85s ease-out;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-panel {
  background: transparent;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(26px, 3.5vw, 38px) clamp(24px, 3vw, 34px);
  border: none;
  box-shadow: none;
  width: min(100%, 760px);
  text-align: center;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--color-accent-light);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 4px;
  height: 1.15em;
  background: linear-gradient(180deg, var(--color-header-accent-glow) 0%, var(--color-header-accent-end) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--color-header-text);
}

.hero-lead {
  color: #e7e5e4;
  font-size: 1.18rem;
  margin-bottom: 24px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.62;
}

.hero p {
  color: #d6d3d1;
  font-size: 1.12rem;
  margin-bottom: 26px;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  justify-content: center;
}

.hero-cta-buttons .btn-video::before {
  content: '▶ ';
  font-size: 0.85em;
  opacity: 0.9;
}

.hero .btn-video {
  color: var(--color-header-text);
  border-color: rgba(250, 250, 249, 0.9);
  background: rgba(28, 25, 23, 0.4);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.hero .btn-video:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(12, 10, 9, 0.55);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  animation: countIn 0.8s ease-out backwards;
}

.hero-stat:nth-child(1) { animation-delay: 0.2s; }
.hero-stat:nth-child(2) { animation-delay: 0.35s; }
.hero-stat:nth-child(3) { animation-delay: 0.5s; }

@keyframes countIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-stat .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-illustration svg,
.hero-illustration img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hero-fallback {
  display: none;
  width: 100%;
  max-width: 100%;
}

.hero-fallback.hero-fallback-visible {
  display: block;
}

.hero-fallback svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Partners ===== */
.partners {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 48px clamp(16px, 4vw, 28px);
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-soft) 100%);
  border-top: none;
  border-bottom: 1px solid var(--color-border);
}

.partners-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.partners h2 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  flex-wrap: wrap;
}

.partners-logos span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  padding: 10px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* ===== Statistics ===== */
.section-stats {
  padding: clamp(52px, 8vw, 92px) clamp(16px, 4vw, 28px);
  background: var(--color-surface);
  position: relative;
}

.section-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-stats .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.section-stats-intro {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 42rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  background: linear-gradient(165deg, #fffbeb 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent-glow), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.stat-card .stat-source {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-stats-footer {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.section-stats-footer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.section-stats-footer a:hover {
  border-bottom-color: var(--color-accent);
}

/* ===== Section unlock ===== */
.section-unlock {
  padding: clamp(64px, 9vw, 104px) clamp(16px, 4vw, 28px);
  max-width: none;
  margin: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
}

.section-unlock h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-unlock h2.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-unlock > p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.08s, transform 0.65s ease 0.08s;
}

.section-unlock > p.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-unlock .btn-ghost {
  color: var(--color-text);
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.65);
}

.section-unlock .btn-ghost:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: #ffffff;
}

.illustration-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.illustration-strip .illus-card {
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 200px;
  min-height: 168px;
  padding: 24px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(250, 250, 249, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.illustration-strip .illus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.illustration-strip .illus-card > svg {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--color-accent);
  display: block;
}

.illustration-strip .illus-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.8em;
  line-height: 1.4;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ===== Features ===== */
.section-features {
  padding: clamp(64px, 9vw, 104px) clamp(16px, 4vw, 28px) clamp(80px, 10vw, 112px);
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.section-features .section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-features .section-sub {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 36rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
  box-shadow: var(--shadow-sm);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.feature-card .prompt-box {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-box .plus {
  color: var(--color-accent);
  font-weight: 700;
}

.feature-illus {
  width: 100%;
  height: 120px;
  min-height: 120px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-accent-soft) 0%, var(--color-surface) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.feature-illus svg {
  width: 76px;
  height: 76px;
  color: var(--color-accent);
  opacity: 0.88;
}

/* ===== Product ===== */
.section-product {
  padding: clamp(52px, 8vw, 92px) clamp(16px, 4vw, 28px);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.section-product .container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-block--compact {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 360px);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #fffbeb 0%, var(--color-accent-soft) 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.product-block--compact::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.product-block--compact .product-block-media {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.product-block--compact .product-block-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 16px 32px rgba(28, 25, 23, 0.12));
}

.product-block--compact .product-block-body {
  padding: 0;
  text-align: left;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.product-block-top {
  margin-bottom: 20px;
}

.product-block-badge {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-warm);
  margin-bottom: 10px;
}

.product-block-price {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 14px;
}

.product-block-desc {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0;
}

.product-block-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.product-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.product-block-list li {
  position: relative;
  padding-left: 20px;
}

.product-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.product-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.product-block-actions .btn-primary,
.product-block-actions .btn-ghost {
  font-size: 1rem;
  padding: 12px 24px;
}

.product-block-actions .btn-buy {
  flex-shrink: 0;
}

.product-block-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-block-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.product-block-body {
  min-width: 0;
}

.product-block {
  margin: 0 auto;
}

.product-cta-wrap {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-cta-wrap .btn-buy {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .product-block--compact {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .product-block--compact .product-block-body {
    text-align: center;
  }

  .product-block-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .product-block--compact .product-block-list {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
  }

  .product-block--compact .product-block-actions {
    justify-content: center;
  }

  .product-block--compact .product-block-media {
    order: -1;
  }

  .product-block--compact .product-block-img {
    max-height: 200px;
  }
}

/* ===== Sources ===== */
.section-sources {
  padding: clamp(52px, 8vw, 92px) clamp(16px, 4vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}

.section-sources h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-sources > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.source-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.source-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.source-card a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-display);
}

.source-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 1.55;
}

/* ===== Checkout ===== */
.checkout-page {
  padding: 48px clamp(16px, 4vw, 28px) 88px;
  min-height: 60vh;
}

.checkout-container {
  max-width: 960px;
  margin: 0 auto;
}

.checkout-container h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.checkout-intro {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.checkout-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  box-shadow: var(--shadow-sm);
}

.checkout-summary h2 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.checkout-product {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout-product-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.checkout-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9375rem;
}

.checkout-product-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 12px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.checkout-product-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.45;
}

.checkout-disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

.checkout-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}

.checkout-fieldset {
  border: none;
  margin: 0 0 24px;
  padding: 0;
}

.checkout-fieldset legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 16px;
  padding: 0;
  color: var(--color-text);
}

.form-row {
  margin-bottom: 16px;
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label,
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-row input,
.form-row select,
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-surface-raised);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-group input:focus,
.form-row select:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.form-row input[aria-invalid="true"],
.form-group input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
  border-color: #b91c1c;
}

.form-error {
  display: block;
  font-size: 0.8125rem;
  color: #b91c1c;
  margin-top: 6px;
  font-weight: 600;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .form-row-inline {
    grid-template-columns: 1fr;
  }
}

/* ===== Thank you ===== */
.thankyou-page {
  padding: 88px clamp(16px, 4vw, 28px) 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: linear-gradient(145deg, var(--color-header-accent-glow) 0%, var(--color-accent) 100%);
  color: #fafafa;
  font-size: 2rem;
  font-weight: 700;
  line-height: 72px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.thankyou-container h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.thankyou-message {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  font-size: 1.0625rem;
}

.thankyou-order {
  font-size: 1rem;
  margin-bottom: 16px;
}

.thankyou-contact {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.thankyou-contact a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.thankyou-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, var(--color-footer-bg) 0%, var(--color-footer-bg-end) 100%);
  color: var(--color-footer-text-muted);
  padding: 52px clamp(16px, 4vw, 28px) 26px;
  border-top: 1px solid var(--color-footer-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-inner h4 {
  font-family: var(--font-body);
  color: var(--color-footer-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-inner ul {
  list-style: none;
}

.footer-inner a {
  color: var(--color-footer-text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-inner a:hover {
  color: var(--color-footer-link-hover);
}

.footer-inner li {
  margin-bottom: 10px;
}

.footer-contact-list .footer-address {
  color: var(--color-footer-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
  font-weight: 400;
  pointer-events: none;
}

.footer-contact-list .footer-address:hover {
  color: var(--color-footer-text-muted);
}

/* Company info — Chile */
.company-info {
  margin: 28px 0 36px;
  padding: 24px 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.company-info h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--color-text);
}

.company-info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.company-info-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 8px 20px;
  align-items: start;
}

.company-info-row dt {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin: 0;
}

.company-info-row dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.company-info-row a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.company-info-row a:hover {
  text-decoration: underline;
}

.company-info-note {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 400;
}

@media (max-width: 520px) {
  .company-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--color-footer-border);
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-footer-text-muted);
  line-height: 1.55;
}

/* ===== Utilities & motion ===== */
.btn-primary:active {
  transform: translateY(0);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-header-accent-glow), var(--color-header-accent-end));
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
}

.source-card {
  animation: fadeInUp 0.55s ease-out backwards;
}

.source-card:nth-child(1) { animation-delay: 0.05s; }
.source-card:nth-child(2) { animation-delay: 0.1s; }
.source-card:nth-child(3) { animation-delay: 0.15s; }
.source-card:nth-child(4) { animation-delay: 0.2s; }
.source-card:nth-child(5) { animation-delay: 0.25s; }
.source-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.illus-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.illus-card:hover {
  border-color: var(--color-accent-light);
}

.hero-form input:focus {
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.reveal.visible {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.partners-logos span {
  transition: color var(--transition), transform var(--transition), border-color var(--transition);
}

.partners-logos span:hover {
  color: var(--color-accent);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* ===== Legal pages ===== */
.legal-page {
  padding: 48px clamp(16px, 4vw, 28px) 88px;
  max-width: 44rem;
  margin: 0 auto;
  background: transparent;
  min-height: 50vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.legal-page ul {
  margin-left: 1.25rem;
  margin-bottom: 18px;
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.legal-page a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  animation: pageFadeIn 0.55s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Contact form ===== */
.contact-form-wrap {
  max-width: 560px;
  margin-top: 32px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 18px;
  background: var(--color-surface-raised);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    padding-top: 14px;
    border-top: 1px solid var(--color-header-border);
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 960px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    max-height: none;
    aspect-ratio: 16 / 10;
    border-radius: calc(var(--radius) + 8px);
  }

  .hero-content {
    padding: 0;
    margin-top: clamp(20px, 4vw, 28px);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-lead,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-buttons {
    justify-content: center;
  }

  .hero-form {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-features .section-top {
    flex-direction: column;
  }

  .site-header .logo {
    flex: 1 1 auto;
  }
}

@media (max-width: 520px) {
  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header .logo {
    justify-content: center;
  }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SPINTIP-style dark theme — layout & components ===== */
.text-accent {
  color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #f4f7fb;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
  font-family: inherit;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.ad-banner {
  background: var(--color-ad-banner);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--color-border);
  text-shadow: none;
  color: var(--color-ad-banner-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px clamp(16px, 3vw, 28px);
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  min-height: auto;
  flex-wrap: nowrap;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  background: rgba(21, 31, 43, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(200, 255, 0, 0.15);
  background: rgba(21, 31, 43, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-header-text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-accent-on);
  font-size: 0.9375rem;
  font-weight: 800;
  box-shadow: 0 4px 14px var(--shadow-accent);
}

.logo-text {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.nav-toggle:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #f4f7fb;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header-shell .nav-links {
  gap: 4px;
  padding: 4px;
  background: rgba(11, 17, 23, 0.5);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  flex-wrap: nowrap;
}

.header-shell .nav-links a {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-header-text-muted);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.header-shell .nav-links a::after {
  display: none;
}

.header-shell .nav-links a:hover {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.header-shell .nav-links a.is-active {
  color: var(--color-accent-on);
  background: var(--color-accent);
  box-shadow: 0 4px 12px var(--shadow-accent);
}

.header-cta {
  flex-shrink: 0;
  gap: 8px;
}

.site-header .btn-ghost,
.site-header .btn-header-ghost {
  border: 1.5px solid var(--color-border);
  color: var(--color-header-text-muted);
  background: transparent;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.site-header .btn-ghost:hover,
.site-header .btn-header-ghost:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.site-header .btn-primary,
.site-header .btn-header-buy {
  background: var(--color-accent);
  color: var(--color-accent-on);
  box-shadow: 0 4px 16px var(--shadow-accent);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.site-header .btn-primary:hover,
.site-header .btn-header-buy:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 24px var(--shadow-header-accent);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-dark {
  background: var(--color-surface);
  color: #f4f7fb;
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition), border-color var(--transition);
  font-family: inherit;
}

.btn-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.nav-links a::after {
  background: var(--color-accent);
  height: 2px;
}

.disclaimer-block,
.disclaimer-block--dark {
  background: var(--color-disclaimer-bg);
  border: 1px solid var(--color-disclaimer-border);
  border-left: 4px solid var(--color-accent);
  backdrop-filter: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-top: -40px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

.disclaimer-block h3 {
  color: var(--color-accent);
}

.disclaimer-block p {
  color: var(--color-text-muted);
}

/* Hero — SPINTIP left-aligned on image */
.hero-spintip {
  position: relative;
  min-height: clamp(560px, 85vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.hero-spintip-bg {
  position: absolute;
  inset: 0;
  background: url("../images/555.png") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-spintip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 17, 23, 0.92) 0%,
    rgba(11, 17, 23, 0.65) 42%,
    rgba(11, 17, 23, 0.35) 100%
  );
}

.hero-spintip-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(120px, 16vw, 160px) clamp(20px, 4vw, 40px) clamp(72px, 10vw, 100px);
  text-align: left;
}

.hero-spintip .hero-eyebrow {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-spintip .hero-eyebrow::before {
  display: none;
}

.hero-spintip h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 14ch;
}

.hero-spintip .hero-lead {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 0 32px;
}

.hero-spintip .hero-cta-buttons {
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta-badges span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(21, 31, 43, 0.6);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-label--center {
  text-align: center;
  display: block;
}

/* Steps grid */
.section-steps {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 100px);
  background: var(--color-bg);
}

.section-steps h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 22ch;
}

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

.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: var(--color-accent-light);
  transform: translateY(-3px);
}

.step-card--wide {
  grid-column: span 2;
}

.step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.step-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.step-link:hover {
  text-decoration: underline;
}

/* Split about */
.section-split {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.section-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.split-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.split-lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.benefit-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
}

.benefit-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.benefit-list span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-visual {
  position: relative;
}

.split-visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
}

.split-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.split-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(21, 31, 43, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.split-float-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent-on);
  background: var(--color-accent);
  border-radius: 10px;
}

.split-float strong {
  display: block;
  font-size: 0.9375rem;
  color: #fff;
}

.split-float span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Stats dark */
.section-stats-dark {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg);
}

.stats-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.stats-row--dark .stat-item {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.stats-row--dark .stat-number {
  color: var(--color-accent);
}

.section-stats-footer a {
  color: var(--color-accent);
}

/* Benefits */
.section-benefits {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.section-benefits-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.benefits-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.benefits-intro > p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.benefit-list--large {
  gap: 28px;
}

.benefit-list--large li::before {
  width: 10px;
  height: 10px;
  top: 0.35em;
}

.benefit-list--large strong {
  font-size: 1.125rem;
}

/* Product showcase — vertical centered layout */
.section-product-dark {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg);
}

.product-showcase {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 12px);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

.product-showcase-head {
  margin-bottom: 8px;
}

.product-showcase-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-showcase-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.product-showcase-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent-light);
}

.product-showcase-title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.product-showcase-name {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.product-showcase-price {
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.product-showcase-price-value {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.product-showcase-price-currency {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.product-showcase-visual {
  position: relative;
  margin: clamp(16px, 3vw, 28px) auto clamp(20px, 3vw, 32px);
  max-width: 300px;
}

.product-showcase-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.product-showcase-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.product-showcase-desc {
  max-width: 34rem;
  margin: 0 auto 24px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.product-showcase-tags {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
}

.product-showcase-tags li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.product-showcase-tags li::before {
  content: '●';
  color: var(--color-accent);
  margin-right: 8px;
  font-size: 0.5rem;
  vertical-align: middle;
}

.product-showcase-foot {
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.product-showcase-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-showcase-cta .btn-primary,
.product-showcase-cta .btn-outline {
  flex: 1 1 180px;
  max-width: 240px;
  text-align: center;
  padding: 14px 24px;
}

.product-showcase-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* Sources dark */
.section-sources-dark {
  padding: clamp(64px, 9vw, 100px) 0 clamp(80px, 10vw, 120px);
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.section-sources-dark h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.sources-grid--dark .source-card {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.sources-grid--dark .source-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.sources-grid--dark .source-card a {
  color: var(--color-accent);
}

.site-footer--accent .footer-inner h4 {
  color: var(--color-accent);
}

.partners {
  background: var(--color-surface);
  padding: 40px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--color-border);
}

.partners-label,
.partners h2 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.partners-logos span {
  background: var(--color-bg-soft);
  border-color: var(--color-border);
  color: var(--color-text);
  font-weight: 600;
}

/* About */
.section-about {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 28px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 12px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-card-visual-frame {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
}

.about-card-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-card-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 40px);
}

.about-card-float-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 10px;
}

.about-card-float strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.about-card-float span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.about-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 20px) clamp(4px, 2vw, 12px);
}

.about-card-content h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--color-text);
}

.about-card-lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.about-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}

.about-point-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.about-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.about-card-actions .btn-primary,
.about-card-actions .btn-ghost {
  padding: 12px 22px;
  font-size: 0.9375rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.stat-item .stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.section-stats-title {
  text-align: center;
  margin-bottom: 36px;
}

/* Bento grid */
.section-bento {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--color-bg);
}

.section-bento-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-bento-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  min-height: 380px;
}

.bento-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.bento-card--accent {
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.25);
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.bento-icon svg {
  width: 100%;
  height: 100%;
}

.bento-card--accent h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.bento-card--accent p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

.bento-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.bento-link:hover {
  text-decoration: underline;
}

.bento-card--image {
  padding: 0;
  min-height: 100%;
}

.bento-card--image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.bento-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.75));
  color: #fff;
  text-align: left;
}

.bento-image-caption span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.bento-image-caption strong {
  font-size: 1.125rem;
  font-weight: 700;
}

.bento-card--info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.bento-card--info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-info-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.level-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.level-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.level-dots {
  display: flex;
  gap: 6px;
}

.level-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  display: block;
  font-style: normal;
}

.level-dots i.on {
  background: var(--color-accent);
}

.section-unlock {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.section-features--alt {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.section-features--alt h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.section-features--alt .features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-features--alt .feature-card {
  opacity: 1;
  transform: none;
}

.section-features--alt .feature-card.animate-in {
  opacity: 1;
}

/* Product card — restructured layout */
.section-product {
  background: var(--color-bg);
}

.product-section-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: clamp(28px, 4vw, 40px);
  color: var(--color-text);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.product-card-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 48px);
  min-height: 360px;
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 55%, #bfdbfe 100%);
}

.product-card-gallery-bg {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(2px);
}

.product-card-img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
}

.product-card-details {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  gap: 0;
}

.product-card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-card-name {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--color-text);
}

.product-card-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.product-card-price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.product-card-price {
  margin: 0;
  line-height: 1;
}

.product-card-price-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.product-card-price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.product-card-chip {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.product-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 22px;
}

.product-spec-grid {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text);
}

.product-spec-item strong {
  font-weight: 700;
}

.product-spec-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
}

.product-card-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.product-card-cta .btn-primary,
.product-card-cta .btn-ghost {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
}

.product-card-footnote {
  margin: 16px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-gallery {
    min-height: 280px;
    padding: 28px 24px;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
  }
}

.section-sources .container {
  max-width: 1200px;
}

.section-sources-intro {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 40rem;
}

.stat-card .stat-number,
.stat-card:hover::before {
  color: var(--color-accent);
}

.stat-card::before {
  background: linear-gradient(180deg, var(--color-accent-glow), var(--color-accent));
}

.stat-card {
  background: var(--color-surface);
}

.feature-illus {
  background: linear-gradient(145deg, var(--color-accent-soft) 0%, var(--color-surface) 100%);
}

.thankyou-icon {
  background: linear-gradient(145deg, var(--color-accent-glow) 0%, var(--color-accent) 100%);
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card--wide {
    grid-column: span 2;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .bento-card--accent {
    grid-column: 1 / -1;
  }

  .bento-card--image img {
    min-height: 280px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .about-card-visual-frame {
    min-height: 260px;
  }

  .about-card-visual-frame img {
    min-height: 260px;
  }

  .about-card-float {
    left: 16px;
    bottom: 16px;
  }

  .about-card-actions {
    flex-direction: column;
  }

  .about-card-actions .btn-primary,
  .about-card-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .header-shell {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 12px 14px;
  }

  .header-nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    padding-top: 4px;
  }

  .site-header.nav-open .header-nav {
    display: flex;
  }

  .header-shell .nav-links {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius);
    padding: 8px;
  }

  .header-shell .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .header-cta {
    order: 3;
    margin-left: 0;
  }

  .logo {
    order: 1;
  }

  .nav-toggle {
    order: 2;
  }
}

@media (max-width: 900px) {
  .header-nav {
    order: 4;
  }

  .section-bento-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-features--alt .features-grid {
    grid-template-columns: 1fr;
  }
}

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card--wide {
    grid-column: span 1;
  }

  .section-split-grid,
  .section-benefits-grid {
    grid-template-columns: 1fr;
  }

  .split-visual {
    order: -1;
  }

  .product-showcase-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-showcase-cta .btn-primary,
  .product-showcase-cta .btn-outline {
    max-width: none;
  }

  .product-showcase-title-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-spintip .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-spintip .hero-cta-buttons .btn-lg {
    width: 100%;
    text-align: center;
  }

  .hero-spintip h1 {
    max-width: none;
  }
}
