/* ═══════════════════════════════════════════════════════════
   [STUDIO_NAME] — Company Website
   Theme: Dark editorial agency
   Base: #0D0D0D near-black  |  Accent: #C6F135 electric lime
   Type: Space Grotesk (display) + Space Mono (labels/code)
═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap");

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg: #0d0d0d;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-4: #1c1c1c;
  --surface: #222222;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);

  --accent: #c6f135; /* electric lime — the signature */
  --accent-dim: #a8d020;
  --accent-10: rgba(198, 241, 53, 0.1);
  --accent-20: rgba(198, 241, 53, 0.2);

  --text-1: #f0ede8; /* warm white */
  --text-2: #999999;
  --text-3: #666666;
  --text-inv: #0d0d0d;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 36px;
  --r-pill: 999px;

  --sh-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --sh-accent: 0 8px 32px rgba(198, 241, 53, 0.2);

  --font-sans: "Space Grotesk", -apple-system, sans-serif;
  --font-mono: "Space Mono", monospace;
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* hidden — replaced by custom cursor on desktop */
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
button {
  font-family: var(--font-sans);
  cursor: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── GRAIN OVERLAY ───────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease,
    width 0.2s,
    height 0.2s,
    border-color 0.2s,
    opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  z-index: 10001;
  pointer-events: none;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.06s ease;
}
.cursor.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
  background: var(--accent-10);
}
@media (max-width: 768px) {
  .cursor,
  .cursor-dot {
    display: none;
  }
  body {
    cursor: auto;
  }
  button {
    cursor: pointer;
  }
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-word {
  display: inline-block;
  overflow: hidden;
}
.reveal-word span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-word.visible span {
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes belt-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes belt-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;

  margin-right: auto; /* forces it to stick left in flex navbar layouts */
}

.logo-mark {
  width: 200px;
  height: 100px;
  object-fit: contain;
  display: block;
}

/* Wordmark */
.logo-name {
  height: 128px;
  width: auto;
  object-fit: contain;
  transform: translateX(-28px);
}

.footer-logo-name {
  height: 100px;
  width: auto;
  object-fit: contain;
  transform: translateX(-28px);
}

/* safety */
.logo img {
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.nav-links a:hover {
  color: var(--text-1);
}
.nav-links a:hover::after {
  right: 0;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--text-inv);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 20px 32px 28px;
}
.mobile-menu.open {
  display: flex;
}
.mm-item {
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mm-item:hover {
  color: var(--accent);
}
.mm-cta {
  margin-top: 16px;
  color: var(--accent) !important;
  border: 1px solid var(--accent-20);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

/* Grid lines background */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gl {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.04) 20%,
    rgba(255, 255, 255, 0.04) 80%,
    transparent
  );
}
.gl-1 {
  left: 20%;
}
.gl-2 {
  left: 40%;
}
.gl-3 {
  left: 60%;
}
.gl-4 {
  left: 80%;
}

/* Belts */
.belt {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.belt-top {
  margin-top: 0;
}
.belt-track {
  display: flex;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: belt-fwd 28s linear infinite;
}
.belt-reverse {
  animation: belt-rev 28s linear infinite;
}
.belt-track span {
  padding: 0 24px;
}
.belt-dot {
  color: var(--accent) !important;
}
.sol p,
.ps p,
.pn-text p {
  line-height: 1.8; /* +0.1 from 1.7 */
  letter-spacing: 0.01em;
}
/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-line-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}

/* Hero title */
.hero-title {
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ht-line {
  display: block;
  overflow: hidden;
}
.ht-line > * {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ht-line.visible > * {
  transform: translateY(0);
}
.ht-line.d1 > * {
  transition-delay: 0.05s;
}
.ht-line.d2 > * {
  transition-delay: 0.15s;
}
.ht-line.d3 > * {
  transition-delay: 0.25s;
}
.ht-accent {
  color: var(--accent);
}

/* Hero bottom */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 100%;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-top: 0;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-inv);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: var(--sh-accent);
}
.cta-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.cta-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-text:hover {
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   STATEMENT
════════════════════════════════════════════════════════════ */
.statement {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.statement-text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
  letter-spacing: -0.01em;
}
.s-accent {
  color: var(--text-1);
  font-weight: 600;
}

.statement-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sstat {
  text-align: center;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 280px;
  flex-shrink: 0;
}
.sstat-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
/* Text-based stat scaled down to fit the same fixed-height row as the numeric stats */
.sstat-num.sstat-text-val {
  font-size: 32px;
  letter-spacing: -0.02em;
}
.sstat-label {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  text-align: center;
  max-width: 220px;
}
.sstat-rule {
  width: 1px;
  align-self: stretch;
  background: var(--border-2);
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
════════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 64px;
  text-align: left;
}
.sh-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
}
.sh-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 16px;
  text-align: left;
}
.sh-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 550px;
  text-align: left;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 48px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  border-radius: var(--r-md);
}
.service-row:first-child {
  border-top: 1px solid var(--border);
}
.service-row:hover {
  background: var(--bg-3);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.sr-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
}
.sr-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.sr-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}
.sr-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.sr-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-10);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--accent-20);
}
/* CHANGED: sr-icon now renders SVG instead of emoji */
.sr-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.9;
}
.sr-icon svg {
  width: 28px;
  height: 28px;
}

/* ════════════════════════════════════════════════════════════
   WORK
════════════════════════════════════════════════════════════ */
.work {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

/* CHANGED: 3-card layout — featured spans full width, two beneath side by side */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-item {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 340px;
  padding: 36px;
  transition:
    transform 0.3s,
    border-color 0.3s;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
}
.work-item:hover {
  z-index: 2;
  border-color: var(--accent-20);
}
.work-item:hover .wi-bg {
  transform: scale(1.04);
}
.work-item:hover .wi-arrow {
  transform: rotate(0deg);
  opacity: 1;
}

.wi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Featured "flagship" card — deep forest green, matches reference screenshot */
.wi-bg-brand {
  background: radial-gradient(
    120% 140% at 0% 0%,
    #152018 0%,
    #0c1410 60%,
    #0a100c 100%
  );
}
/* Client project cards — deep navy, matches reference screenshot */
.wi-bg-purple {
  background: radial-gradient(
    120% 140% at 0% 0%,
    #131c33 0%,
    #0c1424 60%,
    #0a101c 100%
  );
}
.wi-bg-teal {
  background: radial-gradient(
    120% 140% at 0% 0%,
    #131c33 0%,
    #0c1424 60%,
    #0a101c 100%
  );
}
.wi-bg-dark {
  background: radial-gradient(
    120% 140% at 0% 0%,
    #131c33 0%,
    #0c1424 60%,
    #0a101c 100%
  );
  border: 1px solid var(--border-2);
}

.wi-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.wi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wi-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #ecfdf3;
  background: #2f9e6e;
  border: 1px solid #2f9e6e;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* Client project cards use a blue badge to match the reference screenshot */
.work-item:not(.work-featured) .wi-badge {
  color: #eaf1ff;
  background: #3b6fe0;
  border-color: #3b6fe0;
}
.wi-arrow {
  font-size: 22px;
  color: var(--text-1);
  transform: rotate(45deg);
  opacity: 0.7;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* CHANGED: meta row for stack/deliverables/timeline info */
.wi-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.wi-meta-compact {
  gap: 32px;
}
.wi-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wi-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4ade80;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.work-item:not(.work-featured) .wi-meta-label {
  color: #6fa8ff;
}
.wi-meta-val {
  font-size: 13px;
  color: var(--text-1);
  font-weight: 600;
}
.wi-meta-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4ade80 !important;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.wi-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: auto;
}

/* CHANGED: icon wrap replaces emoji */
.wi-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: #2f9e6e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ecfdf3;
}
.work-item:not(.work-featured) .wi-icon-wrap {
  background: #3b6fe0;
  color: #eaf1ff;
}
.wi-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.wi-bottom h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.wi-bottom p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 14px;
}
.wi-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wi-link {
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
  transition: opacity 0.2s;
}
.work-item:not(.work-featured) .wi-link {
  color: #6fa8ff;
}
.wi-link:hover {
  opacity: 0.7;
}
.work-featured {
  grid-column: span 2;
  min-height: 300px;
}

/* ════════════════════════════════════════════════════════════
   TRANSFORM (before/after)
════════════════════════════════════════════════════════════ */
.transform {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

/* CHANGED: story hook paragraph */
.transform-story {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.transform-story p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
  letter-spacing: -0.01em;
}

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

.tg-col {
  padding: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.tg-col:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
  transform: translateY(-4px);
}
.tg-col.tg-after {
  background: var(--bg-4);
  border-color: var(--accent-20);
}
.tg-col.tg-after:hover {
  border-color: var(--accent);
}

.tg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.tg-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
}
.tg-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tg-indicator.bad {
  background: var(--text-3);
}
.tg-indicator.good {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.tg-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tg-col ul li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.tg-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--text-3);
}
.tg-col.tg-after ul li {
  color: var(--text-1);
}
.tg-col.tg-after ul li::before {
  background: var(--accent);
  width: 8px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testi-card {
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.testi-card:hover {
  border-color: var(--accent-20);
  transform: translateY(-3px);
}
.testi-quote-mark {
  color: var(--accent);
  opacity: 0.8;
}
.testi-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-1);
  font-weight: 400;
  flex: 1;
  letter-spacing: -0.01em;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-2);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2px;
}
.testi-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════
   SOLUTIONS
════════════════════════════════════════════════════════════ */
.solutions {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sol {
  padding: 36px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  transition:
    background 0.25s,
    border-color 0.25s;
}
.sol:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
}

/* CHANGED: sol-icon now SVG styled to match brand */
.sol-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background 0.2s;
}
.sol:hover .sol-icon {
  background: var(--accent-20);
}
.sol-icon svg {
  width: 20px;
  height: 20px;
}

.sol h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}
.sol p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ════════════════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════════════════ */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.ps {
  padding: 36px 28px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  position: relative;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.ps:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
  transform: translateY(-4px);
}
.ps:last-child {
  background: var(--bg-4);
  border-color: var(--accent-20);
}

.ps-day {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
}
.ps-line {
  width: 32px;
  height: 2px;
  background: var(--border-2);
  margin-bottom: 20px;
}
.ps-line.active {
  background: var(--accent);
}
.ps h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
}
.ps p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
}

/* CHANGED — process-notes: replaces the two centered italic
   .transform-story paragraphs that previously sat under the
   Process heading with no visual structure. Each note is now a
   bordered card with its own icon, a bold lead-in question/label,
   and supporting copy — matching the visual language of the rest
   of the page (icon + heading + paragraph, same pattern as .sol)
   instead of floating italic text with nothing to anchor it. */
.process-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pn-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.pn-item:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
  transform: translateY(-3px);
}
.pn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.pn-icon svg {
  width: 19px;
  height: 19px;
}
.pn-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pn-text p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ════════════════════════════════════════════════════════════
   FAQ / OBJECTION HANDLER
════════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-2);
  transition:
    transform 0.3s ease,
    color 0.2s;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-q[aria-expanded="true"] {
  color: var(--accent);
}
.faq-a {
  display: none;
  padding: 0 0 22px;
}
.faq-a.open {
  display: block;
}
.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 680px;
}

/* ════════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

/* CHANGED: guarantee banner */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent-10);
  border: 1px solid var(--accent-20);
  border-radius: var(--r-xl);
  padding: 20px 28px;
  margin-bottom: 40px;
}
.gb-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.gb-icon svg {
  width: 22px;
  height: 22px;
}
.gb-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-1);
}
.gb-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* NEW — "See how this works ↑" link inside the guarantee banner.
   Sits inline at the end of the paragraph, with an up-arrow icon
   since it scrolls back up to the Process section above. */
.gb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.gb-link:hover {
  opacity: 0.75;
}
.gb-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-20);
}
.price-featured {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.02);
}
.price-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dim);
  color: var(--text-inv);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-featured .pc-badge {
  background: var(--text-inv);
}

.pc-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-1);
  margin-bottom: 6px;
}
.price-featured .pc-name {
  color: rgba(13, 13, 13, 0.7);
}
.pc-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 24px;
}
.price-featured .pc-desc {
  color: rgba(13, 13, 13, 0.7);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}
.pc-dollar {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.pc-amount {
  /* CHANGED: font-size trimmed slightly (was 56px) so the wider
     "1,499" string doesn't crowd the card or wrap awkwardly next
     to the $ sign and "one-time"/"setup" label at narrower widths */
  font-size: 48px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.pc-period {
  font-size: 14px;
  color: var(--text-2);
  margin-left: 4px;
}
.price-featured .pc-dollar {
  color: var(--text-inv);
}
.price-featured .pc-amount {
  color: var(--text-inv);
}
.price-featured .pc-period {
  color: rgba(13, 13, 13, 0.6);
}

.pc-then {
  font-size: 14px;
  color: var(--text-1);
  margin-bottom: 28px;
}
.pc-then strong {
  color: var(--accent);
}
.price-featured .pc-then {
  color: rgba(13, 13, 13, 0.7);
}
.price-featured .pc-then strong {
  color: var(--text-inv);
}

.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pc-list li {
  font-size: 14px;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-list li::before {
  content: "—";
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}
.price-featured .pc-list li {
  color: rgba(13, 13, 13, 0.85);
}
.price-featured .pc-list li::before {
  color: rgba(13, 13, 13, 0.5);
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.15s,
    background 0.2s,
    border-color 0.2s;
}
.pc-btn.outline {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--text-1);
  background: transparent;
}
.pc-btn.outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pc-btn.solid {
  background: var(--text-inv);
  color: var(--accent);
}
.pc-btn.solid:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.pricing-foot {
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}
.pricing-foot a {
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════════════ */
.team {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tm {
  padding: 36px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  transition:
    background 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tm:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
}

.tm-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--av-a), var(--av-b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
}
.tm-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}
.tm-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tm-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 16px;
}
.tm-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
}
.tm-link:hover {
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--text-1);
}
.contact-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 36px;
}

/* Social buttons */
.social-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition:
    transform 0.15s,
    opacity 0.2s;
}
.sb-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.sb-wa {
  background: #25d366;
  color: #fff;
}
.sb-ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
}
.sb-fb {
  background: #1877f2;
  color: #fff;
}

.contact-email {
  font-size: 14px;
  color: var(--text-2);
}
.contact-email a {
  color: var(--accent);
}

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 36px;
}
.cf-group {
  margin-bottom: 18px;
}
.cf-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.2s;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--text-2);
}
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--accent);
}
.cf-group textarea {
  resize: none;
}
.cf-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text-inv);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-bottom: 10px;
}
.cf-submit:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.cf-note {
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
  font-family: var(--font-mono);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ft-brand {
  flex: 1;
  min-width: 200px;
}
.ft-brand .logo {
  margin-bottom: 14px;
}
.ft-tagline {
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
  transform: translateY(-40px);
}

.ft-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.ftl-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ftl-head {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ftl-col a {
  font-size: 14px;
  color: var(--text-1);
  transition: color 0.2s;
}
.ftl-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-list .service-row {
    grid-template-columns: 40px 1fr;
  }
  .sr-tags,
  .sr-icon {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-featured {
    grid-column: span 1;
  }
  .transform-grid {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-notes {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-featured {
    transform: none;
    order: -1;
  }
  .price-featured:hover {
    transform: translateY(-4px);
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .sstat {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .statement-stats {
    flex-direction: column;
    gap: 36px;
  }
  .sstat {
    width: 100%;
    padding: 0 20px;
  }
  .sstat-rule {
    display: none;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .ft-links {
    flex-direction: column;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .guarantee-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .gb-link {
    margin-left: 0;
  }
  .transform-story {
    text-align: left;
  }
  .pn-item {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero-title {
    font-size: clamp(40px, 11vw, 64px);
  }
  .hero-body {
    padding: 40px 20px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }
  .wi-meta-row {
    flex-direction: column;
    gap: 10px;
  }
  .pn-item {
    flex-direction: column;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sb-li {
  background: #0a66c2;
  color: #fff;
}

.sb-li:hover {
  background: #0856a3;
}

.sb-yt {
  background: #ff0000;
  color: #fff;
}

.sb-yt:hover {
  background: #cc0000;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Remove only for mouse users: */
:focus:not(:focus-visible) {
  outline: none;
}

.cf-group input:focus-visible,
.cf-group textarea:focus-visible {
  border-color: var(--accent);
  outline: none; /* border handles it */
  box-shadow: 0 0 0 3px var(--accent-10);
}

/* ═══════════════════════════════════════════════════════════
   CURRENCY SWITCHER WIDGET
   Append this block to style.css
═══════════════════════════════════════════════════════════ */

.currency-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  font-family: var(--font-sans);
}

.cw-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 18px 0 14px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-card);
  color: var(--text-1);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.cw-trigger:hover {
  background: var(--bg-4);
  border-color: var(--accent-20);
  transform: translateY(-2px);
}
.cw-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cw-flag {
  font-size: 22px;
  line-height: 1;
}
.cw-code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-1);
}

/* Dropdown panel */
.cw-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 240px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.currency-widget.open .cw-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cw-panel-head {
  padding: 14px 16px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.cw-list {
  list-style: none;
  padding: 6px;
  margin: 0;
}
.cw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13.5px;
  color: var(--text-1);
}
.cw-item:hover {
  background: var(--bg-4);
}
.cw-item.active {
  background: var(--accent-10);
  color: var(--accent);
}
.cw-item-flag {
  font-size: 17px;
  flex-shrink: 0;
}
.cw-item-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cw-item-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-2);
}
.cw-item.active .cw-item-code {
  color: var(--accent);
}

.cw-panel-foot {
  padding: 10px 16px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ── PRICING CARD SPACING FIX ──────────────────────────────────
   The Launch plan is one-time only, so its markup has no .pc-then
   line ("then $99/month") — Growth and Partner do. .pc-then carries
   its own margin-bottom: 28px in the base CSS, which is what visually
   pushes .pc-list down on those two cards. Launch's .pc-price only
   has margin-bottom: 6px and nothing fills the gap, so its feature
   list starts much closer to the price than on the other two cards.
   This is unrelated to the currency widget — it's the original
   markup difference between a one-time plan and recurring plans.
   Fix: give .pc-price the same total bottom space .pc-then leaves
   on the cards that have it, but only on cards that don't have a
   .pc-then sibling, so Growth/Partner are untouched. */
.price-card:not(:has(.pc-then)) .pc-price {
  margin-bottom: 34px; /* 6px (existing) + 28px (.pc-then's own margin) */
}

@media (max-width: 480px) {
  .currency-widget {
    bottom: 18px;
    right: 18px;
  }
  .cw-trigger {
    height: 46px;
    padding: 0 14px 0 12px;
  }
  .cw-panel {
    width: 220px;
    bottom: 56px;
  }
}
