/* ── page-cancel-order ── */
.page-cancel-order .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--hairline);
}
.page-cancel-order .nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.page-cancel-order .nav-logo span:first-child { color: var(--text); }
.page-cancel-order .nav-logo span:last-child  { color: var(--gold); }
.page-cancel-order .main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.page-cancel-order .card {
  width: 100%;
  max-width: 520px;
}
.page-cancel-order .heading {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-cancel-order .body {
  font-size: 14px;
  color: rgba(245,245,247,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-cancel-order .body a { color: var(--text); }
.page-cancel-order .btn {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .page-cancel-order .nav { padding: 20px; }
  .page-cancel-order .main { padding: 40px 20px; }
}
/* ── /page-cancel-order ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&family=Sora:wght@500;700&display=swap');
:root {
  /* Colors — locked design system */
  --bg: #0B0B0F;
  --surface: #141418;
  --surface-2: #1A1A20;
  --text: #F5F5F7;
  --text-dim: rgba(245, 245, 247, 0.62);
  --text-muted: #6B6B74;
  --gold: #C2A14A;
  --blue: #3B82F6;
  --green: #22C55E;
  --orange: #F97316;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --max-width: 1200px;
  --content-width: 760px;
  --text-faint: rgba(245, 245, 247, 0.38);
  --hairline: rgba(245, 245, 247, 0.08);
  --hairline-strong: rgba(245, 245, 247, 0.16);
  --gold-bright: #C2A14A;
  --f-display: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --f-serif: 'Cormorant Garamond', serif;
  --f-body: 'Inter', sans-serif;
}


/* === base.css === */
/* SAMPO — base.css
   Shared design tokens, typography, and base elements.
   Used by all pages. Do not add page-specific styles here.
*/


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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

p {
  color: var(--text);
  margin-bottom: var(--space-sm);
}

a:hover {
  color: #D4B085;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

li {
  margin-bottom: 0.4rem;
  color: var(--text);
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(11, 11, 15, 0.85);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text) !important;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--text) !important;
}

.site-logo:hover span {
  color: #D4B085 !important;
}

.site-nav {
  display: flex;
  gap: var(--space-md);
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--text-dim);
  font-weight: 400;
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  margin-top: var(--space-2xl);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-dim);
  font-weight: 400;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Utility */
/* === legal.css === */
/* LittleBooka — legal.css
   Shared styles for legal pages (Terms, Privacy, Refund).
   Loaded after base.css.
*/

.legal-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: left;
}

.legal-eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.legal-hero h1 {
  margin-bottom: var(--space-sm);
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: var(--f-display);
}

.legal-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.legal-content section {
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-md);
}

.legal-content h2 .legal-num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-right: 0.75rem;
  display: inline-block;
  min-width: 1.75rem;
}

.legal-content h3 {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  color: var(--text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal-content p {
  color: var(--text-dim);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-dim);
  margin-bottom: var(--space-sm);
  padding-left: 1.25rem;
}

.legal-content li {
  color: var(--text-dim);
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 150, 110, 0.3);
}

.site-logo span:first-child {
  color: #F5F5F7 !important;
}
.site-logo span:last-child {
  color: #C2A14A !important;
}

.legal-content a:hover {
  color: #D4B085;
  border-bottom-color: #D4B085;
}

/* Highlighted notice box (e.g. for consent/withdrawal notices) */
.legal-notice {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--gold);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 2px;
}

.legal-notice p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.legal-notice p:last-child {
  margin-bottom: 0;
}

/* Contact block */
.legal-contact {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: var(--space-md);
  border-radius: 2px;
  margin-top: var(--space-md);
  font-size: 0.95rem;
}

.legal-contact p {
  margin-bottom: 0.35rem;
}

.legal-contact strong {
  font-family: var(--f-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Language switch in footer area */
.legal-lang-switch {
  max-width: var(--content-width);
  margin: var(--space-lg) auto 0;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-lang-switch a {
  color: var(--text-dim);
  border-bottom: none;
  margin-left: 0.5rem;
}

.legal-lang-switch a:hover {
  color: var(--gold);
}

/* ============================================
   SAMPO — sampo.css
   Consolidated styles. Generated 2026-05-06.
   Do not edit inline — edit this file.
   ============================================ */

/* === /var/www/sampovip/index.php === */
/* ===== NAV ===== */
.nav-links a:hover { color: var(--text); }

.lang-switch a:hover { color: var(--text); }
/* ===== HERO ===== */
/* Beta-aktiivisena hero alkaa heti bannerin alta — poistetaan tupla tyhjä tila */


/* ===== BUTTONS ===== */
.btn-primary:hover .btn-price {
  color: var(--gold-bright);
}

/* ===== SECTIONS ===== */
/* ===== PROOF ===== */
.proof {
  padding: 48px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.proof-stat {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(140px, 22vw, 300px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
  font-feature-settings: 'ss01';
}

.proof-top {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-top::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-bright);
}

.proof-stat sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--gold-bright);
  font-weight: 500;
  margin-right: 8px;
}

.proof-stat .percent {
  color: var(--gold-bright);
  font-weight: 500;
}

.proof-label {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--text-dim);
  margin-top: 48px;
  letter-spacing: -0.01em;
}

.proof-copy p {
  font-family: var(--f-serif);
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  max-width: 18ch;
}

.proof-copy p.dim {
  font-size: 18px;
  color: var(--text-dim);
  font-family: var(--f-body);
  font-weight: 300;
  letter-spacing: 0;
  max-width: 32ch;
  line-height: 1.55;
}

.proof-copy .btn {
  margin-top: 40px;
}

/* ===== CASE ===== */
.case {
  padding: 48px 0;
}

.case-intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--text-dim);
  line-height: 1.4;
  max-width: 28ch;
  margin-bottom: 72px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}

.case-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: var(--f-display);
  font-size: 18px;
  z-index: 2;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 48px 44px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.case-card:hover {
  border-color: var(--hairline-strong);
}

.case-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.case-card.before .case-label { color: var(--text-faint); }
.case-card.after .case-label { color: var(--gold); }

.case-card.before .case-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-faint);
}
.case-card.after .case-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(184, 150, 110, 0.5);
}

.case-list {
  list-style: none;
  margin-bottom: 36px;
}

.case-list li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  font-size: 14px;
}

.case-list li:last-child { border-bottom: none; }

.case-list .key {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 2px;
}

.case-list .val {
  color: var(--text-dim);
  font-weight: 300;
}

.case-card.after .case-list .val {
  color: var(--text);
}

.case-result {
  padding-top: 28px;
  border-top: 1px solid var(--hairline-strong);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
}

.case-card.before .case-result { color: var(--text-faint); }
.case-card.after .case-result { color: var(--gold); }

.case-card.after {
  border-color: rgba(184, 150, 110, 0.4);
}

.case-note {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text-dim);
  margin: 24px auto 0;
  max-width: 38ch;
  line-height: 1.4;
}

.case-cta {
  display: flex;
  justify-content: center;
}

/* ===== CORE ===== */
.core {
  text-align: center;
  padding: 48px 0;
}

.core-headline {
  font-family: var(--f-serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 auto 32px;
  max-width: 14ch;
}

.core-headline em {
  font-style: italic;
  color: var(--gold);
}

.core-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text-dim);
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===== LOSS ===== */
.loss {
  padding: 48px 0;
}

.loss-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 32px;
  align-items: end;
}

.loss-intro {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 40ch;
}

.loss-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 48px;
}

.loss-list li {
  display: grid;
  grid-template-columns: 48px 140px 1fr;
  gap: 20px;
  padding: 24px 0;
  align-items: baseline;
}

.loss-num {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.loss-key {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.loss-desc {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
}

.loss-close {
  margin-top: 72px;
  max-width: 48ch;
}

.loss-close p {
  font-family: var(--f-serif);
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.loss-close p + p {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 0;
}

/* ===== PRODUCTS ===== */
.products {
  padding-top: 48px;
}

.products .section-title {
  max-width: none;
  white-space: nowrap;
}

.products-intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  color: var(--text);
  max-width: 48ch;
  margin-bottom: 80px;
  letter-spacing: -0.015em;
}

.products-intro strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

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

.product {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  min-height: 420px;
}

.product:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-2);
}

.product-num {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.product-price {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}

.product-price .euro {
  color: var(--gold);
  margin-left: 8px;
  font-weight: 300;
}

.product-name {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.product-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.55;
  font-weight: 300;
  flex-grow: 1;
}

.product.featured {
  border-color: rgba(184, 150, 110, 0.35);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(184, 150, 110, 0.04) 100%);
}

.product.featured .product-price { color: var(--gold); }

/* === DISABLED TUOTEKORTTI (beta-vaiheessa 19€ ja 499€) === */
.product.is-disabled {
  opacity: 0.55;
  background: var(--surface);
}
.product.is-disabled:hover {
  transform: none;
  border-color: var(--hairline);
  background: var(--surface);
}
.product.is-disabled .product-num,
.product.is-disabled .product-name,
.product.is-disabled .product-price,
.product.is-disabled .product-price .euro,
.product.is-disabled .product-tagline,
.product.is-disabled .product-desc {
  color: var(--text-faint);
}

/* === HINTAPARI: 99€ yliviivattu + aktiivinen beta-hinta === */
.product-price-pair {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  line-height: 1;
}
.product-price-regular {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  letter-spacing: -0.02em;
}
.product-price-regular .euro {
  color: var(--text-faint);
  margin-left: 4px;
}
.product-price-beta {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-bright);
  letter-spacing: -0.03em;
}
.product-price-beta .euro {
  color: var(--gold-bright);
  margin-left: 6px;
}

.product-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(184, 150, 110, 0.35);
}

.product .btn {
  align-self: flex-start;
}

/* ===== EXECUTION ===== */
.execution {
  padding: 48px 0;
}

.execution-inner {
  max-width: 720px;
}

.execution p {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
}

.execution p strong {
  color: var(--text);
  font-weight: 500;
  font-style: italic;
}

.execution p + p {
  margin-top: 16px;
}

/* ===== CLOSE ===== */
/* ===== FOOTER ===== */
/* ===== UTILITIES ===== */
section > .container { max-width: 1200px; }

/* K3 — Story section */
/* K8 — Kalevala quote */
/* K4 — Gold divider */
/* K6 — Vignette */
.vignette svg {
  width: 72px;
  height: 72px;
  opacity: 0.7;
}
/* === /var/www/sampovip/the-fix/index.php === */
/* BETA BANNER */
.beta-banner { position: fixed; top: 64px; left: 0; right: 0; height: 56px; background: #0B0B0F; color: var(--text); z-index: 140; border-top: 1px solid rgba(245,245,247,0.06); border-bottom: 1px solid rgba(194,161,74,0.2); display: flex; align-items: center; }
.beta-banner-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.beta-banner-left { font-size: 14px; font-weight: 500; }
.beta-banner-center { font-size: 14px; color: var(--text-dim); }
.beta-banner-right { display: flex; align-items: center; gap: 16px; }
.beta-banner-cta { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 18px; background: #0B0B0F; border: 1px solid #C2A14A; color: var(--text); border-radius: 2px; transition: all 0.25s ease; text-decoration: none; display: inline-block; }
.beta-banner-cta:hover { border-width: 2px; padding: 9px 17px; box-shadow: 0 0 0 1px rgba(194,161,74,0.25), 0 0 24px -6px rgba(194,161,74,0.5); }
.bb-gold { color: var(--gold); font-weight: 700; }
.bb-price-old { color: rgba(245,245,247,0.38); text-decoration: line-through; margin-left: 4px; font-weight: 400; }
.beta-banner-counter { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.bb-counter-num { color: var(--text); font-weight: 600; }
.bb-counter-sep { color: var(--text-faint); margin: 0 2px; }
/* NAV */
/* BUTTONS */
/* HERO */
/* REFRAME */
.reframe-inner { max-width: 780px; }
.reframe-lead { font-size: clamp(32px, 5vw, 56px); font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 32px; }
.reframe-lead em { color: var(--gold); font-weight: 500; font-style: normal; }
.reframe-math { display: flex; align-items: center; gap: 20px; padding: 32px; background: var(--surface); border: 1px solid var(--hairline); margin: 48px 0; font-size: 22px; font-weight: 300; letter-spacing: -0.01em; flex-wrap: wrap; }
.reframe-math .term { color: var(--text-dim); }
.reframe-math .op { font-weight: 500; font-size: 20px; color: var(--text-faint); padding: 0 4px; }
.reframe-math .result { color: var(--text); font-weight: 500; }
.reframe-conclusion { font-size: 28px; font-weight: 400; color: var(--gold); letter-spacing: -0.015em; margin-top: 24px; }

/* TIERS */
.tier { overflow: visible; }
.tier .container { overflow: visible; }
.tier-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.tier-left { position: sticky; top: 120px; }
.tier-num { font-size: 11px; letter-spacing: 0.24em; color: var(--text-faint); margin-bottom: 32px; }
.tier-price { font-weight: 300; font-size: clamp(100px, 14vw, 180px); line-height: 0.9; letter-spacing: -0.04em; color: var(--gold); margin-bottom: 24px; }
.tier-price .euro { color: var(--gold); font-weight: 300; margin-left: 4px; }
.tier-price-pair { display: flex; align-items: baseline; gap: 18px; margin-bottom: 24px; line-height: 1; flex-wrap: wrap; }
.tier-price-regular { font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: var(--text-faint); text-decoration: line-through; text-decoration-thickness: 1px; letter-spacing: -0.03em; }
.tier-price-regular .euro { color: var(--text-faint); margin-left: 4px; }
.tier-price-beta { font-size: clamp(100px, 14vw, 180px); font-weight: 300; color: var(--gold); letter-spacing: -0.04em; line-height: 0.9; }
.tier-price-beta .euro { color: var(--gold); margin-left: 4px; }
.tier-label { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.tier-setup { font-size: 22px; font-weight: 300; color: var(--text-dim); margin-bottom: 32px; line-height: 1.4; }
.tier-setup strong { color: var(--text); font-weight: 500; }
.tier-name { font-size: clamp(32px, 4.5vw, 52px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
.tier-name em { color: var(--gold); font-weight: 500; font-style: normal; }
.tier-tag { font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 40px; }
.tier-list { list-style: none; margin-bottom: 40px; }
.tier-list li { padding: 20px 0; display: grid; grid-template-columns: 40px 1fr; gap: 16px; font-size: 16px; color: var(--text); align-items: baseline; border-top: 1px solid var(--hairline); }
.tier-list .dot { font-size: 12px; font-weight: 500; color: var(--text-faint); letter-spacing: 0.08em; }
.tier-list .txt { font-size: 20px; font-weight: 300; letter-spacing: -0.01em; line-height: 1.3; }
.tier-meta { font-size: 16px; font-weight: 300; color: var(--text-dim); margin-bottom: 32px; }
.tier-body { font-size: 18px; font-weight: 300; line-height: 1.55; color: var(--text-dim); margin-bottom: 20px; max-width: 50ch; }
.tier-body em { color: var(--text); font-style: normal; font-weight: 400; }
/* DONE STAMP */
.done-stamp { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); padding: 12px 20px; border: 1px solid rgba(194,161,74,0.4); margin-top: 16px; }
.done-stamp::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(194,161,74,0.5); }

/* UNLOCK BOX */
.unlock-box { margin-top: 16px; padding: 16px 20px; border: 1px solid rgba(194,161,74,0.3); background: rgba(194,161,74,0.04); }
.unlock-box-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.unlock-box-price { font-size: 22px; font-weight: 300; color: var(--text); }
.unlock-box-price span { color: var(--gold); }
.unlock-box-note { font-size: 13px; color: var(--text-faint); margin-left: 6px; }

/* REQUIREMENTS */
.requirements-intro { font-size: 20px; font-weight: 300; color: var(--text-dim); margin-bottom: 40px; }
.requirements-list { list-style: none; padding: 0; margin: 0; }
.requirements-list li { display: grid; grid-template-columns: 56px 1fr; gap: 32px; padding: 28px 0; border-top: 1px solid var(--hairline); align-items: baseline; }
.requirements-list li:last-child { border-bottom: 1px solid var(--hairline); }
.req-num { font-size: 12px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-faint); }
.req-title { font-size: 24px; font-weight: 300; letter-spacing: -0.015em; line-height: 1.2; color: var(--text); margin-bottom: 6px; }
.req-desc { font-size: 15px; color: var(--text-dim); font-weight: 400; line-height: 1.5; }

/* HOW IT WORKS */
.how-steps { list-style: none; margin: 40px 0 48px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.how-steps li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; align-items: baseline; border-top: 1px solid var(--hairline); }
.how-steps li:nth-child(odd) { padding-right: 32px; }
.how-steps li:nth-child(even) { padding-left: 32px; }
.hw-num { font-size: 12px; font-weight: 500; letter-spacing: 0.18em; color: var(--text-faint); }

/* ── page-order-complete ── */
.page-order-complete .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--hairline);
}
.page-order-complete .nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.page-order-complete .main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.page-order-complete .card {
  width: 100%;
  max-width: 560px;
}

/* Order summary strip */
.page-order-complete .order-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-order-complete .order-summary-label {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.page-order-complete .order-summary-product {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.page-order-complete .order-summary-price {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Consent block */
.page-order-complete .consent-heading {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-order-complete .consent-sub {
  font-size: 14px;
  color: rgba(245,245,247,0.55);
  margin-bottom: 32px;
  line-height: 1.6;
}
.page-order-complete .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.page-order-complete .checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.page-order-complete .checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.page-order-complete .checkbox-item input[type="checkbox"]:checked {
  background: var(--bg);
  border-color: var(--gold);
}
.page-order-complete .checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.page-order-complete .checkbox-label {
  font-size: 13px;
  color: rgba(245,245,247,0.75);
  line-height: 1.6;
}
.page-order-complete .checkbox-label a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-order-complete .checkbox-label a:hover { color: var(--blue); }

/* Buttons */
.page-order-complete .btn-confirm {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  letter-spacing: 0.01em;
}
.page-order-complete .btn-confirm:hover { background: #b8903f; border-color: var(--gold); }
.page-order-complete .btn-confirm:disabled { opacity: 0.5; cursor: not-allowed; }
.page-order-complete .btn-home {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  margin-top: 16px;
}
.page-order-complete .btn-home:hover { border-color: rgba(255,255,255,0.5); }

/* Error notice */
.page-order-complete .notice-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #FCA5A5;
  margin-bottom: 24px;
}

/* Confirmed state */
.page-order-complete .confirmed-icon {
  width: 52px;
  height: 52px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.page-order-complete .confirmed-icon svg { color: var(--green); }
.page-order-complete .confirmed-heading {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-order-complete .confirmed-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.page-order-complete .confirmed-line {
  font-size: 14px;
  color: rgba(245,245,247,0.65);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.page-order-complete .confirmed-line::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(245,245,247,0.25);
}

/* Error page */
.page-order-complete .error-heading {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.page-order-complete .error-body {
  font-size: 14px;
  color: rgba(245,245,247,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-order-complete .error-body a { color: var(--text); }

/* Help modal */
.page-order-complete .help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  font-family: var(--f-body);
  cursor: pointer;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
  background: transparent;
  padding: 0;
  position: relative;
  top: -1px;
}
.page-order-complete .help-icon:hover { background: rgba(194,161,74,0.12); }
.page-order-complete .help-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.page-order-complete .help-modal-overlay.is-open { display: flex; }
.page-order-complete .help-modal {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 28px 28px 24px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.page-order-complete .help-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.page-order-complete .help-modal-close:hover { color: var(--text); }
.page-order-complete .help-modal-title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-right: 24px;
}
.page-order-complete .help-modal-section { margin-bottom: 18px; }
.page-order-complete .help-modal-section:last-child { margin-bottom: 0; }
.page-order-complete .help-modal-section h4 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.page-order-complete .help-modal-section p,
.page-order-complete .help-modal-section ol {
  font-size: 13px;
  color: rgba(245,245,247,0.72);
  line-height: 1.65;
}
.page-order-complete .help-modal-section ol { padding-left: 18px; }
.page-order-complete .help-modal-section ol li { margin-bottom: 3px; }
.page-order-complete .help-modal-notice {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 6px;
  line-height: 1.55;
}
.page-order-complete .help-modal-warn {
  font-size: 12px;
  color: #FCA5A5;
  margin-top: 8px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 480px) {
  .page-order-complete .nav { padding: 20px; }
  .page-order-complete .main { padding: 40px 20px; }
  .page-order-complete .confirmed-heading,
  .page-order-complete .consent-heading { font-size: 24px; }
}
/* ── /page-order-complete ── */
.hw-txt { font-size: clamp(18px, 2.2vw, 26px); font-weight: 300; letter-spacing: -0.01em; line-height: 1.25; }
.how-close { font-size: clamp(20px, 2.6vw, 30px); font-weight: 300; color: var(--text); max-width: 42ch; line-height: 1.3; letter-spacing: -0.015em; padding-top: 32px; border-top: 1px solid var(--hairline); }
/* AUDIENCE */
.audience { text-align: center; padding: 48px 0; }
.audience-text { font-size: clamp(32px, 5vw, 64px); font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; }
.audience-text em { color: var(--gold); font-weight: 500; font-style: normal; }

/* FAQ */
.faq-list { list-style: none; }
.faq-item { padding: 40px 0; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: baseline; border-top: 1px solid var(--hairline); }
.faq-q { font-size: clamp(20px, 2.4vw, 28px); font-weight: 300; letter-spacing: -0.015em; line-height: 1.2; color: var(--text); }
.faq-a { font-size: 17px; line-height: 1.55; color: var(--text-dim); font-weight: 400; }
.faq-a strong { color: var(--text); font-weight: 500; }
.faq-close { margin-top: 64px; font-size: clamp(26px, 3.6vw, 42px); font-weight: 300; line-height: 1.2; letter-spacing: -0.015em; color: var(--text); text-align: center; max-width: 28ch; margin-left: auto; margin-right: auto; padding-top: 64px; border-top: 1px solid var(--hairline); }
.faq-close em { color: var(--gold); font-style: normal; font-weight: 400; }
/* CLOSE */
/* FOOTER */
/* K3 — Story section */
/* K8 — Kalevala quote */
/* K4 — Gold divider */
/* K6 — Vignette */
/* === /var/www/sampovip/how-we-fix-revenue/index.php === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
a {
  transition: color 0.2s ease;
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 20px 0;
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 0.15em;
}
.logo-light {
  color: var(--text);
}
.logo-gold {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  letter-spacing: 0.01em;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}
.lang-switch {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.lang-switch a {
  padding: 4px 8px;
  transition: color 0.25s;
}
.lang-switch a.active {
  color: var(--text);
}
.lang-switch .divider {
  color: var(--text-faint);
}
.lang-switch--mobile {
  display: none;
}
.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background: #0B0B0F;
  z-index: 200;
  overflow-y: auto;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-style: italic;
  letter-spacing: -0.015em;
  font-family: var(--f-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
/* BUTTONS */
.btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary {
  background: #0B0B0F;
  color: var(--text);
  border: 1px solid #C2A14A;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 28px;
}
.btn-primary:hover {
  background: #0B0B0F;
  color: var(--text);
  border-color: var(--gold-bright);
  border-width: 2px;
  padding: 15px 27px;
  box-shadow: 0 0 0 1px rgba(194,161,74,0.25), 0 0 24px -6px rgba(194,161,74,0.5);
}
.btn-primary .btn-price {
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
}
.btn-secondary:hover {
  background: rgba(194,161,74,0.1);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2,0.9,0.3,1);
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn-price {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  margin-left: 2px;
  letter-spacing: 0.08em;
}
.btn-price-old {
  text-decoration-thickness: 1px;
  color: rgba(245,245,247,0.38);
  text-decoration: line-through;
  margin-right: 4px;
  font-weight: 400;
}
.btn.btn-disabled, a.btn.btn-disabled {
  background: rgba(245,245,247,0.08);
  color: rgba(245,245,247,0.35);
  border: 1px solid rgba(245,245,247,0.1);
  pointer-events: none;
}
.btn.btn-disabled .arrow {
  opacity: 0.4;
}
.cta-disabled-note {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
  padding: 120px 24px;
  position: relative;
}
body.beta-active .hero {
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center top, rgba(194,161,74,0.10) 0%, transparent 70%);
  pointer-events: none;
}
section {
  overflow: hidden;
  padding: 48px 0;
  position: relative;
}

.section-kicker {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text-faint);
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  max-width: 32ch;
}
.section-title em {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}

/* MODEL */
.model-intro { font-size: 18px; color: var(--text-dim); margin-bottom: 32px; max-width: 48ch; line-height: 1.55; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 900px; margin: 0 auto; }
.pillar { padding: 40px 16px; text-align: center; transition: background 0.3s ease; }
.pillar:hover { background: var(--surface); }
.pillar-num { font-size: 13px; letter-spacing: 0.24em; color: var(--text-faint); margin-bottom: 20px; }
.pillar-name { font-size: clamp(24px, 3vw, 36px); font-weight: 300; letter-spacing: -0.015em; }
.model-fail { margin-top: 48px; text-align: center; }
.model-fail p { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.4; color: var(--text-dim); max-width: 60ch; margin: 0 auto; }
.model-fail p strong { color: var(--text); font-weight: 600; }
/* FAILURE */
.failure-list { list-style: none; margin-bottom: 32px; }
.failure-list li { font-size: clamp(20px, 2.8vw, 32px); font-weight: 300; line-height: 1.4; letter-spacing: -0.01em; padding: 20px 0; color: var(--text-dim); border-top: 1px solid var(--hairline); transition: color 0.3s ease; display: grid; grid-template-columns: 48px 1fr; align-items: baseline; gap: 16px; }
.failure-list li:hover { color: var(--text); }
.failure-list li strong { color: var(--text); font-weight: 600; }
.failure-list li::before { content: attr(data-num); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; color: var(--text-faint); }
.failure-close { max-width: 60ch; margin-top: 24px; }
.failure-close p { font-size: 22px; font-weight: 300; line-height: 1.4; }
.failure-close p + p { margin-top: 12px; color: var(--gold); }

/* APPROACH */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.approach-card { padding: 56px 48px; border: 1px solid var(--hairline); background: var(--surface); transition: border-color 0.4s; }
.approach-card:hover { border-color: var(--hairline-strong); }
.approach-label { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
.approach-card.them .approach-label { color: var(--text-faint); }
.approach-card.us .approach-label { color: var(--gold); }
.approach-card.them .approach-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); }
.approach-card.us .approach-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px rgba(194,161,74,0.5); }
.approach-steps { list-style: none; margin-bottom: 20px; }
.approach-steps li { padding: 10px 0; font-size: 18px; font-weight: 300; color: var(--text-dim); display: flex; align-items: center; gap: 16px; }
.approach-card.us .approach-steps li { color: var(--text); }
.approach-steps li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.4; flex-shrink: 0; }
.approach-result { padding-top: 28px; border-top: 1px solid var(--hairline-strong); font-size: 18px; line-height: 1.4; }
.approach-card.them .approach-result { color: var(--text-faint); }
.approach-card.us .approach-result { color: var(--gold); }
.approach-card.us { border-color: rgba(194,161,74,0.4); }
/* OPERATORS */
.operators-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.operator { display: flex; flex-direction: column; }
.operator-image { aspect-ratio: 3/4; background: var(--surface); overflow: hidden; position: relative; margin-bottom: 32px; border: 1px solid var(--hairline); }
.operator-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(0.15) contrast(1.02); transition: transform 0.8s cubic-bezier(0.2,0.9,0.3,1); }
.operator:hover .operator-image img { transform: scale(1.03); }
.operator-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,11,15,0.4) 100%); pointer-events: none; }
.operator-num { font-size: 11px; letter-spacing: 0.24em; color: var(--gold); margin-bottom: 16px; }
.operator-name { font-size: 36px; font-weight: 300; letter-spacing: -0.015em; margin-bottom: 8px; }
.operator-role { font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 24px; }
.operator-desc { font-size: 18px; font-weight: 300; line-height: 1.5; color: var(--text-dim); max-width: 28ch; }
.operators-close { margin-top: 40px; padding-top: 24px; text-align: center; }
.operators-close p { font-size: clamp(24px, 3.5vw, 40px); font-weight: 300; letter-spacing: -0.015em; color: var(--text); margin-bottom: 24px; max-width: 44ch; margin-left: auto; margin-right: auto; line-height: 1.3; }
.operators-close p em { color: var(--gold); font-style: normal; font-weight: 400; }
.operators-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* CLOSE */
.close {
  padding: 48px 0 64px;
  position: relative;
  text-align: center;
}
.close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(194,161,74,0.06) 0%, transparent 50%);
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.close-headline {
  font-family: var(--f-serif);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  position: relative;
}
.close-headline em {
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.close-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 48px;
  position: relative;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.close .btn {
  position: relative;
}

/* FOOTER */
.footer {
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}
.footer-tag {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 28ch;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
/* K3 — Story section */
.story {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.story-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.story-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.story-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.story-body {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.story-body p {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
}
.story-body em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.story-close {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text);
  max-width: 640px;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
.story-close em {
  color: var(--gold);
}
/* K8 — Kalevala quote */
.kalevala-quote {
  margin-top: 64px;
  max-width: 480px;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}
.quote-fi, .quote-en {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}
.quote-en {
  color: var(--text-dim);
}
.quote-source {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* K4 — Gold divider */
.divider-gold {
  height: 1px;
  max-width: 40px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* K6 — Vignette */
.vignette {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
  opacity: 0.5;
}
.vignette::before,
.vignette::after {
  flex: 1;
  max-width: 200px;
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.vignette::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.vignette-icon {
  color: var(--gold);
  flex-shrink: 0;
}
/* K7 — Subtle background pattern */
.story::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='8' fill='none' stroke='%23C2A14A' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.04;
  pointer-events: none;
}

/* K5 — Typography: h2/h3 Cormorant, h1 Cinzel */
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  font-family: var(--f-display);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--f-serif);
  font-weight: 500;
}
h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-family: var(--f-serif);
  font-weight: 500;
}
h3 em {
  font-style: italic;
  color: var(--gold);
}


/* === Logo (SAMPO wordmark + FORGED IN FINLAND tagline) === */
.logo svg text,
.footer-brand svg text,
.site-logo svg text {
  font-family: var(--f-display);
  fill: var(--gold);
}
.logo-mark {
  font-size: 58px;
  font-weight: 500;
  letter-spacing: 9px;
}
.logo-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4.5px;
}

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

  .product {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .products .section-title {
    white-space: normal;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-arrow {
    position: relative;
    left: auto;
    top: auto;
    transform: rotate(90deg);
    margin: -10px auto;
  }

  .case-list li {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }

  .loss-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loss-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .loss-list li {
    grid-template-columns: 40px 1fr;
    padding: 20px 0;
  }

  .loss-desc {
    grid-column: 2;
    margin-top: 6px;
  }

  .tier-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tier-left {
    position: static;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .nav-links {
    display: none;
  }

  .lang-switch--desktop {
    display: none;
  }

  .lang-switch--mobile {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

  .pillar {
    padding: 28px 12px;
  }

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

  .operators-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: calc(64px + 64px);
  }

  .beta-banner {
    height: 64px;
  }

  .beta-banner-inner {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
    gap: 12px;
  }

  .beta-banner-center, .beta-banner-counter {
    display: none;
  }
}

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

  .how-steps li:nth-child(odd), .how-steps li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .legal-hero {
    padding: var(--space-lg) var(--space-md) var(--space-md);
  }

  .legal-content h2 {
    font-size: 1.35rem;
  }

  .legal-content h2 .legal-num {
    display: block;
    margin-bottom: 0.25rem;
    margin-right: 0;
  }

  .proof {
    padding: 56px 0;
  }

  .core {
    padding: 64px 0;
  }

  .execution {
    padding: 64px 0;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    padding: 110px 0 48px;
  }

  .close {
    padding: 72px 0;
  }
}


/* ===== HERO REDESIGN (7.5.2026) ===== */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 40px;
}

.hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: -0.15em;
}

.hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
  opacity: 0.6;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.btn-hero {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 16px 40px;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-hero:hover {
  opacity: 0.85;
}

.hero-discover {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--f-body);
  animation: heroDiscover 2s ease-in-out infinite;
}

.hero-discover svg {
  width: 16px;
  height: 16px;
  fill: none;
}

.hero-discover svg path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes heroDiscover {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.7; }
}

/* Tier-osion Start Fix -nappi (the-fix-sivut) */
.tier .btn-hero {
  margin-top: 32px;
}
