@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   DATA DESK CO — Design Tokens
   Colour scheme inspired by BERT palette
   but with brand blues replacing greens
============================================= */
:root {
  /* Core palette (BERT-inspired) */
  --bg-darkest:   #0B0C10;   /* deepest background */
  --bg-dark:      #1F2833;   /* card / panel dark */
  --bg-mid:       #1A2030;   /* section alternate */
  --text-light:   #C5C6C7;   /* body text on dark */
  --teal:         #66FCF1;   /* primary accent — light teal */
  --teal-mid:     #45A29E;   /* secondary teal */

  /* Brand blues (replacing palette greens) */
  --blue:         #0A84FF;   /* interactive blue */
  --blue-dark:    #0052CC;   /* darker blue */
  --blue-pale:    rgba(10,132,255,0.12);
  --blue-border:  rgba(10,132,255,0.25);

  /* Utility */
  --accent-green: #66FCF1;   /* teal for highlights */
  --warn:         #FF6B35;   /* orange — bespoke banner */
  --success:      #45A29E;
  --error:        #E05A4E;
  --white:        #FFFFFF;
  --border-subtle: rgba(102,252,241,0.08);
  --border-mid:    rgba(102,252,241,0.15);
  --border-blue:   rgba(10,132,255,0.2);

  /* Typography */
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================= RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================= UTILS */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }

/* ============================================= TYPOGRAPHY */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
}
.t-display {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
}
.t-display em { font-style: normal; color: var(--teal); }
.t-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
}
.t-h2 em { font-style: normal; color: var(--teal); }
.t-body { font-size: clamp(1rem, 1.5vw, 1.05rem); color: var(--text-light); line-height: 1.75; font-weight: 300; }

/* ============================================= BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,132,255,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-teal {
  background: var(--teal);
  color: var(--bg-darkest);
  border: none;
  font-weight: 700;
}
.btn-teal:hover { background: #4DE8E3; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(102,252,241,0.25); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(197,198,199,0.3);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-mid);
}
.btn-outline-teal:hover { background: rgba(102,252,241,0.06); border-color: var(--teal); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: var(--r-lg); }

/* ============================================= NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11,12,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color .18s;
  opacity: .8;
}
.nav-links a:hover { color: var(--teal); opacity: 1; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-light); border-radius: 2px; transition: all .25s; }
.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--border-subtle); background: var(--bg-darkest); }
.mobile-nav a { padding: .85rem 0; font-size: 1rem; color: var(--text-light); border-bottom: 1px solid var(--border-subtle); }
.mobile-nav.open { display: flex; }

/* ============================================= HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-darkest);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-desk.svg');
  background-size: cover;
  background-position: center 30%;
  opacity: .95;
}
/* Dark overlay so text pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,12,16,0.82) 0%,
    rgba(11,12,16,0.65) 48%,
    rgba(11,12,16,0.18) 100%
  );
}
/* Teal atmospheric glow */
.hero-glow {
  position: absolute;
  top: 10%;
  left: 8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102,252,241,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(102,252,241,0.08);
  border: 1px solid rgba(102,252,241,0.25);
  border-radius: 100px;
  padding: .35rem 1rem .35rem .5rem;
  margin-bottom: 2rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.hero-badge span { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 480px;
  opacity: .85;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.hero-stat-n {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-l { font-size: .72rem; color: rgba(197,198,199,.5); margin-top: .2rem; letter-spacing: .05em; }

/* ============================================= CATEGORY PILLS (hero right) */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.cat-pill {
  background: rgba(31,40,51,0.75);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 1rem 1rem .9rem;
  cursor: pointer;
  transition: all .22s var(--ease);
  display: block;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.cat-pill:hover {
  background: rgba(102,252,241,0.08);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102,252,241,0.1);
}
.cat-pill-icon { font-size: 1.4rem; margin-bottom: .45rem; }
.cat-pill-name { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.cat-pill-count { font-size: .68rem; color: rgba(197,198,199,.5); margin-top: .2rem; }

/* ============================================= TRUST BAR */
.trust {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 2.25rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 500; color: var(--text-light); opacity: .75; }
.trust-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(69,162,158,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 9px; height: 9px; stroke: var(--teal-mid); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================= BESPOKE BANNER */
.bespoke-banner {
  background: linear-gradient(135deg, #CC4B1A 0%, #FF6B35 45%, #FF8C42 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.bespoke-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.bespoke-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; flex-wrap: wrap; }
.bespoke-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px;
  padding: .25rem .85rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .85rem;
}
.bespoke-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .6rem;
}
.bespoke-banner p { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.65; max-width: 480px; }
.bespoke-features { display: flex; gap: 1.25rem; margin-top: 1rem; flex-wrap: wrap; }
.bespoke-feat { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.9); font-weight: 500; }
.bespoke-feat::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.bespoke-cta { flex-shrink: 0; text-align: center; }
.btn-bespoke {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #CC4B1A;
  padding: 1rem 2rem;
  border-radius: var(--r-lg);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-bespoke:hover { background: #FFF5F0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.btn-bespoke .arr { transition: transform .2s; }
.btn-bespoke:hover .arr { transform: translateX(3px); }
.bespoke-price-note { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .6rem; }

/* ============================================= PRODUCTS SECTION */
.products-section { padding: 5rem 0 6rem; background: var(--bg-darkest); }
.products-header { text-align: center; margin-bottom: 3.5rem; }
.products-header .t-eyebrow { margin-bottom: .75rem; }
.products-header .t-h2 { margin-bottom: 1rem; }
.products-header p { font-size: 1rem; color: var(--text-light); max-width: 520px; margin: 0 auto; opacity: .75; }

/* Filter tabs */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; padding: 0 1rem; }
.filter-btn {
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-light);
  background: transparent;
  transition: all .18s var(--ease);
  opacity: .7;
}
.filter-btn:hover { border-color: var(--teal-mid); color: var(--teal); opacity: 1; }
.filter-btn.active { background: var(--teal); color: var(--bg-darkest); border-color: var(--teal); opacity: 1; font-weight: 700; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.product-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--teal-mid); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(102,252,241,0.08); }
.product-card.available { border-color: rgba(69,162,158,.3); }
.product-card.coming-soon { opacity: .65; }
.product-card-header { padding: 1.1rem 1.25rem .75rem; display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.product-num { font-family: var(--font-head); font-size: .72rem; font-weight: 700; color: rgba(197,198,199,.3); letter-spacing: .05em; }
.product-status { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 100px; }
.status-available { background: rgba(69,162,158,.18); color: var(--teal-mid); }
.status-coming { background: rgba(197,198,199,.08); color: rgba(197,198,199,.4); }
.product-card-body { padding: 0 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-cat-tag { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; opacity: .8; }
.product-name { font-family: var(--font-head); font-size: .975rem; font-weight: 700; line-height: 1.35; color: var(--white); margin-bottom: .5rem; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: .875rem; border-top: 1px solid var(--border-subtle); }
.product-price { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--teal); }

/* ============================================= BUTTONS on cards */
.btn-add-cart {
  background: var(--blue);
  color: var(--white);
  padding: .48rem .95rem;
  border-radius: var(--r-sm);
  font-size: .76rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .18s var(--ease);
  font-family: var(--font-body);
  min-width: 72px;
}
.btn-add-cart:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); }
.btn-add-cart.in-cart { background: rgba(69,162,158,.18); color: var(--teal-mid); cursor: default; }
.btn-add-cart:disabled { opacity: 1; }
.btn-coming { font-size: .72rem; color: rgba(197,198,199,.3); font-style: italic; font-family: var(--font-body); }

/* Show more */
.show-more-wrap { text-align: center; margin-top: 2.5rem; }
.show-more-wrap p { font-size: .85rem; color: rgba(197,198,199,.3); margin-bottom: 1rem; }

/* ============================================= HOW IT WORKS */
.hiw { background: var(--bg-mid); padding: 5rem 0; }
.hiw-header { text-align: center; margin-bottom: 3.5rem; }
.hiw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }
.hiw-step {
  background: rgba(31,40,51,.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.hiw-step:hover { border-color: var(--teal-mid); transform: translateY(-2px); }
.hiw-step-n { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 1rem; }
.hiw-step-t { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--white); }
.hiw-step-d { font-size: .875rem; color: var(--text-light); line-height: 1.65; opacity: .75; }

/* ============================================= FEATURES */
.features { padding: 5rem 0; background: var(--bg-darkest); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }
.feature-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--teal-mid); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; background: rgba(102,252,241,.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-t { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--white); }
.feature-d { font-size: .875rem; color: var(--text-light); line-height: 1.65; opacity: .7; }

/* ============================================= NAV CART */
.cart-nav-btn {
  position: relative;
  background: rgba(10,132,255,.1);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--r-sm);
  padding: .45rem .75rem;
  color: var(--blue);
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .18s;
}
.cart-nav-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.cart-nav-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--warn);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-darkest);
}

/* ============================================= FLOATING CART BAR */
.cart-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 300;
  background: var(--bg-dark);
  border: 1px solid var(--border-mid);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: .85rem 1rem .85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform .4s var(--ease);
  white-space: nowrap;
}
.cart-bar.visible { transform: translateX(-50%) translateY(0); }
.cart-bar-label { font-size: .875rem; font-weight: 500; color: var(--text-light); }
.cart-bar-btn { background: var(--blue); color: var(--white); border: none; padding: .55rem 1.25rem; border-radius: 100px; font-size: .82rem; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: background .18s; }
.cart-bar-btn:hover { background: var(--blue-dark); }

/* ============================================= CART DRAWER */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.visible { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(400px, 100vw); height: 100vh; background: var(--bg-dark); border-left: 1px solid var(--border-mid); z-index: 500; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-subtle); flex-shrink: 0; }
.cart-drawer-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.cart-drawer-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(197,198,199,.08); border: none; font-size: 1.25rem; color: var(--text-light); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s; font-family: var(--font-body); }
.cart-drawer-close:hover { background: rgba(197,198,199,.15); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 240px; gap: .75rem; text-align: center; }
.cart-empty svg { width: 48px; height: 48px; color: rgba(197,198,199,.25); }
.cart-empty p { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.cart-empty span { font-size: .85rem; color: rgba(197,198,199,.35); }
.cart-items { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .875rem 1rem; background: rgba(11,12,16,.5); border-radius: var(--r-md); border: 1px solid var(--border-subtle); }
.cart-item-name { font-size: .875rem; font-weight: 500; color: var(--text-light); line-height: 1.4; }
.cart-item-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.cart-item-price { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--teal); }
.cart-item-remove { width: 24px; height: 24px; border-radius: 50%; background: rgba(197,198,199,.06); border: 1px solid var(--border-subtle); color: rgba(197,198,199,.4); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .18s; font-family: var(--font-body); line-height: 1; }
.cart-item-remove:hover { background: rgba(224,90,78,.15); color: var(--error); border-color: var(--error); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin-bottom: 1.25rem; font-size: .9rem; color: var(--text-light); }
.cart-subtotal strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); }
.cart-checkout-btn { display: flex; justify-content: center; width: 100%; margin-bottom: .75rem; }
.cart-clear-btn { display: block; width: 100%; text-align: center; background: none; border: none; font-size: .78rem; color: rgba(197,198,199,.3); cursor: pointer; padding: .5rem; transition: color .18s; font-family: var(--font-body); }
.cart-clear-btn:hover { color: var(--error); }

/* ============================================= TOAST */
#cart-toast { position: fixed; bottom: 6rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--bg-dark); border: 1px solid var(--border-mid); color: var(--teal); padding: .65rem 1.25rem; border-radius: 100px; font-size: .85rem; font-weight: 600; font-family: var(--font-body); opacity: 0; pointer-events: none; transition: all .25s var(--ease); z-index: 600; white-space: nowrap; }
#cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================= FAQ */
.faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--white); gap: 1rem; cursor: pointer; transition: color .2s; }
.faq-q:hover { color: var(--teal); }
.faq-icon { font-style: normal; font-size: 1.1rem; color: var(--teal); flex-shrink: 0; width: 22px; height: 22px; border: 1.5px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; font-family: var(--font-body); line-height: 1; }
.faq-a { font-size: .92rem; color: var(--text-light); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; padding-bottom: 0; opacity: .8; }

/* ============================================= EMAIL / CTA SECTION */
.email-section {
  background: var(--bg-mid);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.email-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(102,252,241,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.email-form { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-input { flex: 1; min-width: 200px; padding: .85rem 1.1rem; border-radius: var(--r-md); border: 1px solid var(--border-mid); background: rgba(31,40,51,.8); color: var(--white); font-family: var(--font-body); font-size: .9rem; outline: none; transition: border-color .2s; }
.email-input::placeholder { color: rgba(197,198,199,.35); }
.email-input:focus { border-color: var(--teal); }

/* ============================================= CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, #061436 0%, #0A1C4A 50%, #0D2260 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(102,252,241,.04) 1px, transparent 1px); background-size: 28px 28px; }
.cta-strip::after { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(102,252,241,.06) 0%, transparent 70%); }
.cta-strip h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); letter-spacing: -.02em; margin-bottom: .75rem; position: relative; }
.cta-strip p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2.25rem; position: relative; max-width: 460px; margin-left: auto; margin-right: auto; opacity: .7; }
.cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================= FOOTER */
.footer { background: #060810; border-top: 1px solid var(--border-subtle); padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; }
.footer-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.footer-logo-mark { width: 26px; height: 26px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; }
.footer-tag { font-size: .82rem; color: rgba(197,198,199,.3); line-height: 1.7; max-width: 200px; }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(197,198,199,.3); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .85rem; color: rgba(197,198,199,.45); transition: color .18s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .78rem; color: rgba(197,198,199,.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(197,198,199,.2); transition: color .18s; }
.footer-legal a:hover { color: rgba(197,198,199,.5); }

/* ============================================= CHECKOUT PAGE */
.checkout-page-body { background: var(--bg-mid); min-height: 100vh; }
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 2rem; padding: 3rem 0 5rem; align-items: start; }
.checkout-panel { background: var(--bg-dark); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); padding: 2rem; }
.checkout-panel-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle); }
.checkout-form-group { margin-bottom: 1.25rem; }
.checkout-label { display: block; font-size: .78rem; font-weight: 600; color: rgba(197,198,199,.6); margin-bottom: .4rem; letter-spacing: .03em; }
.checkout-input { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border-subtle); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .925rem; color: var(--white); background: rgba(11,12,16,.6); transition: border-color .18s; outline: none; -webkit-appearance: none; }
.checkout-input:focus { border-color: var(--teal); }
.checkout-input::placeholder { color: rgba(197,198,199,.25); }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 1.5rem 0; }
.payment-icons { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.payment-icon { background: rgba(197,198,199,.06); border: 1px solid var(--border-subtle); border-radius: var(--r-sm); padding: .3rem .65rem; font-size: .7rem; font-weight: 700; color: rgba(197,198,199,.5); letter-spacing: .04em; }
.secure-note { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(197,198,199,.3); margin-top: 1rem; }
.secure-note svg { width: 14px; height: 14px; fill: none; stroke: rgba(197,198,199,.3); stroke-width: 1.8; stroke-linecap: round; }
.order-items { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.order-item { display: flex; justify-content: space-between; align-items: center; gap: .75rem; font-size: .875rem; }
.order-item-name { color: var(--text-light); line-height: 1.4; flex: 1; }
.order-item-price { font-weight: 600; color: var(--teal); flex-shrink: 0; }
.order-item-remove { background: none; border: none; color: rgba(197,198,199,.3); font-size: .9rem; cursor: pointer; padding: 2px 5px; border-radius: 4px; transition: color .18s; }
.order-item-remove:hover { color: var(--error); }
.order-totals { border-top: 1px solid var(--border-subtle); padding-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.order-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-light); opacity: .7; }
.order-row.total { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); padding-top: .5rem; border-top: 1px solid var(--border-subtle); opacity: 1; }
.gumroad-note { background: rgba(10,132,255,.08); border: 1px solid var(--border-blue); border-radius: var(--r-md); padding: .875rem 1rem; font-size: .82rem; color: rgba(197,198,199,.7); line-height: 1.55; margin-top: 1rem; }
.gumroad-note strong { display: block; font-weight: 600; color: var(--text-light); margin-bottom: .2rem; }

/* ============================================= BESPOKE FORM PAGE */
.form-page-body { background: var(--bg-darkest); min-height: 100vh; }
.form-hero {
  background: linear-gradient(135deg, #CC4B1A 0%, #FF6B35 50%, #FF8C42 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 22px 22px; }
.form-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; position: relative; margin-bottom: .75rem; }
.form-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); position: relative; max-width: 500px; margin: 0 auto; line-height: 1.65; }
.form-wrap { max-width: 680px; margin: 0 auto; padding: 3rem clamp(1.25rem, 5vw, 2.5rem) 5rem; }
.form-card { background: var(--bg-dark); border: 1px solid var(--border-subtle); border-radius: var(--r-xl); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-light); margin-bottom: .5rem; letter-spacing: .02em; opacity: .8; }
.form-label span { color: var(--warn); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--white);
  background: rgba(11,12,16,.5);
  transition: border-color .18s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); background: rgba(11,12,16,.7); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(197,198,199,.25); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 2rem 0; }
.form-submit-wrap { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-top: .5rem; }
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--warn);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--r-lg);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all .2s var(--ease);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.btn-submit:hover { background: #E05528; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.3); }
.form-note { font-size: .78rem; color: rgba(197,198,199,.35); text-align: center; }
.form-success { text-align: center; padding: 3rem 1rem; display: none; }
.form-success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,107,53,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.form-success p { color: var(--text-light); opacity: .75; line-height: 1.7; margin-bottom: 2rem; }

/* ============================================= ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.hidden { display: none !important; }

/* ============================================= RESPONSIVE */
@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-visual { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { gap: 1rem; }
  .bespoke-inner { flex-direction: column; text-align: center; }
  .bespoke-features { justify-content: center; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
