:root {
  --wg-cyan: #38bdf8;
  --wg-warm: #c4b5a8;
  --wg-navy: #020b1a;
  --wg-navy-deep: #010610;
  --wg-surface-elevated: #0a1628;
  --wg-bg: #010610;
  --wg-surface: #020b1a;
  --wg-border: rgba(148, 163, 184, 0.14);
  --wg-border-strong: rgba(56, 189, 248, 0.22);
  --wg-text: #e8eef4;
  --wg-muted: #8b9cb3;
  --wg-subtle: #64748b;
  --wg-serif: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
  --wg-max: 720px;
  --wg-wide: 1100px;
  --wg-section: 880px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wg-text);
  background: var(--wg-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--wg-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--wg-cyan);
  color: var(--wg-navy);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
  left: 0;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wg-cyan);
}

.section {
  max-width: var(--wg-wide);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section__header {
  max-width: var(--wg-section);
  margin: 0 auto 2rem;
  text-align: center;
}

.section__header--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section__header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--wg-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--wg-text);
}

.section__intro {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--wg-muted);
  line-height: 1.65;
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--wg-surface);
  border-bottom: 1px solid var(--wg-border);
}

.site-header__inner {
  max-width: var(--wg-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 0 auto;
  padding: 0;
  border: 1px solid var(--wg-border-strong);
  border-radius: 0.65rem;
  background: var(--wg-surface-elevated);
  color: var(--wg-text);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: var(--wg-cyan);
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.125rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -0.4rem;
}

.nav-toggle__icon::after {
  top: 0.4rem;
}

body.nav-open .nav-toggle__icon {
  background: transparent;
}

body.nav-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 1.5rem;
  left: auto;
  min-width: 13.5rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.35rem 0;
  border: 1px solid var(--wg-border-strong);
  border-radius: 0.75rem;
  background: var(--wg-surface-elevated);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

body.nav-open .nav {
  display: flex;
}

.nav a {
  color: var(--wg-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--wg-border);
}

.nav a:last-child {
  border-bottom: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--wg-cyan);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  font-weight: 600;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wg-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}

.brand:hover {
  text-decoration: none;
  color: var(--wg-text);
}

.brand__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}

/* —— Hero —— */
.hero {
  max-width: var(--wg-section);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
}

.hero__content {
  text-align: center;
}

.hero__logo-wrap {
  margin: 0 auto 1.25rem;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.hero__logo {
  width: min(120px, 28vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 50%;
}

.hero__cta {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--wg-cyan);
  color: var(--wg-navy-deep);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hero__cta:hover {
  text-decoration: none;
  color: var(--wg-navy-deep);
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero h1 {
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  font-family: var(--wg-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--wg-text);
}

.hero .section-eyebrow {
  margin-bottom: 0.5rem;
}

.hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--wg-muted);
  line-height: 1.65;
}

.hero__lead strong {
  color: var(--wg-text);
  font-weight: 600;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.store-links--center {
  margin: 1.25rem auto 0;
}

.store-links__note {
  margin: 0.75rem 0 0;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--wg-muted);
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 11.5rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border: 1px solid var(--wg-border-strong);
  border-radius: 0.75rem;
  background: var(--wg-surface);
  color: var(--wg-text);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.store-badge:hover {
  text-decoration: none;
  color: var(--wg-text);
  border-color: var(--wg-cyan);
  transform: translateY(-1px);
}

.store-badge__icon {
  flex-shrink: 0;
  color: var(--wg-cyan);
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.store-badge__label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--wg-muted);
  text-transform: none;
}

.store-badge__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.store-badge__soon {
  position: absolute;
  top: -0.45rem;
  right: -0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--wg-border-strong);
  color: var(--wg-cyan);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-badge--coming-soon {
  pointer-events: none;
  cursor: default;
  opacity: 0.92;
}

.store-badge--coming-soon:hover {
  border-color: var(--wg-border-strong);
  transform: none;
}

/* —— About —— */
.about {
  padding-top: 0;
}

.about__lead {
  max-width: var(--wg-section);
  margin: 0 auto;
  text-align: center;
  font-size: 1.0625rem;
  color: var(--wg-muted);
  line-height: 1.75;
}

/* —— Pillars (5 product pillars) —— */
.pillars {
  padding-top: 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--wg-section);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pillars__grid .pillar-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    justify-self: center;
    width: 100%;
  }
}

.pillar-card {
  background: var(--wg-surface-elevated);
  border: 1px solid var(--wg-border);
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
}

.pillar-card__num {
  margin: 0 0 0.65rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--wg-cyan);
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wg-text);
}

.pillar-card > p:not(.pillar-card__num) {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--wg-muted);
  line-height: 1.65;
}

/* —— For you —— */
.for-you .section__header {
  text-align: center;
}

.for-you .section__header h2 {
  font-family: var(--wg-serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 4vw, 2.25rem);
}

.for-you__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: var(--wg-wide);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.for-you__card {
  background: var(--wg-surface-elevated);
  border: 1px solid var(--wg-border);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
}

.for-you__card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--wg-muted);
  line-height: 1.6;
}

.for-you__arrow {
  color: var(--wg-cyan);
  margin-right: 0.35rem;
}

/* —— How it works —— */
.steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  background: var(--wg-surface-elevated);
  border: 1px solid var(--wg-border);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem 1.35rem 3.25rem;
}

.step-card__num {
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(196, 181, 168, 0.15);
  border: 1px solid rgba(196, 181, 168, 0.35);
  color: var(--wg-warm);
  font-size: 0.8125rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wg-text);
}

.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--wg-muted);
  line-height: 1.6;
}

/* —— Pricing —— */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--wg-surface-elevated);
  border: 1px solid var(--wg-border);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
}

.pricing-card--highlight {
  background:
    linear-gradient(160deg, rgba(56, 189, 248, 0.04) 0%, transparent 55%),
    var(--wg-surface-elevated);
}

.pricing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wg-cyan);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card__price {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wg-text);
  letter-spacing: -0.02em;
}

.pricing-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--wg-muted);
  line-height: 1.6;
}

.pricing__trust {
  max-width: var(--wg-section);
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--wg-subtle);
  line-height: 1.65;
}

/* —— Screens carousel —— */
.screens {
  padding-top: 0;
}

.screens-carousel {
  position: relative;
  max-width: 26rem;
  margin: 0 auto;
  outline: none;
}

.screens-carousel__viewport {
  overflow: hidden;
  border-radius: 1.25rem;
}

.screens-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.screens-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  text-align: center;
}

.screens-carousel__frame {
  position: relative;
  width: min(22rem, 92vw);
  aspect-ratio: 9 / 16.5;
  margin: 0 auto;
  border: 1px solid var(--wg-border);
  border-radius: 1.75rem;
  background: #000;
  overflow: hidden;
}

.screens-carousel__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.screens-carousel__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(56, 189, 248, 0.06) 0%, transparent 45%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(148, 163, 184, 0.04) 8px,
      rgba(148, 163, 184, 0.04) 9px
    );
}

.screens-carousel__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wg-subtle);
}

.screens-carousel__slide figcaption {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--wg-muted);
  line-height: 1.5;
}

.screens-carousel__nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--wg-border);
  border-radius: 999px;
  background: rgba(2, 11, 26, 0.85);
  color: var(--wg-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.screens-carousel__nav:hover {
  border-color: var(--wg-border-strong);
  background: var(--wg-surface-elevated);
}

.screens-carousel__nav--prev {
  left: -0.25rem;
}

.screens-carousel__nav--next {
  right: -0.25rem;
}

.screens-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.screens-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--wg-subtle);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.screens-carousel__dot.is-active {
  opacity: 1;
  background: var(--wg-cyan);
  transform: scale(1.15);
}

/* —— Philosophy —— */
.philosophy {
  padding-top: 0;
}

.philosophy__story {
  max-width: var(--wg-section);
  margin: 0 auto 1.25rem;
  text-align: center;
}

.philosophy__story p {
  margin: 0 0 1rem;
  font-family: var(--wg-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  color: var(--wg-muted);
  line-height: 1.75;
}

.philosophy__story p:last-child {
  margin-bottom: 0;
}

.philosophy__tagline {
  max-width: var(--wg-section);
  margin: 0 auto 1.25rem;
  text-align: center;
  font-family: var(--wg-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--wg-text);
  line-height: 1.75;
}

.philosophy__quote {
  position: relative;
  max-width: var(--wg-section);
  margin: 1.5rem auto 0;
  padding: 0.25rem 0 0.25rem 1.35rem;
  border: none;
  border-left: 3px solid var(--wg-cyan);
}

.philosophy__quote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 0.55rem;
  font-family: var(--wg-serif);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: var(--wg-cyan);
  opacity: 0.45;
  pointer-events: none;
}

.philosophy__quote p {
  margin: 0;
  padding: 0.85rem 0.25rem 0 0.75rem;
  font-family: var(--wg-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
  color: var(--wg-text);
  line-height: 1.75;
}

.philosophy__quote p::after {
  content: "\201D";
  display: inline-block;
  margin-left: 0.1em;
  font-family: var(--wg-serif);
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 0;
  color: var(--wg-cyan);
  opacity: 0.45;
  vertical-align: -0.2rem;
}

.philosophy__cite {
  margin: 1rem 0 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  color: var(--wg-muted);
  text-align: right;
}

.philosophy__cite cite {
  font-style: normal;
  font-weight: 600;
  color: var(--wg-text);
}

/* —— CTA band —— */
.cta-band {
  max-width: var(--wg-wide);
  margin: 0 auto 3rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--wg-border);
}

.cta-band__lead {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  font-family: var(--wg-serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--wg-text);
  line-height: 1.45;
}

.cta-band__sub {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  color: var(--wg-muted);
  line-height: 1.55;
}

.cta-band__fine {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--wg-subtle);
  line-height: 1.5;
}

.cta-band__waitlist {
  margin: 0 0 1.75rem;
}

.cta-band__btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  background: var(--wg-cyan);
  color: var(--wg-navy-deep);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.cta-band__btn:hover {
  text-decoration: none;
  color: var(--wg-navy-deep);
  opacity: 0.92;
  transform: translateY(-1px);
}

.cta-band__btn:focus-visible {
  outline: 2px solid var(--wg-cyan);
  outline-offset: 3px;
}

.faq__list {
  margin: 0;
}

.faq__item {
  background: var(--wg-surface-elevated);
  border: 1px solid var(--wg-border);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item dt {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--wg-text);
}

.faq__item dd {
  margin: 0;
  color: var(--wg-muted);
  line-height: 1.6;
}

.faq__item dd p {
  margin: 0 0 0.75rem;
}

.faq__item dd p:last-child {
  margin-bottom: 0;
}

.legal {
  max-width: var(--wg-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal__meta {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--wg-subtle);
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wg-text);
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wg-text);
}

.legal h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wg-text);
}

.legal p,
.legal li {
  color: var(--wg-muted);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 0;
}

.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border: 1px solid var(--wg-border);
  border-radius: 0.75rem;
  background: var(--wg-surface);
}

.legal-table-wrap table {
  margin: 0;
}

.legal-table-wrap th:first-child,
.legal-table-wrap td:first-child {
  padding-left: 1rem;
}

.legal-table-wrap th:last-child,
.legal-table-wrap td:last-child {
  padding-right: 1rem;
}

.legal th,
.legal td {
  border: 1px solid var(--wg-border-strong);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  color: var(--wg-muted);
}

.legal th {
  background: var(--wg-surface-elevated);
  font-weight: 600;
  color: var(--wg-text);
}

.site-footer {
  border-top: 1px solid var(--wg-border);
  background: var(--wg-surface);
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
  color: var(--wg-muted);
}

.site-footer__inner {
  max-width: var(--wg-wide);
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--wg-text);
}

.site-footer__brand img {
  border-radius: 50%;
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--wg-cyan);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.site-footer__nav a {
  color: var(--wg-muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer__nav a:hover {
  color: var(--wg-cyan);
  text-decoration: none;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--wg-subtle);
}

.site-footer__meta {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--wg-subtle);
}

.site-footer__meta a {
  color: var(--wg-muted);
  text-decoration: none;
}

.site-footer__meta a:hover {
  color: var(--wg-cyan);
  text-decoration: none;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  font-weight: 500;
}

@media (max-width: 767px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header__inner {
    padding: 0.85rem 1rem;
  }

  .nav {
    right: 1rem;
    left: 1rem;
    min-width: 0;
  }

  .hero {
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__cta {
    font-size: 0.875rem;
    padding: 0.65rem 1.15rem;
  }

  .screens-carousel {
    max-width: 100%;
    padding: 0 2.5rem;
  }

  .screens-carousel__nav--prev {
    left: 0;
  }

  .screens-carousel__nav--next {
    right: 0;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .store-links {
    flex-direction: column;
    align-items: stretch;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .store-badge {
    width: 100%;
    min-width: 0;
  }

  .pillars__grid,
  .steps__list,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .legal {
    padding: 1.75rem 1rem 3rem;
  }

  .legal h2 {
    font-size: 1.125rem;
  }

  .site-footer {
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__inner {
    padding: 1rem 1.25rem;
  }

  .nav {
    right: 1.25rem;
  }

  .hero {
    padding: 2rem 1.25rem 2rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem 1.25rem;
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.2rem 0;
    border-bottom: none;
    font-size: 0.8125rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }
}
