body.wf-instore-page {
  background: #f6f8f8;
  color: var(--wf-black);
  scroll-behavior: smooth;
}

.wf-instore-page .wf-shell {
  width: min(calc(100% - 32px), 1180px);
}

.wf-instore-page .wf-section {
  position: relative;
}

.wf-instore-page .wf-section--dark {
  color: var(--wf-white);
  background:
    radial-gradient(circle at top left, rgba(94, 240, 205, 0.12), transparent 22rem),
    linear-gradient(180deg, #000 0%, #071310 100%);
}

.wf-instore-page .wf-section--white,
.wf-instore-page .wf-section--light {
  color: var(--wf-black);
}

.wf-instore-page .wf-section--white {
  background: #ffffff;
}

.wf-instore-page .wf-section--light {
  background: #f0f4f3;
}

.wf-instore-page .wf-section--white .wf-title,
.wf-instore-page .wf-section--light .wf-title {
  max-width: 14ch;
}

.wf-instore-hero {
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 88px;
}

.wf-instore-hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -3rem auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 240, 205, 0.16), transparent 70%);
  pointer-events: none;
}

.wf-instore-page .wf-section--dark .wf-title,
.wf-instore-page .wf-section--dark .wf-display,
.wf-instore-page .wf-section--dark .wf-copy,
.wf-instore-page .wf-section--dark .wf-lead,
.wf-instore-page .wf-section--dark .wf-proof-item span,
.wf-instore-page .wf-section--dark .wf-faq p,
.wf-instore-page .wf-section--dark .wf-hero-panel__header p:last-child {
  color: var(--wf-white);
}

.wf-instore-page .wf-section--dark .wf-copy,
.wf-instore-page .wf-section--dark .wf-proof-item span,
.wf-instore-page .wf-section--dark .wf-faq p,
.wf-instore-page .wf-section--dark .wf-hero-panel__header p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.wf-instore-page .wf-section--white .wf-copy,
.wf-instore-page .wf-section--light .wf-copy,
.wf-instore-page .wf-section--white .wf-list,
.wf-instore-page .wf-section--light .wf-list {
  color: var(--wf-text-muted);
}

.wf-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wf-topbar__brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.wf-topbar__brand .wf-logo {
  width: clamp(180px, 18vw, 320px);
  height: auto;
}

.wf-topbar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.wf-topbar__products {
  position: relative;
}

.wf-topbar__products summary {
  list-style: none;
  cursor: pointer;
}

.wf-topbar__products summary::-webkit-details-marker {
  display: none;
}

.wf-topbar__link,
.wf-topbar__cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--wf-white);
  text-decoration: none;
  transition: opacity 160ms ease, color 160ms ease, background 160ms ease;
}

.wf-topbar__link {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.wf-topbar__link:hover,
.wf-inline-link:hover {
  color: var(--wf-mint);
}

.wf-topbar__link--products::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.wf-topbar__products[open] .wf-topbar__link--products::after {
  transform: translateY(2px) rotate(-135deg);
}

.wf-topbar__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 10;
  min-width: 416px;
  padding: 28px 28px 24px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.wf-topbar__dropdown-label {
  margin: 0 0 18px;
  font-family: "Geist Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8abb3;
}

.wf-topbar__dropdown-link {
  display: block;
  color: #101114;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.wf-topbar__dropdown-link + .wf-topbar__dropdown-link {
  margin-top: 18px;
}

.wf-topbar__dropdown-link:hover {
  color: #111111;
  opacity: 0.7;
}

.wf-topbar__cta {
  padding: 0 30px;
  border-radius: 14px;
  background: var(--wf-white);
  color: var(--wf-black);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
}

.wf-topbar__cta:hover {
  background: var(--wf-mint);
  color: var(--wf-black);
}

.wf-hero-grid,
.wf-tech-grid,
.wf-partner-columns,
.wf-final-cta {
  display: grid;
  gap: 32px;
  align-items: start;
}

.wf-hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 42px;
}

.wf-hero-panel {
  padding: 30px;
  border: 1px solid rgba(94, 240, 205, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(94, 240, 205, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-width: 640px;
}

.wf-hero-panel__header p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.wf-endpoint-list,
.wf-journey-grid,
.wf-benefits-grid,
.wf-setup-grid {
  display: grid;
  gap: 20px;
}

.wf-endpoint-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-endpoint-card,
.wf-journey-card,
.wf-benefit-card,
.wf-setup-card {
  border-radius: 24px;
  border: 1px solid var(--wf-border);
  background: #fff;
  padding: 24px;
}

.wf-endpoint-card {
  display: block;
  border-color: rgba(94, 240, 205, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wf-endpoint-card:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 240, 205, 0.44);
  background:
    linear-gradient(180deg, rgba(94, 240, 205, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
}

.wf-endpoint-card span,
.wf-mono-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wf-mono-label {
  color: var(--wf-mint);
}

.wf-mono-label--dark {
  color: var(--wf-black);
}

.wf-endpoint-card span {
  color: var(--wf-mint);
}

.wf-endpoint-card strong,
.wf-journey-card h3,
.wf-benefit-card h3,
.wf-setup-card h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.wf-endpoint-card p,
.wf-journey-card p,
.wf-benefit-card p,
.wf-setup-card p {
  margin: 0;
  line-height: 1.6;
}

.wf-endpoint-card p,
.wf-endpoint-card strong {
  color: var(--wf-white);
}

.wf-journey-card[id] {
  scroll-margin-top: 32px;
}

.wf-section-heading {
  display: grid;
  gap: 14px;
}

.wf-section-heading .wf-copy,
.wf-partner-banner .wf-copy {
  max-width: 46rem;
}

.wf-inline-link {
  color: var(--wf-mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.wf-inline-link--dark {
  color: var(--wf-black);
}

.wf-kicker--light {
  color: var(--wf-black);
  background: rgba(94, 240, 205, 0.08);
}

.wf-journey-grid,
.wf-benefits-grid,
.wf-setup-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-journey-card,
.wf-benefit-card,
.wf-setup-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.wf-journey-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 18px;
  background: #eef2f1;
}

.wf-journey-card::before,
.wf-benefit-card::before,
.wf-setup-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--wf-mint), rgba(94, 240, 205, 0.08));
}

.wf-journey-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.wf-journey-card > :not(.wf-journey-image) {
  grid-column: 2;
}

.wf-journey-card > .wf-journey-image {
  grid-column: 1;
  grid-row: 1 / span 4;
}

.wf-benefit-card,
.wf-setup-card {
  background: rgba(255, 255, 255, 0.88);
}

.wf-tech-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.wf-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-setup-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-partner-banner {
  padding: 36px;
  border: 1px solid var(--wf-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(94, 240, 205, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 252, 250, 0.96));
}

.wf-partner-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-button--ghost {
  border: 1px solid var(--wf-black);
  color: var(--wf-black);
  background: transparent;
}

.wf-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 36px;
  border: 1px solid rgba(94, 240, 205, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(94, 240, 205, 0.18), transparent 28rem),
    rgba(255, 255, 255, 0.04);
}

.wf-proof-item {
  padding: 24px;
  border: 1px solid rgba(94, 240, 205, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.wf-proof-item span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.wf-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.wf-list li + li {
  margin-top: 10px;
}

.wf-faq p {
  margin: 12px 0 0;
}

.wf-faq summary {
  position: relative;
  padding-right: 28px;
}

.wf-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--wf-mint);
}

.wf-faq details[open] summary::after {
  content: "−";
}

@media (max-width: 900px) {
  .wf-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .wf-topbar__links {
    gap: 16px;
    justify-content: flex-start;
  }

  .wf-topbar__dropdown {
    position: static;
    min-width: 0;
    width: min(100%, 420px);
    margin-top: 12px;
  }

  .wf-hero-grid,
  .wf-tech-grid,
  .wf-partner-columns,
  .wf-benefits-grid,
  .wf-setup-grid,
  .wf-final-cta {
    grid-template-columns: 1fr;
  }

  .wf-journey-grid {
    grid-template-columns: 1fr;
  }

  .wf-endpoint-list {
    grid-template-columns: 1fr;
  }

  .wf-journey-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wf-journey-card > :not(.wf-journey-image),
  .wf-journey-card > .wf-journey-image {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .wf-hero-panel,
  .wf-endpoint-card,
  .wf-journey-card,
  .wf-benefit-card,
  .wf-setup-card,
  .wf-partner-banner,
  .wf-final-cta {
    padding: 22px;
  }

  .wf-proof {
    grid-template-columns: 1fr;
  }

  .wf-journey-image {
    min-height: 260px;
    max-height: 360px;
  }

  .wf-actions,
  .wf-final-cta .wf-button {
    width: 100%;
  }

  .wf-actions .wf-button {
    width: 100%;
  }

  .wf-instore-page .wf-shell {
    width: min(calc(100% - 24px), 1180px);
  }
}
