/** Shopify CDN: Minification failed

Line 2055:0 Unexpected "@keyframes"
Line 2056:2 Unexpected "0%"
Line 2057:2 Unexpected "50%"

**/
/* Gravity Fishing — Offshore marine design system */

:root {
  --gf-deep: #080b10;
  --gf-ocean: #0f1520;
  --gf-midnight: #161d2a;
  --gf-red: #e31e24;
  --gf-red-dim: #b81820;
  --gf-gold: #c9a84c;
  --gf-gold-light: #e8c547;
  --gf-teal: #e31e24;
  --gf-teal-dim: #b81820;
  --gf-foam: #f5f5f5;
  --gf-sand: #e8edf4;
  --gf-light: #f7f9fc;
  --gf-surface: #ffffff;
  --gf-ink: #0a1628;
  --gf-ink-muted: rgba(10, 22, 40, 0.65);
  --gf-border-light: rgba(10, 22, 40, 0.1);
  --gf-copper: #c9a84c;
  --gf-signal: #e8c547;
  --gf-white: #ffffff;
  --gf-muted: rgba(10, 22, 40, 0.62);
  --gf-border: rgba(201, 168, 76, 0.22);
  --gf-glow: rgba(227, 30, 36, 0.42);
  --gf-shadow-sm: 0 4px 24px rgba(10, 22, 40, 0.08);
  --gf-shadow-md: 0 12px 48px rgba(10, 22, 40, 0.12);
  --gf-font-display: var(--font-heading--family, 'Oswald', sans-serif);
  --gf-font-body: var(--font-body--family, 'Barlow', sans-serif);
  --gf-radius: 2px;
  --gf-radius-lg: 8px;
  --gf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-section {
  position: relative;
  overflow: clip;
}

/* Light page shell for GF storefront pages */
body:has(.gf-section) {
  background: var(--gf-light);
  color: var(--gf-ink);
}

body:has(.gf-hero--poster),
body:has(.gf-pdp-hero) {
  background: var(--gf-ocean);
}

.gf-reveal {
  opacity: 1;
  transform: none;
}

.gf-container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

.gf-container--wide {
  width: min(1400px, calc(100% - 3rem));
  margin-inline: auto;
}

.gf-eyebrow {
  font-family: var(--gf-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gf-red);
  margin: 0 0 1rem;
}

.gf-heading {
  font-family: var(--gf-font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.gf-heading--xl {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.gf-heading--lg {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.gf-heading--md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.gf-lead {
  font-family: var(--gf-font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--gf-ink-muted);
  margin: 0;
  max-width: 58ch;
}

.gf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--gf-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.75rem;
  border-radius: var(--gf-radius);
  border: 1px solid transparent;
  transition: transform 0.35s var(--gf-ease), box-shadow 0.35s var(--gf-ease), background 0.35s var(--gf-ease);
  cursor: pointer;
}

.gf-btn:hover {
  transform: translateY(-2px);
}

.gf-btn--primary {
  background: linear-gradient(135deg, var(--gf-teal) 0%, var(--gf-teal-dim) 100%);
  color: var(--gf-deep);
  box-shadow: 0 8px 32px var(--gf-glow);
}

.gf-btn--primary:hover {
  box-shadow: 0 12px 40px var(--gf-glow);
}

.gf-btn--secondary {
  background: transparent;
  color: var(--gf-foam);
  border-color: var(--gf-border);
  backdrop-filter: blur(8px);
}

.gf-btn--secondary:hover {
  border-color: var(--gf-teal);
  color: var(--gf-teal);
}

.gf-btn--copper {
  background: linear-gradient(135deg, var(--gf-copper) 0%, #a66b28 100%);
  color: var(--gf-white);
}

.gf-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 749px) {
  .gf-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.gf-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--gf-deep);
  color: var(--gf-foam);
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
}

.gf-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 200, 176, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(196, 134, 58, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--gf-deep) 0%, var(--gf-ocean) 55%, var(--gf-midnight) 100%);
}

.gf-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 200, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 200, 176, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black 30%, transparent 100%);
}

.gf-hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0.4;
}

.gf-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 989px) {
  .gf-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gf-hero__actions,
  .gf-hero__stats {
    justify-content: center;
  }

  .gf-lead {
    margin-inline: auto;
  }
}

.gf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--gf-border);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gf-teal);
  margin-bottom: 1.5rem;
  background: rgba(6, 16, 24, 0.6);
}

.gf-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gf-teal);
  animation: gf-pulse 2s ease infinite;
}

@keyframes gf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.gf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.gf-hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}

.gf-hero__ring {
  position: absolute;
  inset: 8%;
  border: 1px solid var(--gf-border);
  border-radius: 50%;
  animation: gf-spin 24s linear infinite;
}

.gf-hero__ring--inner {
  inset: 22%;
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes gf-spin {
  to { transform: rotate(360deg); }
}

.gf-hero__device {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a3048 0%, #0a1624 100%);
  border: 1px solid var(--gf-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gf-hero__device-core {
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gf-teal) 0%, var(--gf-teal-dim) 70%);
  box-shadow: 0 0 60px var(--gf-glow);
  animation: gf-glow 3s ease-in-out infinite;
}

@keyframes gf-glow {
  0%, 100% { box-shadow: 0 0 40px var(--gf-glow); }
  50% { box-shadow: 0 0 80px var(--gf-glow); }
}

.gf-hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.gf-hero__stat-value {
  font-family: var(--gf-font-display);
  font-size: 1.75rem;
  color: var(--gf-teal);
}

.gf-hero__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

/* Product lines */
.gf-lines {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gf-surface);
  color: var(--gf-ink);
}

.gf-line-card {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-white);
  border: 1px solid rgba(6, 16, 24, 0.08);
  overflow: hidden;
  transition: transform 0.4s var(--gf-ease), box-shadow 0.4s var(--gf-ease);
  text-decoration: none;
  color: inherit;
  display: block;
}

.gf-line-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(6, 16, 24, 0.12);
}

.gf-line-card--dark {
  background: linear-gradient(160deg, var(--gf-ocean) 0%, var(--gf-deep) 100%);
  color: var(--gf-foam);
  border-color: var(--gf-border);
}

.gf-line-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--gf-radius);
  background: rgba(30, 200, 176, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gf-teal);
}

.gf-line-card--dark .gf-line-card__icon {
  background: rgba(30, 200, 176, 0.15);
}

.gf-line-card__tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  background: rgba(30, 200, 176, 0.15);
  color: var(--gf-teal);
}

/* Philosophy */
.gf-philosophy {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gf-ocean);
  color: var(--gf-foam);
}

.gf-philosophy__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 989px) {
  .gf-philosophy__panel {
    grid-template-columns: 1fr;
  }
}

.gf-readmore__preview {
  margin-bottom: 1rem;
}

.gf-readmore__full {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--gf-ease);
}

.gf-readmore.is-open .gf-readmore__full {
  grid-template-rows: 1fr;
}

.gf-readmore__full-inner {
  overflow: hidden;
}

.gf-readmore__full p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--gf-ink-muted);
}

.gf-readmore__toggle {
  margin-top: 1.25rem;
  background: none;
  border: none;
  color: var(--gf-teal);
  font-family: var(--gf-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gf-readmore__toggle svg {
  transition: transform 0.3s var(--gf-ease);
}

.gf-readmore.is-open .gf-readmore__toggle svg {
  transform: rotate(180deg);
}

/* Tech grid */
.gf-tech {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gf-surface);
  color: var(--gf-ink);
}

.gf-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 989px) {
  .gf-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 549px) {
  .gf-tech__grid {
    grid-template-columns: 1fr;
  }
}

.gf-tech__card {
  padding: 1.75rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-light);
  border: 1px solid var(--gf-border-light);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: var(--gf-shadow-sm);
}

.gf-tech__card:hover {
  border-color: rgba(227, 30, 36, 0.3);
  background: var(--gf-surface);
  box-shadow: var(--gf-shadow-md);
}

.gf-tech__card h3 {
  font-family: var(--gf-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--gf-red);
}

.gf-tech__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gf-ink-muted);
}

/* Installation */
.gf-install {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--gf-sand) 0%, var(--gf-foam) 100%);
  color: var(--gf-deep);
}

.gf-install__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 749px) {
  .gf-install__methods {
    grid-template-columns: 1fr;
  }
}

.gf-method {
  padding: 2rem;
  border-radius: var(--gf-radius-lg);
  border: 2px solid transparent;
  background: var(--gf-white);
}

.gf-method--primary {
  border-color: var(--gf-teal);
  box-shadow: 0 8px 40px rgba(30, 200, 176, 0.15);
}

.gf-method--secondary {
  opacity: 0.85;
}

.gf-method__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gf-teal-dim);
  margin-bottom: 0.5rem;
}

.gf-method--primary .gf-method__label {
  color: var(--gf-teal);
}

.gf-method__desc {
  margin: 0.75rem 0 0;
  line-height: 1.65;
  color: var(--gf-ink-muted);
}

.gf-deploy .gf-method {
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
}

.gf-deploy .gf-method--primary {
  border-color: var(--gf-teal);
  box-shadow: 0 8px 40px rgba(30, 200, 176, 0.12);
}

.gf-deploy .gf-method--secondary {
  opacity: 1;
}

.gf-deploy {
  background: linear-gradient(180deg, var(--gf-surface) 0%, var(--gf-sand) 100%);
}

.gf-deploy .gf-lead {
  color: var(--gf-ink-muted);
}

.gf-deploy .gf-method__media {
  margin-top: 1.25rem;
}

.gf-steps {
  counter-reset: gf-step;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.gf-steps li {
  counter-increment: gf-step;
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 1.75rem;
  border-left: 1px solid rgba(6, 16, 24, 0.1);
  margin-left: 1rem;
}

.gf-steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.gf-steps li::before {
  content: counter(gf-step, decimal-leading-zero);
  position: absolute;
  left: -1rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gf-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gf-ocean);
  color: var(--gf-teal);
  border-radius: var(--gf-radius);
}

.gf-steps li h4 {
  margin: 0 0 0.35rem;
  font-family: var(--gf-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gf-steps li p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(6, 16, 24, 0.7);
}

.gf-prep-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-ocean);
  color: var(--gf-foam);
  border-left: 4px solid var(--gf-teal);
}

.gf-prep-box h4 {
  margin: 0 0 0.75rem;
  font-family: var(--gf-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gf-teal);
}

.gf-prep-box ul {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
  font-size: 0.92rem;
  color: var(--gf-ink-muted);
}

/* Marquee */
.gf-marquee {
  padding: 1.25rem 0;
  background: var(--gf-teal);
  color: var(--gf-deep);
  overflow: hidden;
}

.gf-marquee__track {
  display: flex;
  width: max-content;
  animation: gf-marquee 30s linear infinite;
}

.gf-marquee__item {
  white-space: nowrap;
  padding: 0 2rem;
  font-family: var(--gf-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gf-marquee__item::after {
  content: '◆';
  margin-left: 2rem;
  opacity: 0.4;
}

@keyframes gf-marquee {
  to { transform: translateX(-50%); }
}

/* Funnel CTA */
.gf-funnel {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--gf-ocean) 0%, var(--gf-deep) 100%);
  color: var(--gf-white);
  text-align: center;
}

.gf-funnel__box {
  max-width: 720px;
  margin-inline: auto;
  padding: 3rem;
  border-radius: var(--gf-radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.gf-funnel .gf-lead {
  color: rgba(255, 255, 255, 0.82);
}

.gf-funnel__price {
  display: block;
  margin-top: 1rem;
  font-family: var(--gf-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gf-gold-light);
}

.gf-funnel__guarantee {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.gf-funnel__offer {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(196, 134, 58, 0.2);
  color: var(--gf-signal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Newsletter */
.gf-newsletter {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--gf-sand);
  color: var(--gf-ink);
  border-top: 1px solid var(--gf-border-light);
}

.gf-newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-top: 1.5rem;
}

@media (max-width: 549px) {
  .gf-newsletter__form {
    flex-direction: column;
  }
}

.gf-newsletter__input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gf-border-light);
  border-radius: var(--gf-radius);
  background: var(--gf-surface);
  color: var(--gf-ink);
  font-family: var(--gf-font-body);
  font-size: 0.95rem;
}

.gf-newsletter__input::placeholder {
  color: var(--gf-ink-muted);
}

.gf-newsletter__input:focus {
  outline: none;
  border-color: var(--gf-teal);
}

/* Trust bar */
.gf-trust {
  padding: 2rem 0;
  background: var(--gf-surface);
  border-top: 1px solid var(--gf-border-light);
  border-bottom: 1px solid var(--gf-border-light);
  color: var(--gf-ink);
  position: relative;
  z-index: 2;
}

.gf-trust__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.gf-trust__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

.gf-trust__icon {
  color: var(--gf-red);
}

/* Password page override */
.gf-password {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gf-deep);
  color: var(--gf-foam);
  text-align: center;
  padding: 2rem;
}

.gf-password .password-content {
  max-width: 520px;
}

/* Media + placeholders */
.gf-media {
  position: relative;
  margin: 0;
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  background: rgba(6, 16, 24, 0.04);
  border: 1px solid rgba(6, 16, 24, 0.08);
}

.gf-section.gf-tech .gf-media,
.gf-section.gf-philosophy .gf-media,
.gf-section.gf-hero .gf-media {
  border-color: var(--gf-border);
  background: rgba(255, 255, 255, 0.03);
}

.gf-media--landscape { aspect-ratio: 16 / 9; }
.gf-media--portrait { aspect-ratio: 4 / 5; }
.gf-media--square { aspect-ratio: 1 / 1; }

.gf-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gf-media:not(.gf-media--loaded) .gf-media__img--auto {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.gf-media.gf-media--loaded .gf-media__placeholder--fallback {
  display: none;
}

.gf-media.gf-media--loaded .gf-media__img--auto {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.gf-media__placeholder {
  height: 100%;
  min-height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(30, 200, 176, 0.08) 0%, rgba(6, 16, 24, 0.03) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(30, 200, 176, 0.04) 8px,
      rgba(30, 200, 176, 0.04) 9px
    );
}

.gf-media__placeholder-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gf-media__placeholder-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gf-copper);
  background: rgba(196, 134, 58, 0.15);
  padding: 0.3rem 0.55rem;
  border-radius: 100px;
}

.gf-media__placeholder-file {
  font-size: 0.68rem;
  font-family: ui-monospace, monospace;
  color: rgba(6, 16, 24, 0.45);
}

.gf-section.gf-hero .gf-media__placeholder-file,
.gf-section.gf-tech .gf-media__placeholder-file,
.gf-section.gf-philosophy .gf-media__placeholder-file {
  color: var(--gf-ink-muted);
}

.gf-media__placeholder-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
}

.gf-media__placeholder-icon {
  font-size: 2rem;
  color: var(--gf-teal);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.gf-media__placeholder-title {
  margin: 0;
  font-family: var(--gf-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 16, 24, 0.65);
  max-width: 20ch;
}

.gf-section.gf-hero .gf-media__placeholder-title,
.gf-section.gf-tech .gf-media__placeholder-title {
  color: var(--gf-ink-muted);
}

.gf-media__prompt {
  font-size: 0.78rem;
  color: rgba(6, 16, 24, 0.65);
}

.gf-section.gf-hero .gf-media__prompt,
.gf-section.gf-tech .gf-media__prompt,
.gf-section.gf-philosophy .gf-media__prompt {
  color: var(--gf-ink-muted);
}

.gf-media__prompt summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gf-teal-dim);
  list-style: none;
}

.gf-section.gf-hero .gf-media__prompt summary,
.gf-section.gf-tech .gf-media__prompt summary {
  color: var(--gf-teal);
}

.gf-media__prompt-text {
  margin: 0.75rem 0 0;
  line-height: 1.55;
  font-size: 0.75rem;
}

.gf-media__prompt-hint {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  opacity: 0.75;
}

.gf-media__prompt code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
}

.gf-showcase {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gf-light);
  color: var(--gf-ink);
}

.gf-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: stretch;
}

.gf-showcase__item {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
  min-width: 0;
}

.gf-showcase__item .gf-media {
  width: 100%;
}

.gf-showcase__item--wide {
  grid-column: 1 / -1;
}

.gf-showcase__item--tall {
  grid-column: span 1;
  grid-row: span 2;
}

@media (max-width: 749px) {
  .gf-showcase__grid {
    grid-template-columns: 1fr;
  }

  .gf-showcase__item,
  .gf-showcase__item--wide,
  .gf-showcase__item--tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

.gf-showcase__caption {
  padding: 0.35rem 0 0.25rem;
}

.gf-showcase__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-red);
  font-weight: 700;
}

.gf-showcase__caption h3 {
  margin: 0.5rem 0 0;
  font-family: var(--gf-font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.gf-showcase__caption p {
  margin: 0.65rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  opacity: 0.85;
  max-width: 62ch;
}

.gf-showcase__item--wide .gf-showcase__caption h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.gf-showcase__item--wide .gf-showcase__caption p {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.gf-hero__visual {
  position: relative;
}

.gf-hero__logo {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 55%);
  z-index: 3;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.gf-hero__product-frame {
  position: relative;
  z-index: 2;
  background: transparent;
}

.gf-method__media {
  margin-top: 1.25rem;
}

.gf-steps li .gf-media {
  margin-top: 1rem;
  max-width: 420px;
}

.gf-install__diagram {
  margin: 3rem 0;
}

.gf-install__prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 749px) {
  .gf-install__prep-grid {
    grid-template-columns: 1fr;
  }
}

.gf-password__logo {
  width: min(280px, 80vw);
  margin: 0 auto 1.5rem;
  display: block;
}

.gf-tech__card .gf-media {
  margin-bottom: 1rem;
}

.gf-line-card__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.gf-line-card .gf-media {
  margin-bottom: 1.25rem;
}

/* POSTER CAMPAIGN REBRAND */
.gf-hero--poster {
  min-height: 100svh;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(3rem, 6vh, 4rem);
  color: var(--gf-white);
  isolation: isolate;
  background: var(--gf-ocean);
}

.gf-hero--poster .gf-lead,
.gf-hero--poster .gf-hero__stat-label {
  color: rgba(255, 255, 255, 0.82);
}

.gf-hero--poster .gf-hero__stat-value {
  color: var(--gf-gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gf-funnel .gf-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gf-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.gf-funnel .gf-btn--secondary:hover {
  border-color: var(--gf-gold-light);
  color: var(--gf-white);
}

.gf-hero--poster .gf-hero__title-line--white,
.gf-hero--poster .gf-hero__kicker {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.gf-hero--poster .gf-hero__title-line--red {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.gf-hero__poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gf-hero__poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.gf-hero__poster-img--mobile {
  display: none;
}

.gf-hero__poster-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 11, 16, 0.45) 0%, rgba(8, 11, 16, 0.15) 38%, transparent 62%),
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(8, 11, 16, 0.5) 100%);
}

.gf-hero__topo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M0 120c80-40 160-40 240 0s160 40 240 0 160-40 240 0' fill='none' stroke='%23c9a84c' stroke-width='0.6' opacity='0.35'/%3E%3Cpath d='M0 240c100-50 200-50 300 0s200 50 300 0 200-50 300 0' fill='none' stroke='%23c9a84c' stroke-width='0.6' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  pointer-events: none;
}

.gf-hero__topo--subtle { opacity: 0.18; }

.gf-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.gf-hero__poster-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 8rem);
}

@media (max-width: 989px) {
  .gf-hero__poster-layout {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .gf-hero__actions,
  .gf-hero__stats { justify-content: center; }
  .gf-lead { margin-inline: auto; }
}

.gf-hero__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gf-gold-light);
  margin: 0 0 1.25rem;
}

.gf-hero__title { margin: 0; line-height: 0.9; }

.gf-hero__title-line {
  display: block;
  font-family: var(--gf-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gf-hero__title-line--white {
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  color: var(--gf-white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.gf-hero__title-line--red {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--gf-red);
  margin-top: -0.05em;
  text-shadow: 0 0 40px var(--gf-glow);
}

.gf-hero__tagline {
  position: relative;
  display: inline-block;
  margin: 1.5rem 0 0;
  font-family: var(--gf-font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gf-gold-light);
}

.gf-hero__tagline-stroke {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -6px;
  height: 8px;
  background: var(--gf-red);
  opacity: 0.85;
  transform: skewX(-8deg);
  border-radius: 2px;
}

.gf-hero__sub { margin-top: 1.25rem !important; max-width: 52ch; }

.gf-hero__credibility {
  margin: 1rem 0 0;
  padding: 0.65rem 0 0.65rem 0.85rem;
  max-width: 48ch;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--gf-gold-light);
  border-left: 2px solid rgba(201, 168, 76, 0.65);
}

.gf-btn--glow {
  background: linear-gradient(135deg, var(--gf-red) 0%, var(--gf-red-dim) 100%);
  color: var(--gf-white);
  box-shadow: 0 8px 32px var(--gf-glow);
}

.gf-btn--glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gf-white);
}

.gf-hero__product-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: visible;
}

.gf-hero__mobile-scene {
  display: none;
}

.gf-hero__product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  overflow: visible;
}

/* Radio / acoustic wave effect */
.gf-radio-waves {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(540px, 105vw);
  height: 68%;
  pointer-events: none;
  z-index: 1;
}

.gf-radio-waves__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gf-radio-waves__group--red {
  color: var(--gf-red);
  filter: drop-shadow(0 0 14px var(--gf-glow)) drop-shadow(0 0 28px rgba(227, 30, 36, 0.35));
}

.gf-radio-waves__group--gold {
  color: var(--gf-gold-light);
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.55));
}

.gf-radio-waves__core {
  color: var(--gf-red);
  filter: drop-shadow(0 0 16px var(--gf-glow)) drop-shadow(0 0 32px rgba(227, 30, 36, 0.45));
  animation: gf-core-pulse 1.6s ease-in-out infinite;
}

.gf-radio-wave {
  transform-origin: 200px 220px;
  opacity: 0;
  animation: gf-radio-arc-pulse 2.2s ease-out infinite;
}

.gf-radio-wave--1 { animation-delay: 0s; }
.gf-radio-wave--2 { animation-delay: 0.28s; }
.gf-radio-wave--3 { animation-delay: 0.56s; }
.gf-radio-wave--4 { animation-delay: 0.84s; }
.gf-radio-wave--5 { animation-delay: 0.4s; }
.gf-radio-wave--6 { animation-delay: 0.68s; }

.gf-radio-waves__ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48%;
  aspect-ratio: 2.2 / 1;
  border: 2px solid rgba(227, 30, 36, 0.85);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.3);
  opacity: 0;
  box-shadow:
    0 0 24px rgba(227, 30, 36, 0.35),
    0 0 48px rgba(227, 30, 36, 0.15),
    inset 0 0 20px rgba(227, 30, 36, 0.08);
  animation: gf-radio-wave-pulse 2.4s ease-out infinite;
}

.gf-radio-waves__ring:nth-child(2) { animation-delay: 0s; }
.gf-radio-waves__ring:nth-child(3) { animation-delay: 0.4s; }
.gf-radio-waves__ring:nth-child(4) { animation-delay: 0.8s; }
.gf-radio-waves__ring:nth-child(5) { animation-delay: 1.2s; }
.gf-radio-waves__ring:nth-child(6) { animation-delay: 1.6s; }
.gf-radio-waves__ring:nth-child(7) { animation-delay: 2s; }

@keyframes gf-radio-arc-pulse {
  0% {
    opacity: 1;
    transform: scale(0.45);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@keyframes gf-radio-wave-pulse {
  0% {
    opacity: 0.9;
    transform: translateX(-50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.85);
  }
}

@keyframes gf-core-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
  .gf-radio-wave,
  .gf-radio-waves__ring,
  .gf-radio-waves__core {
    animation: none !important;
    opacity: 0.35;
  }
}

.gf-pulse-rings {
  position: absolute;
  inset: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gf-pulse-rings span {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 30, 36, 0.45);
  border-radius: 50%;
}

.gf-hero__product-frame {
  position: relative;
  z-index: 3;
  width: min(380px, 85vw);
  background: transparent;
}

.gf-hero__product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.gf-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
  opacity: 0.7;
}

.gf-gold-text { color: var(--gf-gold-light) !important; }

.gf-gold-shimmer {
  background: linear-gradient(110deg, var(--gf-gold) 0%, var(--gf-gold-light) 35%, #fff8dc 50%, var(--gf-gold-light) 65%, var(--gf-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gf-shimmer 4s linear infinite;
}

@keyframes gf-shimmer {
  to { background-position: 200% center; }
}

.gf-glass {
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
}

.gf-features {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--gf-sand);
  color: var(--gf-ink);
}

.gf-features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {
  .gf-features__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 749px) {
  .gf-features__grid { grid-template-columns: 1fr; }
}

.gf-feature-card {
  padding: 1.75rem 1.25rem;
  border-radius: var(--gf-radius-lg);
  text-align: center;
  transition: transform 0.4s var(--gf-ease), border-color 0.4s, box-shadow 0.4s;
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
}

.gf-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 30, 36, 0.35);
  box-shadow: var(--gf-shadow-md);
}

.gf-feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gf-gold-light);
}

.gf-feature-card__icon svg { width: 100%; height: 100%; }

.gf-feature-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--gf-font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--gf-ink);
}

.gf-feature-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--gf-ink-muted);
}

.gf-campaign {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  background: linear-gradient(180deg, var(--gf-surface) 0%, #fff8e8 100%);
  color: var(--gf-ink);
  text-align: center;
}

.gf-campaign--dark {
  background: var(--gf-ocean);
  color: var(--gf-white);
}

.gf-campaign--dark .gf-lead {
  color: rgba(255, 255, 255, 0.75);
}

.gf-campaign__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.gf-campaign__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 849px) {
  .gf-campaign__inner { grid-template-columns: 1fr; }
  .gf-campaign__divider { display: none; }
}

.gf-campaign__divider { color: var(--gf-gold); opacity: 0.6; padding-top: 2rem; }
.gf-campaign__highlight { display: block; font-size: 1.15em; margin-top: 0.15em; }

.gf-campaign__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gf-border);
}

.gf-campaign__triad {
  font-family: var(--gf-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gf-gold-light);
  margin: 0 0 0.75rem;
}

.gf-campaign__cta {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

.gf-lines {
  background: var(--gf-surface);
  color: var(--gf-ink);
  position: relative;
  z-index: 2;
}

.gf-lines__featured {
  margin-top: 3rem;
  max-width: 960px;
  margin-inline: auto;
}

.gf-showcase {
  background: var(--gf-light);
  color: var(--gf-ink);
}

.gf-install {
  background: linear-gradient(180deg, var(--gf-surface) 0%, var(--gf-sand) 100%);
  color: var(--gf-ink);
}

.gf-install .gf-lead {
  color: var(--gf-ink-muted) !important;
}

.gf-method {
  background: var(--gf-surface);
  color: var(--gf-ink);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
}

.gf-marquee {
  background: var(--gf-red);
  color: var(--gf-white);
}

.gf-trust {
  background: var(--gf-surface);
  color: var(--gf-ink);
  border-bottom: 1px solid var(--gf-border-light);
}

.gf-method--primary {
  border-color: var(--gf-red);
  border-width: 2px;
}

.gf-hero--poster .gf-eyebrow {
  color: var(--gf-gold-light);
}

@media (prefers-reduced-motion: reduce) {
  .gf-gold-shimmer { animation: none; }
}

/* Product page */
.gf-pdp-hero {
  min-height: clamp(420px, 70vh, 640px);
  display: flex;
  align-items: center;
  color: var(--gf-white);
  background: var(--gf-ocean);
  isolation: isolate;
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4rem);
}

/* Keep hero content below floating header when pulled under nav */
body:has(.header[transparent]) .gf-hero--poster,
body:has(.header[transparent]) .gf-pdp-hero {
  padding-top: calc(var(--header-group-height, 0px) + clamp(5rem, 10vh, 7rem));
}

body:has(.header[transparent]) .gf-pdp-hero {
  padding-top: calc(var(--header-group-height, 0px) + clamp(6rem, 12vw, 8rem));
}

.gf-pdp-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .gf-pdp-hero__layout { grid-template-columns: 1fr; }
  .gf-hero__product-stage { min-height: 280px; }
}

.gf-pdp-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gf-pdp-hero__price {
  font-family: var(--gf-font-display);
  font-size: 1.75rem;
  color: var(--gf-gold-light);
}

.gf-pdp-hero__badge {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gf-gold-light);
}

.gf-pdp-hero__badge--muted { opacity: 0.65; }

.gf-pdp-buy {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--gf-light);
  color: var(--gf-ink);
}

.gf-pdp-buy__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

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

.gf-pdp-buy__main-media {
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gf-border);
  background: var(--gf-ocean);
}

.gf-pdp-buy__main-img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--gf-ocean);
}

.gf-pdp-buy__thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.gf-pdp-buy__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--gf-border);
  background: transparent;
  border-radius: var(--gf-radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.25s, border-color 0.25s;
}

.gf-pdp-buy__thumb.is-active,
.gf-pdp-buy__thumb:hover {
  opacity: 1;
  border-color: var(--gf-gold);
}

.gf-pdp-buy__thumb img { width: 100%; height: 100%; object-fit: cover; }

.gf-pdp-buy__panel {
  padding: 2rem;
  border-radius: var(--gf-radius-lg);
  color: var(--gf-ink);
}

.gf-pdp-buy__panel .gf-heading {
  color: var(--gf-ink);
}

.gf-pdp-buy__panel .gf-lead {
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__price-block {
  margin: 1rem 0 1.25rem;
}

.gf-pdp-buy__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0;
}

.gf-price-tax-note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--gf-ink-muted);
  letter-spacing: 0.02em;
}

.gf-pdp-buy__price {
  font-family: var(--gf-font-display);
  font-size: 2rem;
  color: var(--gf-gold-light);
}

.gf-pdp-buy__compare {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gf-ink-muted);
  margin-bottom: 1.25rem;
}

.gf-pdp-buy__highlights {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.gf-pdp-buy__highlights li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gf-red);
  border-radius: 50%;
}

.gf-pdp-buy__option { border: 0; margin: 0 0 1rem; padding: 0; }
.gf-pdp-buy__option legend {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__option-values { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.gf-pdp-buy__option-label {
  cursor: pointer;
}

.gf-pdp-buy__option-label input { position: absolute; opacity: 0; pointer-events: none; }

.gf-pdp-buy__option-label span {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gf-border-light);
  border-radius: var(--gf-radius);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gf-ink);
  transition: border-color 0.25s, background 0.25s;
}

.gf-pdp-buy__option-label input:checked + span {
  border-color: var(--gf-red);
  background: rgba(227, 30, 36, 0.12);
}

.gf-pdp-buy__qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gf-pdp-buy__qty-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__qty {
  width: 72px;
  padding: 0.65rem;
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  border-radius: var(--gf-radius);
  color: var(--gf-ink);
  font-family: var(--gf-font-body);
}

.gf-pdp-buy__submit {
  width: 100%;
  margin-bottom: 0.75rem;
  min-height: 4.75rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--gf-font-display);
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.05;
  box-shadow: 0 14px 44px rgba(227, 30, 36, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.14);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gf-pdp-buy__submit:hover {
  box-shadow: 0 18px 56px rgba(227, 30, 36, 0.48);
}

.gf-pdp-buy__submit:active {
  transform: scale(0.985);
}

@media (min-width: 750px) {
  .gf-pdp-buy__submit {
    min-height: 4.85rem;
    padding: 1.35rem 2.25rem;
    font-size: 1.55rem;
    letter-spacing: 0.2em;
  }
}

.gf-pdp-buy .shopify-payment-button,
@keyframes gf-scarcity-beacon {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.55); }
  50% { opacity: 0.55; transform: scale(0.88); box-shadow: 0 0 10px 2px rgba(227, 30, 36, 0.35); }
}

@keyframes gf-scarcity-border-pulse {
  0%, 100% {
    border-color: rgba(227, 30, 36, 0.22);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.08);
  }
  50% {
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 0 24px rgba(227, 30, 36, 0.18);
  }
}

@keyframes gf-scarcity-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.gf-scarcity {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-radius: var(--gf-radius);
  border: 1px solid rgba(227, 30, 36, 0.22);
  border-left: 3px solid var(--gf-red);
  overflow: hidden;
}

.gf-scarcity__beacon {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gf-red);
}

.gf-scarcity__headline {
  margin: 0;
  padding-right: 1rem;
  font-family: var(--gf-font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gf-red);
  font-weight: 700;
}

.gf-scarcity__detail {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.gf-scarcity--panel {
  margin-bottom: 0.85rem;
  background: rgba(227, 30, 36, 0.06);
  animation: gf-scarcity-border-pulse 2.6s ease-in-out infinite;
}

.gf-scarcity--panel .gf-scarcity__detail {
  color: var(--gf-ink-muted);
}

.gf-scarcity--hero {
  margin: 1rem 0 1.15rem;
  max-width: 34rem;
  background: rgba(227, 30, 36, 0.14);
  backdrop-filter: blur(10px);
}

.gf-scarcity--hero .gf-scarcity__headline {
  color: #ff6b6f;
}

.gf-scarcity--hero .gf-scarcity__detail {
  color: rgba(232, 246, 244, 0.78);
}

.gf-pdp-hero__cta {
  margin-top: 0.15rem;
  min-height: 4.25rem;
  padding: 1.1rem 2rem;
  font-family: var(--gf-font-display);
  font-size: clamp(1.15rem, 4vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.05;
  border: 2px solid rgba(255, 255, 255, 0.14);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gf-pdp-hero__cta:active {
  transform: scale(0.985);
}

.gf-pdp-cta-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--gf-light);
}

.gf-pdp-cta-strip--compact {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.gf-pdp-cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.gf-pdp-cta-strip__sub {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gf-red);
  font-weight: 700;
}

.gf-pdp-cta {
  text-decoration: none;
}

.gf-pdp-cta--large {
  min-height: 4.25rem;
  padding: 1.1rem 1.75rem;
  font-family: var(--gf-font-display);
  font-size: clamp(1.15rem, 4.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.05;
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.38);
  border: 2px solid rgba(255, 255, 255, 0.12);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gf-pdp-cta--large:active {
  transform: scale(0.985);
}

@media (min-width: 750px) {
  .gf-pdp-cta--large {
    min-height: 4rem;
    padding: 1.15rem 2.75rem;
    font-size: 1.35rem;
  }
}

.gf-funnel .gf-pdp-cta--large {
  min-width: min(100%, 20rem);
}

@media (prefers-reduced-motion: reduce) {
  .gf-scarcity {
    animation: none !important;
  }
}

.gf-pdp-buy .shopify-payment-button,
.gf-pdp-buy .shopify-payment-button__button {
  display: none !important;
}

.gf-pdp-buy__assurance {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--gf-radius);
  background: rgba(6, 16, 24, 0.04);
  border: 1px solid var(--gf-border-light);
}

.gf-pdp-buy__assurance p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__assurance p + p {
  margin-top: 0.35rem;
}

.gf-pdp-buy__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

.gf-pdp-buy__guide-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gf-red);
  font-size: 0.85rem;
  text-decoration: none;
}

.gf-pdp-buy__guide-link:hover { text-decoration: underline; }

.gf-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(110%);
  transition: transform 0.35s var(--gf-ease);
  background: rgba(8, 11, 16, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gf-border);
  padding: 0.85rem 0;
  color: var(--gf-white);
}

.gf-sticky-cart.is-visible {
  transform: translateY(0);
}

.gf-sticky-cart__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gf-sticky-cart__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.gf-sticky-cart__title {
  font-family: var(--gf-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--gf-white);
}

.gf-sticky-cart__price {
  font-size: 0.95rem;
  color: var(--gf-gold-light);
}

.gf-sticky-cart__btn {
  flex-shrink: 0;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  font-family: var(--gf-font-display);
  font-size: clamp(0.92rem, 3.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.05;
  border: 2px solid rgba(255, 255, 255, 0.12);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gf-sticky-cart__btn:active {
  transform: scale(0.985);
}

#buy {
  scroll-margin-top: calc(var(--header-group-height, 80px) + 1rem);
}

/* Collection pages */
.gf-collection-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gf-white);
  text-align: center;
}

.gf-collection-hero__inner { position: relative; z-index: 2; }

.gf-collection-hero__desc { margin: 1rem auto 0; max-width: 58ch; }

.gf-collection-hero__count {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}

.gf-collection-grid {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--gf-ocean);
  color: var(--gf-white);
}

.gf-collection-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gf-collection-grid__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--gf-ease), border-color 0.35s;
}

.gf-collection-grid__card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 30, 36, 0.35);
}

.gf-collection-grid__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.gf-collection-grid__img { width: 100%; height: 100%; object-fit: cover; }

.gf-collection-grid__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.gf-collection-grid__title {
  margin: 0 0 0.35rem;
  font-family: var(--gf-font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gf-collection-grid__price {
  margin: 0 0 0.65rem;
  color: var(--gf-gold-light);
  font-weight: 600;
}

.gf-collection-grid__excerpt {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gf-ink-muted);
  flex: 1;
}

.gf-collection-grid__cta { align-self: flex-start; margin-top: auto; }

.gf-collection-grid__empty {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--gf-radius-lg);
}

.gf-collection-grid__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gf-collection-grid__page {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gf-ink-muted);
}
/* Homepage sales layout — light theme extensions */

.gf-glass {
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-sm);
}

.gf-hero--poster .gf-glass,
.gf-hero--poster .gf-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gf-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.gf-hero--poster .gf-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gf-white);
  border-color: var(--gf-gold-light);
}

.gf-btn--primary {
  color: var(--gf-white);
}

/* Hero price + proof */
.gf-hero__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 0.5rem;
}

.gf-hero__price {
  font-family: var(--gf-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gf-gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.gf-hero__avail {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gf-hero__avail--in {
  color: #b8f5c8;
  border-color: rgba(120, 220, 150, 0.45);
}

.gf-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.gf-hero__proof span::before {
  content: '◆';
  color: var(--gf-gold-light);
  margin-right: 0.35rem;
  font-size: 0.55rem;
}

/* Product spotlight */
.gf-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-surface);
  border: 1px solid var(--gf-border-light);
  box-shadow: var(--gf-shadow-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--gf-ease), box-shadow 0.4s var(--gf-ease);
}

.gf-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

@media (max-width: 849px) {
  .gf-spotlight {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.gf-spotlight__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  background: rgba(227, 30, 36, 0.1);
  color: var(--gf-red);
  margin-bottom: 1rem;
}

.gf-spotlight__price {
  font-family: var(--gf-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gf-red);
  margin: 0.75rem 0;
}

.gf-spotlight__highlights {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.gf-spotlight__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gf-ink-muted);
}

.gf-spotlight__highlights li::before {
  content: '✓';
  color: var(--gf-red);
  font-weight: 700;
  flex-shrink: 0;
}

.gf-spotlight__media .gf-media {
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  background: var(--gf-ocean);
}

/* Science / research proof */
.gf-science {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: linear-gradient(165deg, var(--gf-deep) 0%, var(--gf-ocean) 48%, #122338 100%);
  color: var(--gf-white);
  overflow: hidden;
}

.gf-science__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 200, 176, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(227, 30, 36, 0.08) 0%, transparent 38%),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 48px
    );
  opacity: 0.9;
}

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

.gf-science .gf-eyebrow {
  color: var(--gf-teal);
}

.gf-science__intro {
  margin-top: 1rem;
  max-width: 62ch;
  color: rgba(232, 246, 244, 0.78);
}

.gf-science__hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.75rem;
}

@media (max-width: 989px) {
  .gf-science__hero {
    grid-template-columns: 1fr;
  }
}

.gf-science__quote {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--gf-teal);
}

.gf-science__quote p {
  margin: 0;
  font-family: var(--gf-font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--gf-white);
}

.gf-science__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(232, 246, 244, 0.72);
  max-width: 48ch;
}

.gf-science__visual {
  position: relative;
}

.gf-science__visual .gf-media {
  border: 1px solid rgba(30, 200, 176, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.gf-science__visual-caption {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 246, 244, 0.55);
}

.gf-science__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (max-width: 989px) {
  .gf-science__grid {
    grid-template-columns: 1fr;
  }
}

.gf-science__card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--gf-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(30, 200, 176, 0.18);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.35s var(--gf-ease);
}

.gf-science__card:hover {
  border-color: rgba(30, 200, 176, 0.42);
  transform: translateY(-3px);
}

.gf-science__card-index {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--gf-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gf-teal);
  font-weight: 700;
}

.gf-science__card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--gf-font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gf-white);
}

.gf-science__card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(232, 246, 244, 0.72);
}

.gf-science__heritage {
  margin: 2.25rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(232, 246, 244, 0.58);
  max-width: 70ch;
}

/* How it works */
.gf-hiw {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--gf-surface);
  color: var(--gf-ink);
}

.gf-hiw__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media (max-width: 989px) {
  .gf-hiw__layout {
    grid-template-columns: 1fr;
  }
}

.gf-hiw__steps {
  display: grid;
  gap: 1.25rem;
}

.gf-hiw__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--gf-radius-lg);
  background: var(--gf-light);
  border: 1px solid var(--gf-border-light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gf-hiw__step:hover {
  border-color: rgba(227, 30, 36, 0.25);
  box-shadow: var(--gf-shadow-sm);
}

.gf-hiw__step-num {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gf-red);
  color: var(--gf-white);
  font-family: var(--gf-font-display);
  font-size: 1rem;
  font-weight: 700;
}

.gf-hiw__step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--gf-font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gf-hiw__step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gf-ink-muted);
}

.gf-hiw__diagram .gf-media {
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  box-shadow: var(--gf-shadow-md);
}

/* Results strip */
.gf-results {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--gf-ocean) 0%, #1a2840 100%);
  color: var(--gf-white);
}

.gf-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 749px) {
  .gf-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gf-results__stat-value {
  font-family: var(--gf-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--gf-gold-light);
}

.gf-results__stat-label {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Install teaser */
.gf-install-teaser {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--gf-sand);
  color: var(--gf-ink);
}

.gf-install-teaser__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 849px) {
  .gf-install-teaser__grid {
    grid-template-columns: 1fr;
  }
}

.gf-install-teaser__diagram .gf-media {
  border-radius: var(--gf-radius-lg);
  overflow: hidden;
  box-shadow: var(--gf-shadow-md);
}

.gf-install-teaser__bullets {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.gf-install-teaser__bullets li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gf-ink-muted);
}

.gf-install-teaser__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gf-red);
}

/* FAQ light */
.gf-faq-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--gf-light);
  color: var(--gf-ink);
}

.gf-faq-item {
  border: 1px solid var(--gf-border-light);
  border-radius: var(--gf-radius-lg);
  padding: 1.25rem 1.5rem;
  background: var(--gf-surface);
  box-shadow: var(--gf-shadow-sm);
}

.gf-faq-item summary {
  cursor: pointer;
  font-family: var(--gf-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gf-ink);
}

.gf-faq-item summary::-webkit-details-marker {
  display: none;
}

.gf-faq-item p {
  margin: 1rem 0 0;
  line-height: 1.7;
  color: var(--gf-ink-muted);
}

.gf-showcase__caption h3 {
  color: var(--gf-ink);
}

.gf-showcase__caption p {
  color: var(--gf-ink-muted);
}

.gf-showcase__label {
  color: var(--gf-red);
}

.gf-campaign .gf-lead {
  color: var(--gf-ink-muted);
}

.gf-campaign__triad {
  color: var(--gf-gold);
}

.gf-campaign__cta {
  color: var(--gf-ink-muted);
}

/* Correct header overlap when transparent nav is position:absolute (JS inline runs before main exists) */
body:has(.gf-section):has(.header[transparent]) {
  --header-group-height: calc(var(--header-height, 66px) + 43px) !important;
}
body:has(.gf-section) .announcement-bar,
body:has(.gf-section) .announcement-bar .section-background,
body:has(.gf-section) .announcement-bar.color-scheme-1,
body:has(.gf-section) .announcement-bar.color-scheme-6 {
  background-color: var(--gf-deep) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

html:has(.gf-hero--poster),
html:has(.gf-pdp-hero) {
  background: var(--gf-ocean);
}

/* Solid dark sticky header when scrolling (not white bar) */
body:has(.gf-section) #header-component.header[transparent='not-sticky'][data-sticky-state='active'] .header__row--top {
  --color-foreground: 255, 255, 255;
  --color-foreground-rgb: 255, 255, 255;
  --color-background: 8, 11, 16;
  --color-background-rgb: 8, 11, 16;
  --color-border: 255, 255, 255;
  --color-border-rgb: 255, 255, 255;
  background: var(--gf-deep);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body:has(.gf-section) #header-component.header[transparent='not-sticky'][data-sticky-state='active'] {
  --header-logo-display: none;
  --header-logo-inverse-display: block;
}

/* ── Product page mobile ── */
@media (max-width: 749px) {
  .gf-container,
  .gf-container--wide {
    width: min(1200px, calc(100% - 1.25rem));
  }

  /* Mobile type scale — larger copy sitewide */
  body:has(.gf-section) {
    font-size: 17px;
  }

  .gf-eyebrow {
    font-size: 0.82rem;
  }

  .gf-heading--xl {
    font-size: clamp(2.75rem, 11vw, 3.75rem);
  }

  .gf-heading--lg {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .gf-heading--md {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .gf-lead {
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .gf-btn {
    font-size: 0.95rem;
  }

  .gf-pdp-hero {
    min-height: auto;
    padding: calc(var(--header-group-height, 0px) + 4.5rem) 0 2.25rem;
    text-align: center;
  }

  .gf-pdp-hero__layout {
    gap: 1.5rem;
  }

  .gf-pdp-hero__copy .gf-lead {
    margin-inline: auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .gf-pdp-hero__meta {
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.15rem 0;
  }

  .gf-pdp-hero__price {
    font-size: 1.75rem;
  }

  .gf-scarcity--hero {
    margin-inline: auto;
    max-width: 100%;
  }

  .gf-pdp-hero__cta {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 4.5rem;
    font-size: 1.4rem;
    margin-top: 0.35rem;
  }

  /* Homepage hero — mobile shows poster background + product cutout */
  .gf-hero--poster {
    min-height: 100svh;
    padding-bottom: calc(clamp(2rem, 6vw, 3rem) + 500px);
  }

  .gf-hero--poster .gf-hero__poster-bg {
    display: block;
  }

  .gf-hero--poster .gf-hero__poster-img--desktop {
    display: none;
  }

  .gf-hero--poster .gf-hero__poster-img--mobile {
    display: block;
    object-position: center center;
    transform: scale(1.05);
  }

  .gf-hero--poster .gf-hero__poster-vignette {
    background:
      linear-gradient(180deg, rgba(8, 11, 16, 0.62) 0%, rgba(8, 11, 16, 0.28) 38%, rgba(8, 11, 16, 0.42) 72%, rgba(8, 11, 16, 0.72) 100%);
  }

  .gf-hero--poster .gf-hero__poster-layout {
    min-height: auto;
    gap: 1.25rem;
  }

  .gf-hero--poster .gf-hero__scroll-hint {
    display: none;
  }

  .gf-hero--poster .gf-hero__product-stage {
    min-height: clamp(300px, 68vw, 400px);
    width: 100%;
    padding: clamp(0.5rem, 2vw, 1rem) 0 clamp(1rem, 4vw, 1.75rem);
    margin-top: 0.5rem;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gf-hero--poster .gf-hero__product-visual {
    display: flex;
    width: 100%;
    max-width: min(420px, 94vw);
    min-height: clamp(280px, 64vw, 380px);
    margin: 0 auto;
    overflow: visible;
  }

  .gf-hero--poster .gf-hero__product-frame {
    width: min(340px, 78vw);
    margin: 0 auto;
  }

  .gf-hero--poster .gf-radio-waves {
    width: min(500px, 118vw);
    height: 74%;
  }

  .gf-pdp-hero .gf-hero__product-stage {
    min-height: clamp(280px, 64vw, 380px);
    overflow: visible;
    margin: 0 auto;
    width: 100%;
    max-width: min(420px, 94vw);
  }

  .gf-pdp-hero .gf-hero__product-frame {
    width: min(340px, 78vw);
    margin: 0 auto;
  }

  .gf-pdp-hero .gf-radio-waves {
    width: min(500px, 118vw);
    height: 74%;
  }

  .gf-hero__product-stage {
    min-height: auto;
  }

  .gf-hero--poster .gf-hero__kicker {
    font-size: 0.85rem;
  }

  .gf-hero__title-line--white {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .gf-hero__title-line--red {
    font-size: clamp(3.5rem, 17vw, 5.75rem);
  }

  .gf-hero__tagline {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    letter-spacing: 0.12em;
  }

  .gf-hero--poster .gf-lead,
  .gf-hero__sub {
    font-size: 1.15rem !important;
    line-height: 1.6;
  }

  .gf-hero__credibility {
    font-size: 1.05rem;
    max-width: none;
  }

  .gf-hero__stat-value {
    font-size: 2rem;
  }

  .gf-hero__stat-label {
    font-size: 0.85rem;
  }

  .gf-hero__proof {
    font-size: 0.82rem;
  }

  .gf-hero--poster .gf-btn {
    font-size: 1rem;
    padding: 1.15rem 1.85rem;
  }

  .gf-btn--buy {
    font-size: 1.15rem;
    min-height: 3.85rem;
  }

  .gf-pdp-buy {
    padding: 2rem 0;
  }

  .gf-pdp-buy__grid {
    gap: 1.5rem;
  }

  .gf-pdp-buy__gallery {
    display: none;
  }

  .gf-pdp-buy__panel {
    padding: 1.25rem;
  }

  .gf-pdp-buy__price {
    font-size: 2rem;
  }

  .gf-pdp-buy__highlights li {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .gf-pdp-buy__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .gf-pdp-buy__submit {
    min-height: 4.85rem;
    font-size: 1.45rem;
    letter-spacing: 0.2em;
  }

  .gf-trust {
    padding: 1.15rem 0;
  }

  .gf-trust__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.25rem;
  }

  .gf-trust__item {
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .gf-features,
  .gf-science,
  .gf-showcase,
  .gf-deploy,
  .gf-tech,
  .gf-faq-section,
  .gf-funnel {
    padding: 2.75rem 0;
  }

  .gf-features__grid {
    margin-top: 1.75rem;
    gap: 0.85rem;
  }

  .gf-feature-card {
    padding: 1.35rem 1rem;
  }

  .gf-feature-card h3 {
    font-size: 1rem;
  }

  .gf-feature-card p {
    font-size: 1rem;
  }

  .gf-science__hero {
    margin-top: 1.75rem;
    gap: 1.35rem;
  }

  .gf-science__grid {
    gap: 0.85rem;
  }

  .gf-science__card {
    padding: 1.25rem;
  }

  .gf-showcase__grid {
    gap: 0.85rem;
  }

  .gf-showcase__caption {
    padding: 1rem 0.15rem 0;
  }

  .gf-showcase__caption h3 {
    font-size: 1.2rem;
  }

  .gf-showcase__caption p {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .gf-install__methods {
    gap: 1rem;
  }

  .gf-method {
    padding: 1.25rem;
  }

  .gf-method__desc {
    font-size: 1.05rem;
  }

  .gf-tech__grid {
    gap: 0.85rem;
  }

  .gf-tech__card {
    padding: 1.15rem;
  }

  .gf-faq-item {
    padding: 1rem 1.1rem;
  }

  .gf-faq-item summary {
    font-size: 0.95rem;
    gap: 0.75rem;
    line-height: 1.35;
  }

  .gf-faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .gf-pdp-cta-strip {
    padding: 1.35rem 0;
  }

  .gf-pdp-cta-strip--compact {
    padding: 1rem 0;
  }

  .gf-pdp-cta-strip__inner {
    width: 100%;
    gap: 0.65rem;
  }

  .gf-pdp-cta-strip__sub {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    padding-inline: 0.25rem;
  }

  .gf-pdp-cta,
  .gf-pdp-cta--large {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 4.5rem;
    font-size: 1.35rem;
  }

  .gf-funnel__box {
    padding: 1.75rem 1.15rem;
  }

  .gf-funnel .gf-pdp-cta--large {
    width: 100%;
    min-width: 0;
    min-height: 4.5rem;
    font-size: 1.25rem;
  }

  .gf-sticky-cart {
    padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
  }

  .gf-sticky-cart__inner {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.55rem;
  }

  .gf-sticky-cart__info {
    flex: 1 1 calc(100% - 8rem);
    min-width: 0;
  }

  .gf-sticky-cart__title {
    font-size: 0.78rem;
  }

  .gf-sticky-cart__price {
    font-size: 1.05rem;
  }

  .gf-sticky-cart__btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 3.65rem;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    order: 2;
  }

  body:has(.gf-sticky-cart.is-visible) {
    padding-bottom: calc(6.25rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 389px) {
  .gf-sticky-cart__info {
    flex-basis: 100%;
  }
}
