/* ============================================
   Gymbell — landing
   ============================================ */

:root {
  /* Default palette — overridden by Tweaks */
  --bg: #0B0B0E;
  --bg-2: #131318;
  --bg-3: #1B1B22;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #F4F3EE;
  --text-dim: #8C8B83;
  --text-faint: #5A5A55;
  --accent: #DCFF50;
  --accent-ink: #0B0B0E;

  --display: "Bricolage Grotesque", "Geist", system-ui, sans-serif;
  --sans: "Geist", "Inter Tight", system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;

  --pad: clamp(24px, 4vw, 80px);
  --max: 1440px;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================
   Typography utilities
   ============================================ */

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--text-faint);
}

.h-display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-variation-settings: "wdth" 100;
}
.h-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.tag-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* ============================================
   Shell / layout
   ============================================ */

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================
   Top nav
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 640px; }

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 144px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin: 18px 0 28px;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.hero p.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  transition: background 0.15s;
}
.btn-ghost:hover { background: var(--bg-2); }

.hero-trust {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-item .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* hero phone */
.hero-phone-wrap {
  position: relative;
  display: grid;
  justify-items: center;
}
.hero-phone-wrap::before {
  content: "";
  position: absolute;
  inset: -8% -8% -4% -8%;
  background: radial-gradient(60% 60% at 50% 50%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-phone-wrap .phone {
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-phone-wrap .phone { transform: none; margin: 0 auto; }
}

/* ============================================
   Phone frame
   ============================================ */

.phone {
  --w: 280px;
  width: var(--w);
  aspect-ratio: 9 / 19.5;
  background: #1c1c20;
  border-radius: 44px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.4);
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
  pointer-events: none;
}
.phone image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.phone--lg { --w: 340px; }
.phone--xl { --w: 380px; }

/* ============================================
   Marquee
   ============================================ */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text-dim);
  font-weight: 500;
}
.marquee-track span em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
}
.marquee-track .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--text-faint);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Section header
   ============================================ */

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 4vw, 64px);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-head .meta .num {
  color: var(--accent);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 84px);
  letter-spacing: -0.035em;
  line-height: 0.94;
  max-width: 14ch;
}
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

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

/* ============================================
   Feature rows
   ============================================ */

.features {
  display: grid;
  gap: clamp(80px, 10vw, 140px);
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.feature:nth-child(even) .feature-visual { order: -1; }

.feature-copy h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 18px 0 20px;
}
.feature-copy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.feature-copy p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 44ch;
}

.feature-bullets {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.feature-bullets li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.feature-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 99px;
  flex: 0 0 auto;
  transform: translateY(-2px);
}

.feature-visual {
  display: grid;
  justify-items: center;
  position: relative;
  padding: clamp(24px, 3vw, 48px);
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 10% 0;
  background:
    radial-gradient(50% 50% at 50% 50%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.feature-visual .phone {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-visual { order: 0; }
}

/* ============================================
   Templates section
   ============================================ */

.templates-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.templates-copy h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 20px;
}
.templates-copy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.templates-copy p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 50ch;
}
.template-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  background: var(--bg-2);
}
.chip.accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

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

/* ============================================
   Watch section
   ============================================ */

.watch-section {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.watch-visual {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}
.watch-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 50% at 50% 50%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.watch {
  --w: 200px;
  position: relative;
  width: var(--w);
  aspect-ratio: 41 / 50;
  background: #1c1c20;
  border-radius: 42px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.watch::before, .watch::after {
  content: "";
  position: absolute;
  right: -3px;
  width: 5px;
  height: 22px;
  border-radius: 2px;
  background: #2a2a30;
}
.watch::before { top: 28%; }
.watch::after { top: 50%; height: 36px; }
.watch-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
}
.watch image-slot { width: 100%; height: 100%; display: block; }
.watch:nth-child(2) { transform: translateY(28px) rotate(3deg); }
.watch:nth-child(1) { transform: rotate(-3deg); }

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

.watch-copy h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 20px;
}
.watch-copy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.watch-copy p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 44ch;
}
.watch-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.watch-feature {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.watch-feature .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.watch-feature .val {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   Pricing
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-card.featured {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.price-card.featured .price-features li::before { background: var(--accent-ink); }
.price-card.featured .price-tag { color: var(--accent-ink); }
.price-card.featured .price-sub { color: color-mix(in oklab, var(--accent-ink) 70%, transparent); }
.price-card.featured .price-cta {
  background: var(--accent-ink);
  color: var(--accent);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11,11,14,0.16);
  color: var(--accent-ink);
}
.price-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.price-card.featured .price-name { color: color-mix(in oklab, var(--accent-ink) 70%, transparent); }
.price-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.price-tag .unit {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-left: 2px;
}
.price-card.featured .price-tag .unit { color: color-mix(in oklab, var(--accent-ink) 65%, transparent); }
.price-sub {
  font-size: 14px;
  color: var(--text-dim);
}
.price-features {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.price-features li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
}
.price-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
  transform: translateY(-2px);
}
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s;
}
.price-cta:hover { transform: translateY(-1px); }

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-tag { font-size: 48px; }
}

/* ============================================
   Privacy section
   ============================================ */

.privacy {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.privacy .lock {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  margin-bottom: 28px;
}
.privacy .lock svg { width: 22px; height: 22px; color: var(--accent); }
.privacy h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.privacy h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.privacy p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto;
}
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
  margin-top: 48px;
}
.privacy-meta .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.privacy-meta .item .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.privacy-meta .item .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 100%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 144px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  position: relative;
  margin-bottom: 24px;
}
.final-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.final-cta p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 48ch;
  margin: 0 auto 36px;
  position: relative;
}
.final-cta .btn-primary { position: relative; }

/* ============================================
   Footer
   ============================================ */

footer {
  padding: 48px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  gap: 32px;
}
.foot-mark {
  font-family: var(--display);
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
}
.foot-mark em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.foot-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: 200px;
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 28px;
}
.foot-links a { color: var(--text-dim); transition: color 0.15s; }
.foot-links a:hover { color: var(--text); }

/* ============================================
   FAQ / Contact
   ============================================ */

.faq-section .section-head { margin-bottom: clamp(32px, 5vw, 56px); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq:nth-child(odd) { border-right: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-2); }
.faq-q {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.2;
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 1px;
}
.faq-icon::before {
  top: 50%; left: 5px; right: 5px; height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 5px; bottom: 5px; left: 50%; width: 1.5px;
  transform: translateX(-50%);
  transition: transform 0.2s;
}
.faq[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq[open] .faq-icon::before,
.faq[open] .faq-icon::after { background: var(--accent-ink); }
.faq[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-a {
  padding: 0 28px 28px;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 60ch;
}
.faq-a a {
  color: var(--text);
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.15s;
}
.faq-a a:hover { border-color: var(--accent); }

@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq:nth-child(odd) { border-right: none; }
}

.contact-card {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-email {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 6px;
}
.contact-email a {
  border-bottom: 2px solid var(--accent);
  transition: opacity 0.15s;
}
.contact-email a:hover { opacity: 0.85; }
.contact-sub {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 52ch;
}

/* ============================================
   Expanded footer
   ============================================ */

.foot-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  gap: 32px;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 16px;
}
.foot-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.foot-col li a {
  color: var(--text);
  font-size: 14.5px;
  transition: color 0.15s;
}
.foot-col li a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  gap: 24px;
  flex-wrap: wrap;
}
.foot-bot span { max-width: 48ch; }
image-slot {
  --is-placeholder-bg: linear-gradient(135deg, #1a1a20 0%, #0e0e12 100%);
  --is-placeholder-color: #5A5A55;
  --is-placeholder-font: var(--mono);
}


/* Deploy build: image-slot tags became plain <img class="slot-img"> */
.phone .slot-img,
.watch .slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}
