/* G1 Mobile — Tech v3
   Modern tech aesthetic. Navy primary. Sharp sans-serif display.
   Layered on top of site.css.

   What's in here:
   - Space Grotesk (display) + Inter (body) + JetBrains Mono (numbers/code)
   - Navy primary restored, deepened with brighter electric blue accent
   - Mesh gradient + grid pattern backgrounds for tech feel
   - Scroll-triggered fade-up animations
   - Sharp corners on some elements (16px max), generous shadows
   - Phone product photos with gradient floor + spotlight
   - Animated dot grid in hero, subtle floating elements
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Navy with deeper, more modern tones */
  --g1-brand-50:  #EEF2F9;
  --g1-brand-100: #DBE3F1;
  --g1-brand-200: #B3C2DC;
  --g1-brand-300: #7E94B8;
  --g1-brand-400: #4A6391;
  --g1-brand-500: #1E3A6F;
  --g1-brand-600: #0F2A52;
  --g1-brand-700: #0A1F3D;
  --g1-brand-800: #06152B;
  --g1-brand-900: #030914;

  /* Electric blue accent — used for highlights, focus, "live" indicators */
  --g1-accent-100: #E0EBFF;
  --g1-accent-200: #BAD0FF;
  --g1-accent-300: #7AA5FF;
  --g1-accent-400: #4F84F5;
  --g1-accent-500: #2563EB;
  --g1-accent-600: #1D4ED8;
  --g1-accent-700: #1E40AF;

  /* Surfaces — cooler, modern */
  --g1-paper:     #F7F9FC;
  --g1-surface:   #FFFFFF;
  --g1-line:      #E2E7EE;
  --g1-line-soft: #ECF0F5;

  /* Cooler ink scale */
  --g1-ink-900: #0A1224;
  --g1-ink-700: #1F2737;
  --g1-ink-600: #3A4255;
  --g1-ink-500: #5F6878;
  --g1-ink-400: #8B93A3;
  --g1-ink-300: #C1C7D2;
  --g1-ink-200: #E2E5EC;
  --g1-ink-100: #F1F3F8;

  /* Shadows — cooler, multi-layer */
  --g1-shadow-xs:  0 1px 2px rgba(10, 18, 36, 0.05);
  --g1-shadow-sm:  0 2px 6px rgba(10, 18, 36, 0.06), 0 1px 2px rgba(10, 18, 36, 0.04);
  --g1-shadow-md:  0 8px 24px -4px rgba(10, 18, 36, 0.10), 0 4px 8px -2px rgba(10, 18, 36, 0.06);
  --g1-shadow-lg:  0 24px 56px -12px rgba(15, 42, 82, 0.22), 0 8px 24px -4px rgba(15, 42, 82, 0.10);
  --g1-shadow-xl:  0 40px 80px -16px rgba(15, 42, 82, 0.28), 0 16px 32px -8px rgba(15, 42, 82, 0.14);
  --g1-shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.20), 0 8px 32px -4px rgba(37, 99, 235, 0.35);

  /* Display font — tech sans, slightly geometric */
  --g1-font-display: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --g1-font-sans:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --g1-font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Dark band — true dark navy */
  --g1-band-dark:   #0A1224;
  --g1-band-darker: #050912;
}

body {
  background: var(--g1-paper);
  color: var(--g1-ink-900);
  font-family: var(--g1-font-sans);
}

/* -------------------------------------------------- */
/*  Typography — Space Grotesk display, tight & tech   */
/* -------------------------------------------------- */
.h-display, .h-1, .h-2, .h-3 {
  font-family: var(--g1-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-style: normal;
}
.h-display {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.98;
  font-weight: 600;
}
.h-display em {
  font-style: normal;
  color: var(--g1-brand-600);
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.h-display em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: linear-gradient(90deg, var(--g1-accent-300), var(--g1-accent-500));
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
}
.h-1 { font-size: clamp(36px, 4.5vw, 60px); line-height: 1.05; }
.h-2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; }

.overline {
  color: var(--g1-accent-500);
  font-family: var(--g1-font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
}
.overline::before {
  background: var(--g1-accent-500);
  width: 24px;
  height: 1px;
}

a { color: var(--g1-accent-500); }
a:hover { color: var(--g1-accent-600); }

.lead {
  color: var(--g1-ink-600);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 60ch;
}

.tnum, .price, [data-price-display] {
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------- */
/*  Buttons                                            */
/* -------------------------------------------------- */
.btn--primary {
  background: var(--g1-brand-600);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.12));
  pointer-events: none;
}
.btn--primary:hover {
  background: var(--g1-brand-700);
  transform: translateY(-1px);
  box-shadow: var(--g1-shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--g1-brand-600);
  border: 1px solid var(--g1-ink-300);
}
.btn--secondary:hover {
  border-color: var(--g1-brand-600);
  background: var(--g1-brand-50);
}
.btn--invert { background: white; color: var(--g1-brand-700); border: none; }
.btn--invert:hover { transform: translateY(-1px); box-shadow: var(--g1-shadow-md); }
.btn--invert-ghost { border-color: rgba(255,255,255,0.25); color: white; }
.btn--invert-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }

/* -------------------------------------------------- */
/*  Nav                                                */
/* -------------------------------------------------- */
.site-nav {
  background: rgba(247, 249, 252, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--g1-line);
}
.site-nav__brand { font-family: var(--g1-font-display); font-weight: 700; letter-spacing: -0.02em; }

/* -------------------------------------------------- */
/*  HERO — mesh gradient + grid                        */
/* -------------------------------------------------- */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(37, 99, 235, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(15, 42, 82, 0.08), transparent 60%),
    var(--g1-paper);
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 88px 0 128px; }
}

/* Animated dot grid pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 42, 82, 0.08) 1px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
  pointer-events: none;
  animation: g1-grid-drift 60s linear infinite;
}
@keyframes g1-grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}

/* Floating tech blobs in hero */
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: g1-float 18s ease-in-out infinite;
}
@keyframes g1-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 20px) scale(1.08); }
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  gap: 48px;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
}

.hero__meta { margin-bottom: 24px; }
.hero__meta .chip {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--g1-line);
  color: var(--g1-ink-700);
  font-family: var(--g1-font-mono);
  font-size: 12px;
  padding: 8px 14px;
  box-shadow: var(--g1-shadow-xs);
}
.hero__meta .chip__dot {
  background: var(--g1-accent-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  animation: g1-pulse 2s ease-in-out infinite;
}
@keyframes g1-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.10); }
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--g1-ink-600);
  max-width: 56ch;
  margin: 28px 0;
}

.hero__ctas { gap: 12px; }
.hero__trust { gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--g1-line); }
.hero__trust > div { font-size: 13px; color: var(--g1-ink-500); }
.hero__trust strong {
  display: block;
  font-family: var(--g1-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--g1-ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

/* Hero photo card */
.hero__photo {
  position: relative;
  background: var(--g1-surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--g1-shadow-xl);
  border: 1px solid var(--g1-line);
  overflow: hidden;
}
.hero__photo::before { content: none; }
.hero__photo::after { content: none; }
.hero__photo image-slot {
  width: 100%;
  height: clamp(380px, 42vw, 540px);
  display: block;
  position: relative;
  z-index: 1;
}
.hero__photo-meta {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--g1-line-soft);
  position: relative; z-index: 1;
}
.hero__photo-name {
  font-family: var(--g1-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--g1-ink-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__photo-meta-sub {
  font-size: 12px;
  color: var(--g1-ink-500);
  margin-top: 4px;
  font-family: var(--g1-font-mono);
}
.hero__photo-price {
  font-family: var(--g1-font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--g1-brand-600);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__photo-price-sub {
  font-size: 11px;
  color: var(--g1-ink-500);
  text-align: right;
  margin-top: 6px;
  font-family: var(--g1-font-mono);
}

/* Floating live chip on hero photo */
.hero__photo-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--g1-ink-900);
  color: white;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--g1-font-mono);
  box-shadow: var(--g1-shadow-md), 0 0 0 1px rgba(255,255,255,0.05) inset;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero__photo-chip {
    top: auto;
    bottom: 96px;
    left: -16px;
    padding: 10px 16px;
  }
}
.hero__photo-chip::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25);
  animation: g1-pulse-cyan 2s ease-in-out infinite;
}
@keyframes g1-pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.10); }
}

/* -------------------------------------------------- */
/*  Trust strip                                        */
/* -------------------------------------------------- */
.trust-strip {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 20px;
  box-shadow: var(--g1-shadow-sm);
  padding: 32px;
  gap: 32px;
}
.trust-cell__icon {
  background: var(--g1-brand-50);
  color: var(--g1-brand-600);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-cell__icon svg { stroke-width: 1.5; width: 22px; height: 22px; }
.trust-cell__t { font-size: 15px; font-weight: 600; color: var(--g1-ink-900); margin-bottom: 4px; font-family: var(--g1-font-display); letter-spacing: -0.01em; }
.trust-cell__b { font-size: 13.5px; line-height: 1.5; color: var(--g1-ink-500); }

/* -------------------------------------------------- */
/*  Section heads                                      */
/* -------------------------------------------------- */
.sec-head__row { margin-bottom: 40px; }
.sec-head .overline { margin-bottom: 16px; }

/* -------------------------------------------------- */
/*  Phone grid — modern product cards                  */
/* -------------------------------------------------- */
.phone-grid { gap: 24px; }
.phone-card {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 20px;
  box-shadow: var(--g1-shadow-xs);
  padding: 24px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 200ms;
  position: relative;
  overflow: hidden;
}
.phone-card::before {
  /* gradient highlight on hover */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), transparent 50%);
  opacity: 0;
  transition: opacity 320ms;
  pointer-events: none;
}
.phone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--g1-shadow-lg);
  border-color: var(--g1-brand-300);
}
.phone-card:hover::before { opacity: 1; }
.phone-card__photo {
  position: relative;
  background: var(--g1-surface);
  border-radius: 16px;
  padding: 8px;
  aspect-ratio: 1/1.05;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--g1-line-soft);
}
.phone-card__photo::before { content: none; }
.phone-card__photo image-slot {
  width: 100%;
  height: 100%;
  display: block;
  position: relative; z-index: 1;
}
.phone-card__photo .device-svg {
  width: 60%; height: auto;
  color: var(--g1-brand-600);
  filter: drop-shadow(0 12px 20px rgba(15, 42, 82, 0.20));
}
.phone-card__photo-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--g1-ink-900);
  color: white;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--g1-font-mono);
  padding: 5px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.phone-card__photo-tag--success { background: var(--g1-accent-500); }
.phone-card__photo-tag--warn    { background: var(--g1-warn-600); }
.phone-card__brand {
  font-family: var(--g1-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g1-ink-500);
  margin-bottom: 6px;
}
.phone-card__name {
  font-family: var(--g1-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--g1-ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.phone-card__meta { font-size: 13px; color: var(--g1-ink-500); margin-bottom: 16px; }
.phone-card__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--g1-line-soft);
}
.phone-card__price {
  font-family: var(--g1-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--g1-ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.phone-card__price-meta {
  font-size: 11px;
  color: var(--g1-ink-500);
  margin-top: 4px;
  font-family: var(--g1-font-mono);
}
.phone-card__cta {
  font-size: 13px; font-weight: 600;
  color: var(--g1-accent-500);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 200ms;
}
.phone-card:hover .phone-card__cta { gap: 8px; }

/* -------------------------------------------------- */
/*  Country board — dark tech band                     */
/* -------------------------------------------------- */
.section--country {
  background: var(--g1-band-dark) !important;
  color: white;
  position: relative;
  overflow: hidden;
}
.section--country::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(15, 42, 82, 0.4), transparent 60%);
  pointer-events: none;
}
.section--country::after {
  /* grid pattern */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 90%);
  pointer-events: none;
}
.section--country .container { position: relative; z-index: 1; }
.section--country .h-1,
.section--country .h-2 { color: white; }
.section--country .lead { color: rgba(255, 255, 255, 0.65); }
.section--country .overline { color: var(--g1-accent-300); }
.section--country .overline::before { background: var(--g1-accent-300); }

.country-board {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 900px) { .country-board { padding: 48px; } }
.country-board__list { border-right-color: rgba(255,255,255,0.10) !important; }
.country-row {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  font-family: var(--g1-font-sans);
}
.country-row:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.country-row[aria-pressed="true"] {
  background: var(--g1-accent-500);
  color: white;
  border-color: var(--g1-accent-500);
  box-shadow: var(--g1-shadow-glow);
}
.country-row[aria-pressed="true"] .country-row__currency { color: rgba(255,255,255,0.85); }
.country-row__currency { color: rgba(255,255,255,0.5); font-family: var(--g1-font-mono); font-size: 11px; }
.country-row__flag {
  background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
}

.country-board__device {
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.country-board__device-photo {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  width: 96px; height: 120px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.country-board__device-photo image-slot { width: 100%; height: 100%; }
.country-board__device-photo .device-svg { color: rgba(255,255,255,0.9); }
.country-board__device-name {
  color: white;
  font-family: var(--g1-font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.country-board__device-meta { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 6px; }

.country-board__price-block { padding-top: 24px; }
.country-board__price {
  font-family: var(--g1-font-display);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 600;
  color: white;
  line-height: 1;
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
}
.country-board__price-meta {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--g1-font-mono);
}
.country-board__price-meta strong { color: var(--g1-accent-300); font-weight: 600; }
.country-board__rows { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; margin-top: 24px; }
.country-board__row-label {
  font-family: var(--g1-font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g1-accent-300);
  font-weight: 500;
}
.country-board__row-value { color: white; font-size: 14px; margin-top: 4px; }
.country-board__cta .btn--primary {
  background: var(--g1-accent-500);
  color: white;
}
.country-board__cta .btn--primary:hover { background: var(--g1-accent-600); }
.country-board__cta .btn--secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: white;
}
.country-board__cta .btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

/* -------------------------------------------------- */
/*  Why grid — tech cards                              */
/* -------------------------------------------------- */
.why-card {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--g1-shadow-xs);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1-brand-600), var(--g1-accent-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--g1-shadow-md);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card__icon {
  width: 52px; height: 52px;
  background: var(--g1-brand-50);
  color: var(--g1-brand-600);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.why-card__t {
  font-family: var(--g1-font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--g1-ink-900);
  margin-bottom: 10px;
  line-height: 1.2;
}
.why-card__b { color: var(--g1-ink-500); font-size: 14.5px; line-height: 1.55; }
.why-card__num {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--g1-line-soft);
  font-size: 12px;
  color: var(--g1-ink-500);
  font-family: var(--g1-font-mono);
}
.why-card__num strong {
  font-family: var(--g1-font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--g1-brand-600);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

/* -------------------------------------------------- */
/*  Stats band                                         */
/* -------------------------------------------------- */
.stats-band {
  background: transparent;
  border: none;
  border-top: 1px solid var(--g1-line);
  border-bottom: 1px solid var(--g1-line);
  border-radius: 0;
  padding: 48px 0;
  box-shadow: none;
}
.stats-band__value {
  font-family: var(--g1-font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 72px);
  color: var(--g1-ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats-band__value sup {
  color: var(--g1-accent-500);
  font-size: 0.45em;
  top: -0.7em;
}
.stats-band__label { color: var(--g1-ink-900); font-weight: 600; font-size: 14px; margin-top: 12px; }
.stats-band__detail { color: var(--g1-ink-500); font-size: 12px; font-family: var(--g1-font-mono); }

/* -------------------------------------------------- */
/*  How-to — numbered tech cards                       */
/* -------------------------------------------------- */
.howto-card {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: var(--g1-shadow-xs);
}
.howto-card__n {
  font-family: var(--g1-font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--g1-accent-500);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.howto-card__icon {
  width: 48px; height: 48px;
  background: var(--g1-brand-50);
  color: var(--g1-brand-600);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.howto-card__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.howto-card__t {
  font-family: var(--g1-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--g1-ink-900);
  margin-bottom: 10px;
  line-height: 1.2;
}
.howto-card__b { color: var(--g1-ink-500); font-size: 14.5px; line-height: 1.55; }

/* -------------------------------------------------- */
/*  Payments grid                                      */
/* -------------------------------------------------- */
.pay-card {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--g1-shadow-xs);
  transition: transform 240ms, box-shadow 240ms;
}
.pay-card:hover { transform: translateY(-2px); box-shadow: var(--g1-shadow-md); }
.pay-card__logo {
  width: 56px; height: 40px;
  display: inline-flex; align-items: center;
  background: var(--g1-ink-100);
  border-radius: 8px;
  padding: 0 12px;
  margin-bottom: 16px;
}
.pay-card__t {
  font-size: 15px;
  font-weight: 600;
  color: var(--g1-ink-900);
  margin-bottom: 6px;
  font-family: var(--g1-font-display);
  letter-spacing: -0.01em;
}
.pay-card__b { color: var(--g1-ink-500); font-size: 13.5px; line-height: 1.55; margin-bottom: 16px; }
.pay-card__meta {
  font-size: 11px;
  color: var(--g1-ink-400);
  padding-top: 12px;
  border-top: 1px solid var(--g1-line-soft);
  font-family: var(--g1-font-mono);
}

/* -------------------------------------------------- */
/*  Testimonial — fixed layout                         */
/* -------------------------------------------------- */
.quote {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: var(--g1-shadow-sm);
  display: block;
  grid-template-columns: unset !important;
}
@media (min-width: 720px) {
  .quote {
    padding: 64px;
    display: block !important;
    grid-template-columns: unset !important;
  }
}
.quote::before {
  content: '"';
  position: absolute;
  top: 24px; left: 32px;
  font-family: var(--g1-font-display);
  font-size: 120px;
  line-height: 0.8;
  color: var(--g1-brand-100);
  pointer-events: none;
}
.quote__text {
  font-family: var(--g1-font-display);
  font-weight: 500;
  font-style: normal;
  color: var(--g1-ink-900);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  max-width: none;
  margin-bottom: 32px;
}
.quote > div:last-child {
  display: flex !important;
  gap: 16px;
  align-items: center;
}
.quote__avatar {
  background: var(--g1-brand-100);
  color: var(--g1-brand-700);
  font-weight: 600;
  font-family: var(--g1-font-display);
}
.quote__row { display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-weight: 600; color: var(--g1-ink-900); font-size: 15px; font-family: var(--g1-font-display); }
.quote__city { color: var(--g1-ink-500); font-size: 13px; }
.quote__outcome {
  color: var(--g1-accent-600);
  font-size: 12px;
  font-weight: 500;
  background: var(--g1-accent-100);
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-family: var(--g1-font-mono);
}

.mini-quote {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--g1-shadow-xs);
  transition: transform 240ms, box-shadow 240ms;
}
.mini-quote:hover { transform: translateY(-2px); box-shadow: var(--g1-shadow-md); }
.mini-quote__text { color: var(--g1-ink-700); font-size: 14px; line-height: 1.55; font-family: var(--g1-font-display); }

/* -------------------------------------------------- */
/*  CTA band                                           */
/* -------------------------------------------------- */
.cta-band {
  background: var(--g1-band-dark) !important;
  color: white;
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, 0.30), transparent 70%),
    radial-gradient(ellipse 30% 60% at 100% 50%, rgba(37, 99, 235, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--g1-font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  color: white;
  font-weight: 600;
  margin: 16px 0;
  letter-spacing: -0.03em;
}
.cta-band p { color: rgba(255,255,255,0.7); max-width: 56ch; margin: 0 auto; }
.cta-band .overline { color: var(--g1-accent-300); }
.cta-band .overline::before { background: var(--g1-accent-300); }

/* -------------------------------------------------- */
/*  Footer                                             */
/* -------------------------------------------------- */
.site-footer { background: var(--g1-band-darker) !important; }
.site-footer__brand img { filter: brightness(0) invert(1) opacity(0.9); }

/* -------------------------------------------------- */
/*  Image-slot styling                                 */
/* -------------------------------------------------- */
image-slot { --slot-bg: transparent; --slot-empty-color: var(--g1-ink-400); }

/* -------------------------------------------------- */
/*  Page-headers                                       */
/* -------------------------------------------------- */
.page-header {
  background: var(--g1-paper);
  border-bottom-color: var(--g1-line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 42, 82, 0.06) 1px, transparent 1.5px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 80% 20%, black, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 60% at 80% 20%, black, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header__meta {
  background: var(--g1-surface);
  border-radius: 16px;
  border: 1px solid var(--g1-line);
  padding: 24px;
  box-shadow: var(--g1-shadow-xs);
}

/* -------------------------------------------------- */
/*  Scroll-triggered fade-in                           */
/* -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal--in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------- */
/*  Toolbar simplification (productos)                 */
/* -------------------------------------------------- */
.toolbar { font-family: var(--g1-font-sans); }
.toolbar__label {
  font-family: var(--g1-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--g1-ink-500);
}
.filter-pill {
  font-family: var(--g1-font-sans);
  border-radius: 9999px;
  transition: all 180ms;
}
.filter-pill[aria-pressed="true"] {
  background: var(--g1-brand-600);
  color: white;
  border-color: var(--g1-brand-600);
}


/* -------------------------------------------------- */
/*  PDP — product page with real photos                */
/* -------------------------------------------------- */
.pdp__gallery {
  position: static !important;
  top: auto !important;
}
@media (min-width: 980px) {
  .pdp__gallery {
    position: sticky !important;
    top: 88px !important;
  }
}
.pdp__hero {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  border-radius: 24px;
  padding: 16px;
  position: relative;
  box-shadow: var(--g1-shadow-md);
  min-height: 0;
  overflow: hidden;
}
.pdp__hero::before { content: none; }
.pdp__hero image-slot {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: clamp(440px, 56vw, 680px) !important;
}
.pdp__hero-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--g1-brand-700);
  border: 1px solid var(--g1-line);
  font-family: var(--g1-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.pdp__thumb {
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(37, 99, 235, 0.06), transparent 70%),
    var(--g1-brand-50);
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms, transform 200ms;
}
.pdp__thumb:hover { transform: translateY(-2px); }
.pdp__thumb[aria-pressed="true"] {
  border-color: var(--g1-accent-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pdp__name {
  font-family: var(--g1-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 16px 0 12px;
  color: var(--g1-ink-900);
}
.pdp__brand {
  font-family: var(--g1-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--g1-ink-500);
}
.pdp__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--g1-ink-600);
  margin: 0 0 32px;
  max-width: 56ch;
}
.pdp__price {
  font-family: var(--g1-font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--g1-ink-900);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pdp__price-strike {
  font-family: var(--g1-font-display);
  font-size: 20px;
  text-decoration: line-through;
  color: var(--g1-ink-400);
}
.pdp__price-meta { font-family: var(--g1-font-mono); font-size: 12px; }
.pdp__swatch {
  font-family: var(--g1-font-sans);
  border-radius: 9999px;
  transition: all 180ms;
}
.pdp__swatch[aria-pressed="true"] {
  background: var(--g1-brand-600);
  color: white;
  border-color: var(--g1-brand-600);
}
.specs__row dt {
  font-family: var(--g1-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g1-ink-500);
}
.specs__row dd {
  font-family: var(--g1-font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--g1-ink-900);
}
.timeline__year { font-family: var(--g1-font-mono); color: var(--g1-accent-500); }
.timeline__t { font-family: var(--g1-font-display); font-weight: 600; letter-spacing: -0.01em; }
.story-card__big {
  font-family: var(--g1-font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}


/* -------------------------------------------------- */
/*  Blog post cards — photo background                 */
/* -------------------------------------------------- */
.post-card__media--photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  border: 1px solid var(--g1-line);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms;
  position: relative;
}
.post-card__media--photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 18, 36, 0.15));
  pointer-events: none;
}
.post-card:hover .post-card__media--photo {
  transform: translateY(-4px);
  box-shadow: var(--g1-shadow-lg);
}
.post-card__t {
  font-family: var(--g1-font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--g1-ink-900);
  line-height: 1.3;
}
.post-card__b {
  color: var(--g1-ink-500);
  font-size: 14px;
  line-height: 1.55;
}
.chip--surface {
  background: var(--g1-surface);
  border: 1px solid var(--g1-line);
  color: var(--g1-ink-700);
  font-family: var(--g1-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.blog-feature__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--g1-line);
}
.blog-feature__t {
  font-family: var(--g1-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 16px 0;
}
.blog-feature__b {
  color: var(--g1-ink-600);
  font-size: 16px;
  line-height: 1.6;
}
.blog-feature__meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px;
  font-family: var(--g1-font-mono);
  color: var(--g1-ink-500);
}
.blog-feature__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--g1-accent-500);
  font-weight: 600;
  font-size: 15px;
}
.blog-feature__cta:hover { gap: 10px; transition: gap 200ms; }
