:root {
  color-scheme: light;
  --font-guide: "LINE Seed JP", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --ink: #1a1a1a;
  --ink-2: #333333;
  --muted: #666666;
  --subtle: #888888;
  --line: #e8e8e5;
  --paper: #ffffff;
  --soft: #fafaf7;
  --soft-2: #f5f5f2;
  --blue: #2f9e88;
  --blue-strong: #247e6e;
  --blue-soft: #ecfbf7;
  --orange: #2f9e88;
  --orange-soft: #ecfbf7;
  --shadow: 0 1px 3px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-soft: 0 4px 12px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.04);
  --content-width: 1080px;
  --shell-width: 1144px;
  --page-gutter: 32px;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 28px;
  --text-4xl: 32px;
  --text-5xl: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

/* アクセシビリティ: キーボード操作時のフォーカスリングは消さない */
:focus-visible {
  outline: 2px solid var(--blue-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

/* 動きに敏感なユーザー（前庭障害等）への配慮（WCAG 2.3.3） */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-guide);
  font-size: var(--text-md);
  letter-spacing: 0;
  line-height: 1.72;
}

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

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: translateY(-12px);
}

.skip-link:focus {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 62px;
  border-bottom: 1px solid #e8e8e5;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  width: 100%;
  max-width: var(--shell-width);
  min-height: 62px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.brand {
  min-height: 62px;
  font-size: 1.42rem;
  font-family: var(--font-guide);
  letter-spacing: 0;
}

.site-header-logo {
  width: auto;
  height: 28px;
  display: block;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #7fd8c4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.site-header .brand-mark {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  color: var(--ink-2);
  font-size: 0.85rem;
  font-family: var(--font-guide);
  font-weight: 700;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
}

.top-nav svg,
.footer-links .external-link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.footer-links .external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-nav a:hover {
  color: var(--blue-strong);
  background: var(--blue-soft);
}

.text-link:hover,
.footer-links a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-guide);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.nav-cta {
  min-height: 38px;
  padding: 9px 15px;
  color: #fff;
  background: var(--ink);
  font-size: 0.84rem;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 34px rgba(47, 158, 136, 0.26);
}

.button-secondary {
  border: 1px solid rgba(47, 158, 136, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.button-disabled,
.button:disabled {
  cursor: not-allowed;
  box-shadow: none;
}

.button-primary.button-disabled {
  background: #dce5e2;
  color: #55635f;
}

.button-secondary.button-disabled {
  border-color: #d9dfdc;
  background: #f5f5f2;
  color: #68736f;
}

.button-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #55635f;
  font-size: var(--text-xs);
  font-weight: 900;
  white-space: nowrap;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-disabled:hover,
.button:disabled:hover {
  transform: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.space-type-actions .cta-row {
  margin-bottom: 14px;
}

.early-access-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid rgba(47, 158, 136, 0.24);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-strong);
  font-size: var(--text-sm);
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease;
}

.early-access-link:hover {
  border-color: rgba(47, 158, 136, 0.48);
  background: var(--blue-soft);
}

.early-access-link svg {
  width: 15px;
  height: 15px;
}

.breadcrumb {
  width: 100%;
  max-width: var(--shell-width);
  margin: 20px auto 0;
  padding-inline: var(--page-gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--subtle);
  font-size: var(--text-sm);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--muted);
}

section[id] {
  scroll-margin-top: 84px;
}

.bc-sep {
  color: #bbbbbb;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 900;
  font-family: var(--font-guide);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 78px var(--page-gutter);
}

.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  background: var(--soft-2);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.row-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section h2,
.sport-hero h1,
.hero h1 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
  font-weight: 900;
}

.section h2 {
  font-size: var(--text-3xl);
  line-height: 1.3;
}

.section-head > p:not(.eyebrow),
.preview-copy > p,
.sites-upsell p,
.hero p,
.sport-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--text-base);
}

.space-type-directory {
  width: 100%;
  max-width: var(--shell-width);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px var(--page-gutter) 80px;
}

.space-type-directory-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.space-type-directory-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.space-type-directory-head > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--text-base);
}

.space-type-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.space-type-directory-grid > a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(47, 158, 136, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #ecfbf7 100%);
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease;
}

.space-type-directory-grid > a:hover {
  border-color: rgba(47, 158, 136, 0.48);
  transform: translateY(-4px);
}

.space-type-directory-grid > a > div {
  margin: auto 0;
}

.space-type-directory-grid h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1.25;
}

.space-type-directory-grid p {
  margin: 0;
  color: var(--muted);
}

.space-type-directory-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}

.space-type-directory-grid svg {
  width: 18px;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: end;
  padding: 64px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(236, 251, 247, 0.42) 100%),
    var(--hero-image) center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: rgba(47, 158, 136, 0.16);
}

.hero-plain {
  min-height: auto;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 158, 136, 0.14), transparent 23rem),
    linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
}

.hero-guide h1 span {
  display: block;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: var(--text-5xl);
  line-height: 1.3;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
}

/* Guide Home — content migrated from sofuca.com */
.home-page {
  background: var(--paper);
}

.home-page section[id] {
  scroll-margin-top: 130px;
}

.home-hero :focus-visible,
.home-section-dark :focus-visible,
.home-final-cta :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 2px rgba(6, 25, 21, 0.78);
}

.home-hero {
  min-height: clamp(640px, calc(100svh - 62px), 820px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #102f29;
  color: #fff;
}

.home-hero-media,
.home-hero-scrim,
.home-hero-slide {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  z-index: -3;
}

.home-hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.home-hero-slide.active {
  opacity: 1;
}

.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 25, 21, 0.55) 0%, rgba(6, 25, 21, 0.72) 72%, rgba(6, 25, 21, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 25, 21, 0.25), rgba(6, 25, 21, 0.06), rgba(6, 25, 21, 0.25));
}

.home-hero-inner {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 80px var(--page-gutter) 112px;
  text-align: center;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: var(--blue);
}

.home-kicker-light {
  color: rgba(255, 255, 255, 0.82);
}

.home-kicker-light::before {
  background: #7be0bd;
}

.home-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.24;
  text-wrap: balance;
}

.home-hero-title-line {
  display: block;
  color: #fff;
}

.home-hero-title-line:last-child {
  white-space: nowrap;
}

.home-hero h1 em {
  color: #72d9b4;
  font-style: normal;
}

.home-section-heading h2 span {
  color: var(--blue-strong);
}

.home-final-cta h2 span {
  color: #72d9b4;
}

.home-hero-inner > p:not(.home-kicker) {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--text-lg);
  line-height: 1.9;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.home-button-primary {
  background: var(--blue-strong);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 45, 37, 0.28);
}

.home-button-primary:hover {
  background: var(--blue-strong);
}

.home-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(9, 34, 28, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.home-button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.home-hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.home-hero-controls button {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.home-hero-controls button:not(.home-hero-pause)::before {
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transition: width 180ms ease, background 180ms ease;
}

.home-hero-controls button[aria-pressed="true"]::before {
  width: 24px;
  background: #fff;
}

.home-hero-controls .home-hero-pause {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-guide);
  font-size: 10px;
  font-weight: 900;
}

.home-jump-nav {
  position: sticky;
  top: 62px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.home-jump-nav > div {
  width: 100%;
  max-width: var(--shell-width);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.home-jump-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
}

.home-jump-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.home-section {
  width: 100%;
  padding: clamp(76px, 10vw, 128px) var(--page-gutter);
  border-top: 1px solid var(--line);
}

.home-section-white {
  background: var(--paper);
}

.home-section-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.home-section-heading {
  max-width: 800px;
}

.home-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.32;
  text-wrap: balance;
}

.home-section-heading > p:not(.home-kicker) {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.95;
}

.home-section-services {
  background:
    radial-gradient(circle at 88% 16%, rgba(47, 158, 136, 0.12), transparent 25rem),
    linear-gradient(180deg, #f8fcfa 0%, #f3f8f6 100%);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.home-service-card {
  --service-accent: var(--blue);
  min-height: 330px;
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(47, 158, 136, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.home-service-card::before {
  height: 4px;
  position: absolute;
  inset: 0 0 auto;
  content: "";
  background: var(--service-accent);
}

.home-service-card-sites {
  --service-accent: var(--blue-strong);
}

.home-service-card-space {
  --service-accent: #4cb79f;
}

.home-service-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--service-accent);
}

.home-service-icon svg {
  width: 24px;
  height: 24px;
}

.home-service-label {
  margin: 24px 0 6px;
  color: var(--service-accent);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-2xl);
  line-height: 1.35;
}

.home-service-card > p:not(.home-service-label) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.home-service-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue-strong);
  font-weight: 900;
}

.home-service-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-service-link svg {
  width: 17px;
  height: 17px;
}

.home-network {
  margin-top: 68px;
  padding-top: 62px;
  border-top: 1px solid rgba(47, 158, 136, 0.2);
}

.home-network-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 32px 64px;
  align-items: end;
}

.home-network-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-wrap: balance;
}

.home-network-heading h3 span {
  color: var(--blue-strong);
}

.home-network-heading > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.9;
}

.home-network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.home-network-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(47, 158, 136, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.home-network-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-network-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.home-network-icon svg {
  width: 20px;
  height: 20px;
}

.home-network-card-top p {
  margin: 0;
  color: var(--blue-strong);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-network-card h4 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: var(--text-xl);
  line-height: 1.45;
}

.home-network-description {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-network-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-strong);
  font-weight: 900;
}

.home-network-link:hover,
.home-network-subbrands a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-network-link svg,
.home-network-subbrands svg {
  width: 16px;
  height: 16px;
}

.home-network-subbrands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.home-network-subbrands a {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 158, 136, 0.22);
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: var(--text-sm);
  font-weight: 900;
}

.home-network-subbrands a > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-network-subbrands small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-network-subbrands + .home-network-link {
  margin-top: 8px;
}

.home-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.home-problem-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(47, 158, 136, 0.17);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff 0%, #f6fcfa 100%);
  box-shadow: var(--shadow);
}

.home-problem-grid article > span {
  display: inline-flex;
  min-width: 38px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-size: var(--text-xs);
  font-weight: 900;
}

.home-problem-grid h3 {
  margin: 30px 0 10px;
  font-size: var(--text-xl);
  line-height: 1.4;
}

.home-problem-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.home-section-alt {
  background: var(--soft-2);
}

.home-section-dark {
  border-color: rgba(255, 255, 255, 0.11);
  background: #102f29;
  color: #fff;
}

.home-section-dark .home-kicker,
.home-section-dark .home-section-heading > p:not(.home-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.home-section-dark .home-section-heading h2 {
  color: #fff;
}

.home-section-dark .home-section-heading h2 span {
  color: #72d9b4;
}

.home-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 54px;
}

.home-before-after article {
  min-height: 330px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-before-after .home-before-after-sofuca {
  border-color: rgba(47, 158, 136, 0.34);
  background: linear-gradient(145deg, #ffffff 0%, #eaf8f4 100%);
  box-shadow: 0 18px 44px rgba(36, 126, 110, 0.12);
}

.home-card-label {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: var(--text-xl);
  font-weight: 900;
}

.home-before-after-sofuca .home-card-label {
  color: var(--blue-strong);
}

.home-before-after ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-before-after li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 800;
}

.home-before-after li::before {
  position: absolute;
  top: 0.68em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #c9cfcc;
}

.home-before-after-sofuca li::before {
  background: var(--blue);
}

.home-before-after-arrow {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-strong);
  color: #fff;
  font-size: var(--text-xl);
  font-weight: 900;
}

.home-concept-statement {
  margin-top: 54px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 10%, rgba(114, 217, 180, 0.22), transparent 20rem),
    #102f29;
  color: #fff;
}

.home-concept-statement p {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.48;
}

.home-concept-statement strong {
  color: #72d9b4;
}

.home-cycle {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: home-cycle;
}

.home-cycle li {
  min-height: 128px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 22px 16px;
  border: 1px solid rgba(47, 158, 136, 0.2);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  counter-increment: home-cycle;
}

.home-cycle li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  content: "0" counter(home-cycle);
  color: var(--blue-strong);
  font-size: 10px;
  font-weight: 900;
}

.home-cycle li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  content: "›";
  color: var(--blue-strong);
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-50%);
}

.home-cycle span {
  font-weight: 900;
  line-height: 1.5;
}

.home-table-scroll {
  margin-top: 52px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--ink-2);
  text-align: left;
}

.home-comparison-table caption {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
  text-align: left;
}

.home-comparison-table th,
.home-comparison-table td {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.home-comparison-table tr:last-child > * {
  border-bottom: 0;
}

.home-comparison-table tr > *:last-child {
  border-right: 0;
}

.home-comparison-table thead th,
.home-comparison-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.home-comparison-table .home-table-sofuca {
  background: #eaf8f4;
  color: #1e5e4e;
  font-weight: 900;
}

.home-difference-note {
  max-width: 780px;
  margin-top: 42px;
  padding-left: 26px;
  border-left: 3px solid var(--blue);
}

.home-difference-note p {
  margin: 0 0 12px;
  color: var(--muted);
}

.home-difference-note strong {
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.home-experience-flow,
.home-story-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.home-experience-flow li,
.home-story-flow li {
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(47, 158, 136, 0.2);
  border-radius: 10px;
  background: #fff;
}

.home-experience-flow li > span,
.home-story-flow li > span {
  color: var(--blue-strong);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-experience-flow strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.home-value-grid article {
  min-height: 270px;
  padding: 34px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-value-grid article > p,
.home-usecase-grid article > span {
  margin: 0;
  color: var(--blue-strong);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-value-grid h3,
.home-usecase-grid h3,
.home-story-flow h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: var(--text-xl);
  line-height: 1.45;
}

.home-value-grid article > span,
.home-usecase-grid p,
.home-story-flow p {
  color: var(--muted);
  line-height: 1.85;
}

.home-section-closing {
  max-width: 760px;
  margin: 38px 0 0;
  color: var(--ink-2);
  font-size: var(--text-lg);
  font-weight: 800;
}

.home-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.home-usecase-grid article {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, #fff 0%, #f8fbfa 100%);
}

.home-usecase-grid p,
.home-story-flow p {
  margin: 0;
}

.home-story-flow h3 {
  margin-top: 24px;
}

.home-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.home-quotes blockquote {
  min-height: 190px;
  margin: 0;
  padding: 30px;
  border-radius: 10px;
  background: #102f29;
  color: #fff;
}

.home-quotes blockquote::before {
  content: "“";
  color: #72d9b4;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.home-quotes p {
  margin: 14px 0 26px;
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.75;
}

.home-quotes cite {
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--text-sm);
  font-style: normal;
}

.home-asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.home-asset-grid article {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.home-asset-grid strong {
  color: #fff;
  font-size: var(--text-lg);
}

.home-asset-grid span {
  color: rgba(255, 255, 255, 0.6);
}

.home-sponsor-note {
  max-width: 840px;
  margin-top: 42px;
  padding: 30px;
  border-left: 3px solid #72d9b4;
  background: rgba(255, 255, 255, 0.05);
}

.home-sponsor-note strong {
  color: #fff;
  font-size: var(--text-xl);
  line-height: 1.6;
}

.home-sponsor-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.home-final-cta {
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 88px var(--page-gutter);
  background:
    radial-gradient(circle at 82% 24%, rgba(114, 217, 180, 0.18), transparent 24rem),
    linear-gradient(135deg, #0c2420 0%, #174a40 100%);
  color: #fff;
  text-align: center;
}

.home-final-cta > div {
  width: 100%;
  max-width: 760px;
}

.home-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.35;
}

.home-final-cta > div > p:not(.home-kicker) {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-lg);
}

.sport-hero {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 32px;
  align-items: center;
  padding: 64px var(--page-gutter);
  position: relative;
}

.space-type-detail-hero-no-media {
  grid-template-columns: minmax(0, 760px);
}

.space-type-detail-hero-no-media .sport-hero-copy,
.space-type-detail-hero-no-media .sport-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
}

.sport-hero::before {
  content: "";
  position: absolute;
  inset: -20px calc(50% - 50vw) 0;
  z-index: -1;
  border-bottom: 2px solid var(--line);
  background:
    radial-gradient(circle at 78% 24%, rgba(47, 158, 136, 0.18), transparent 21rem),
    linear-gradient(115deg, #ffffff 0%, #fafaf7 48%, #ecfbf7 100%);
}

.sport-hero h1 {
  max-width: 620px;
  font-size: var(--text-5xl);
  line-height: 1.3;
  font-weight: 900;
}

.sport-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  line-height: 1.9;
}

.sport-hero-visual {
  min-width: 0;
  min-height: 420px;
  position: relative;
}

.hero-home-showcase {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.hero-home-showcase figure {
  min-width: 0;
  height: min(560px, 58vw);
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fafaf7;
  box-shadow: 0 24px 54px rgba(47, 158, 136, 0.16);
}

.hero-home-showcase span,
.screen-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-strong);
  font-family: var(--font-guide);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
}

.hero-home-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fafaf7;
}

.sport-hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 0;
  box-shadow: var(--shadow-soft);
}

.hero-device {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: min(230px, 42%);
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(17, 24, 39, 0.14);
}

.hero-device figcaption {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1.25;
}

.hero-device figcaption span,
.hero-device figcaption b {
  overflow-wrap: anywhere;
}

.hero-device img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-list p {
  margin: 0;
  padding: 18px 20px 18px 48px;
  position: relative;
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-2);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.problem-list p::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

.principle-grid,
.category-grid,
.sport-home-grid,
.steps {
  display: grid;
  gap: 16px;
}

.principle-grid {
  grid-template-columns: repeat(4, 1fr);
}

.principle-grid article,
.category-card,
.plan-card,
.sport-start-card,
.stack-list article,
details {
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.principle-grid article {
  min-height: 210px;
  padding: 26px;
}

.principle-grid h3,
.category-card h3,
.plan-card h3,
.sport-start-copy h3,
.stack-list h3 {
  margin: 0 0 9px;
  color: var(--ink);
  line-height: 1.4;
}

.principle-grid p,
.category-card p,
.plan-card li,
.sport-start-copy p,
.stack-list p,
.problem-list p {
  color: var(--muted);
}

.category-grid {
  grid-template-columns: 1.5fr repeat(2, 1fr);
}

.category-card {
  min-height: 238px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.category-text-only {
  justify-content: flex-end;
  background:
    linear-gradient(135deg, #ffffff 0%, #ecfbf7 100%);
}

.category-card div {
  padding: 24px;
}

.category-card span,
.plan-card span,
.sport-start-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  font-size: 1.35rem;
}

.category-soon {
  justify-content: end;
  background: #ffffff;
}

.category-soon span {
  color: var(--subtle);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

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

.space-type-collection-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px 44px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(47, 158, 136, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(236, 251, 247, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.space-type-collection-card > div > span {
  color: var(--blue);
  font-family: var(--font-guide);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-type-collection-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: var(--text-2xl);
}

.space-type-collection-card p {
  margin: 0;
  color: var(--muted);
}

.space-type-collection-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.space-type-collection-card li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47, 158, 136, 0.1);
  color: var(--blue-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.space-type-collection-card > strong {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 8px;
  color: var(--blue);
}

.space-type-collection-card svg {
  width: 18px;
}

.space-type-subgroup {
  margin-top: 52px;
}

.space-type-subgroup .section-head {
  margin-bottom: 22px;
}

.space-type-subgroup .section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-2xl);
}

.section-lead {
  max-width: 760px;
  margin: -8px 0 0;
  color: var(--muted);
}

.space-type-link-grid,
.space-type-info-grid,
.space-type-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.space-type-link-grid > a,
.space-type-info-grid > article,
.space-type-page-grid > article,
.space-type-recommendation aside {
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.space-type-link-grid > a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  color: inherit;
}

.space-type-link-grid > a > span,
.space-type-info-grid > article > span {
  color: var(--blue);
  font-family: var(--font-guide);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-type-link-grid h3,
.space-type-info-grid h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: var(--text-xl);
}

.space-type-link-grid p,
.space-type-info-grid p {
  margin: 0;
  color: var(--muted);
}

.space-type-link-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
}

.space-type-link-grid svg {
  width: 18px;
}

.audience-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-chip-list li {
  padding: 12px 16px;
  border: 1px solid rgba(47, 158, 136, 0.2);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-weight: 900;
}

.space-type-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-type-info-grid > article,
.space-type-page-grid > article {
  min-height: 230px;
  padding: 24px;
}

.space-type-page-grid > article {
  display: flex;
  flex-direction: column;
}

.space-type-page-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.space-type-page-label {
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-type-page-grid h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: var(--text-xl);
}

.space-type-page-grid p {
  margin: 0;
  color: var(--muted);
}

.space-type-info-grid-without-number h3 {
  margin-top: 0;
}

.space-type-demo-link {
  margin-block: 32px;
}

.space-type-recommendation aside {
  padding: 28px;
}

.space-type-recommendation aside > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.1rem;
}

.space-type-recommendation dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.space-type-recommendation dl div {
  padding: 16px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.space-type-recommendation dt {
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 900;
}

.space-type-recommendation dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.feature-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-width: 0;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(150px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 247, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}

.feature-card-featured {
  grid-column: 1 / -1;
  min-height: 470px;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
}

.feature-card:not(.feature-card-featured) {
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.8fr);
}

.feature-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.32rem;
}

.feature-card h3 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: var(--text-2xl);
  line-height: 1.32;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.feature-screen {
  min-width: 0;
  margin: 0;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.feature-screen-pair {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.feature-card:not(.feature-card-featured) .feature-screen {
  width: min(100%, 300px);
  height: 390px;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f2 100%);
}

.feature-card-featured .feature-screen {
  height: 430px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f2 100%);
}

.feature-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
}

.feature-pictogram {
  min-width: 0;
  min-height: 278px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, var(--blue-soft) 100%);
  color: var(--blue);
  font-size: clamp(4.2rem, 8vw, 6.8rem);
}

.paid-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-guide);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(47, 158, 136, 0.22);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  font-family: var(--font-guide);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.access-badge {
  flex: none;
  letter-spacing: 0;
  text-transform: none;
}

.paid-badge-inline {
  min-height: 22px;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 0.68rem;
  vertical-align: middle;
}

.preview-section,
.sites-upsell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 50px;
  align-items: center;
}

.plan-difference {
  margin: 34px auto 0;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: stretch;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(94, 196, 176, 0.3), transparent 20rem),
    linear-gradient(135deg, #0f302a 0%, #174a40 56%, #2f9e88 100%);
  color: #fff;
  box-shadow: 0 24px 62px rgba(15, 48, 42, 0.22);
}

.plan-difference-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #aee9da;
  font-family: var(--font-guide);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-difference-copy h3 {
  margin: 0;
  color: #fff;
  font-size: var(--text-2xl);
  line-height: 1.3;
}

.plan-difference-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.plan-difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-difference-list > div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.plan-difference-list strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.02rem;
}

.plan-difference-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-difference-list li {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.plan-difference-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #aee9da;
  font-weight: 900;
}

.screen-showcase {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-items: start;
}

.screen-showcase-compact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  grid-template-areas:
    "main sub"
    "main sub2";
}

.screen-showcase-full {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.screen-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.screen-showcase-compact .screen-shot-1 {
  grid-area: main;
}

.screen-showcase-compact .screen-shot-2 {
  grid-area: sub;
}

.screen-showcase-compact .screen-shot-3 {
  grid-area: sub2;
}

.screen-shot img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: top;
  background: #ecfbf7;
}

.screen-showcase-full .screen-shot img {
  max-height: 390px;
}

.screen-shot figcaption {
  min-height: 62px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.screen-shot figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-family: var(--font-guide);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.sport-home-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.sport-start-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
  box-shadow: var(--shadow-soft);
}

.sport-start-screen {
  height: 430px;
  margin: 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #f5f5f2;
  box-shadow: none;
}

.sport-start-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sport-start-phone {
  margin: 20px 20px 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafaf7, #ecfbf7);
}

.sport-start-cover {
  height: 148px;
  overflow: hidden;
}

.sport-start-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-start-body {
  padding: 0 15px 16px;
}

.sport-start-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -29px auto 10px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--sport);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.sport-start-team,
.sport-start-sub {
  margin: 0;
  text-align: center;
}

.sport-start-team {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.35;
}

.sport-start-sub {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 800;
}

.sport-start-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.sport-start-actions span {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: none;
}

.sport-start-actions svg {
  color: var(--sport);
  font-size: 1.08rem;
}

.sport-start-next {
  margin-top: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: none;
}

.sport-start-next small,
.sport-start-next span {
  display: block;
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 800;
}

.sport-start-next b {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  line-height: 1.35;
}

.sport-start-copy {
  padding: 24px 20px 18px;
}

.sport-start-copy > span {
  color: var(--blue);
}

.sport-start-copy h3 {
  min-height: 2.9em;
  display: flex;
  align-items: flex-end;
  font-size: var(--text-2xl);
}

.sport-start-action {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 24px;
}

.sport-start-action .button {
  width: 100%;
  min-height: 56px;
}

.sport-start-action p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-subhead {
  margin-top: 64px;
}

.sport-home-grid-planned .sport-start-card {
  background: rgba(255, 255, 255, 0.72);
}

.sport-home-grid-planned .sport-start-screen {
  opacity: 0.86;
}

.unsupported-card {
  margin-top: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #ecfbf7 100%);
  box-shadow: var(--shadow-soft);
}

.unsupported-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: var(--text-xl);
  line-height: 1.4;
}

.unsupported-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.plan-grid {
  max-width: 940px;
  grid-template-columns: repeat(2, 1fr);
  margin: 28px auto 0;
}

.plan-card {
  padding: 30px;
}

.plan-paid {
  border-color: rgba(47, 158, 136, 0.2);
  background: var(--orange-soft);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.stack-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stack-list article {
  padding: 18px;
}

.steps {
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
  counter-reset: step;
}

.steps li {
  min-height: 190px;
  padding: 26px 22px;
  position: relative;
  border: 1px solid rgba(47, 158, 136, 0.18);
  border-right: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.steps li:first-child {
  border-radius: 8px 0 0 8px;
}

.steps li:last-child {
  border-right: 1px solid rgba(47, 158, 136, 0.18);
  border-radius: 0 8px 8px 0;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(47, 158, 136, 0.18);
  border-right: 1px solid rgba(47, 158, 136, 0.18);
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.steps span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.74rem;
  font-family: var(--font-guide);
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.benefits-section {
  padding-top: 22px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 247, 0.94));
  box-shadow: var(--shadow-soft);
}

.benefit-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 1.48rem;
}

.benefit-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.benefit-grid a {
  color: var(--blue-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.sites-upsell {
  margin-bottom: 76px;
  padding: 40px;
  border: 1px solid rgba(47, 158, 136, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #ecfbf7 100%);
  box-shadow: var(--shadow-soft);
}

.sites-upsell-banner {
  width: 100%;
  max-width: none;
  margin: 0 0 76px;
  padding: 58px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(100deg, #0f302a 0%, #174a40 58%, #2f9e88 100%);
  color: #fff;
  box-shadow: none;
}

.sites-upsell-banner h2 {
  color: #fff;
}

.sites-upsell-banner p,
.sites-upsell-banner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.sites-upsell-banner .button-secondary {
  border: 0;
  background: #fff;
  color: var(--ink);
}

.site-footer {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 48px var(--page-gutter) 64px;
  border-top: 1px solid rgba(47, 158, 136, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-brand p {
  margin: 0;
  font-weight: 900;
}

.footer-brand small {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .home-network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-cycle,
  .home-experience-flow,
  .home-usecase-grid,
  .home-story-flow,
  .home-quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cycle li:nth-child(2n)::after {
    display: none;
  }

  .home-value-grid {
    grid-template-columns: 1fr;
  }

  .home-value-grid article {
    min-height: 0;
  }

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

  .sport-hero,
  .split,
  .preview-section,
  .sites-upsell {
    grid-template-columns: 1fr;
  }

  .plan-difference {
    grid-template-columns: 1fr;
  }

  .feature-grid-two {
    grid-template-columns: 1fr;
  }

  .sport-hero-visual {
    min-height: 430px;
  }

  .sport-hero-photo {
    height: 430px;
  }

  .principle-grid,
  .space-type-collection-card,
  .space-type-link-grid,
  .space-type-info-grid,
  .space-type-page-grid,
  .sport-home-grid,
  .steps,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    gap: 14px;
  }

  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    border: 1px solid rgba(47, 158, 136, 0.18);
    border-radius: 8px;
  }

  .steps li::after {
    display: none;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sport-start-screen {
    height: 390px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 16px;
  }

  .site-header {
    min-height: auto;
  }

  .site-header-inner {
    width: 100%;
  }

  .site-header-inner {
    min-height: 56px;
  }

  .site-header-logo {
    height: 25px;
  }

  .brand {
    min-height: 0;
    font-size: 1.28rem;
  }

  .top-nav {
    margin-left: auto;
    font-size: 0.7rem;
  }

  .top-nav a {
    gap: 4px;
    padding: 7px 6px;
  }

  .top-nav svg {
    width: 12px;
    height: 12px;
  }

  .breadcrumb,
  .section,
  .sport-hero,
  .site-footer {
    width: 100%;
  }

  .breadcrumb {
    margin-top: 8px;
    align-items: center;
  }

  .breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .muted {
    padding-inline: var(--page-gutter);
  }

  .section {
    padding: 48px 0;
  }

  section[id] {
    scroll-margin-top: 118px;
  }

  .hero {
    min-height: auto;
    padding: 40px var(--page-gutter);
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero-inner {
    padding: 64px var(--page-gutter) 100px;
  }

  .home-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .home-hero-title-line:last-child {
    white-space: normal;
  }

  .home-hero h1 em {
    display: block;
  }

  .home-hero-inner > p:not(.home-kicker) {
    font-size: var(--text-md);
  }

  .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .home-jump-nav {
    top: 57px;
  }

  .home-jump-nav > div {
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-jump-nav a {
    flex: 0 0 auto;
  }

  .home-section {
    padding: 68px var(--page-gutter);
  }

  .home-section-heading h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .home-section-heading > p:not(.home-kicker) {
    font-size: var(--text-md);
  }

  .home-service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .home-service-card {
    min-height: 0;
    padding: 28px;
  }

  .home-network {
    margin-top: 52px;
    padding-top: 48px;
  }

  .home-network-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-network-heading > p {
    font-size: var(--text-md);
  }

  .home-network-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .home-network-card {
    min-height: 0;
    padding: 24px;
  }

  .home-problem-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .home-before-after {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .home-before-after article {
    min-height: 0;
    padding: 26px;
  }

  .home-before-after-arrow {
    margin: -2px auto;
    transform: rotate(90deg);
  }

  .home-concept-statement {
    margin-top: 38px;
  }

  .home-cycle,
  .home-experience-flow,
  .home-usecase-grid,
  .home-story-flow,
  .home-quotes,
  .home-asset-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .home-cycle li {
    min-height: 96px;
  }

  .home-cycle li::after,
  .home-cycle li:nth-child(2n)::after {
    top: auto;
    right: 50%;
    bottom: -21px;
    display: block;
    transform: translateX(50%) rotate(90deg);
  }

  .home-cycle li:last-child::after {
    display: none;
  }

  .home-table-scroll {
    margin-top: 38px;
  }

  .home-difference-note {
    padding-left: 20px;
  }

  .home-experience-flow li,
  .home-story-flow li,
  .home-usecase-grid article,
  .home-quotes blockquote,
  .home-asset-grid article {
    min-height: 0;
    padding: 24px;
  }

  .home-value-grid {
    margin-top: 38px;
  }

  .home-value-grid article {
    padding: 26px;
  }

  .home-sponsor-note {
    padding: 24px;
  }

  .home-final-cta {
    min-height: 430px;
    padding: 68px var(--page-gutter);
  }

  .home-final-cta > div > p:not(.home-kicker) {
    font-size: var(--text-md);
  }

  .home-problem-grid article {
    min-height: 0;
    padding: 22px;
  }

  .home-problem-grid h3 {
    margin-top: 22px;
  }

  .hero h1,
  .sport-hero h1 {
    font-size: 30px;
  }

  .section h2 {
    font-size: var(--text-2xl);
  }

  .sport-hero {
    min-height: auto;
    padding: 34px 0 42px;
    gap: 28px;
  }

  .sport-hero-visual {
    min-height: 350px;
  }

  .hero-home-showcase {
    grid-template-columns: 1fr;
  }

  .hero-home-showcase figure:first-child {
    transform: none;
  }

  .hero-home-showcase figure {
    height: auto;
  }

  .hero-home-showcase img {
    height: auto;
    max-height: 620px;
  }

  .sport-hero-photo {
    height: 350px;
  }

  .hero-device {
    right: 12px;
    bottom: 12px;
    width: 180px;
    border-width: 4px;
    border-radius: 18px;
  }

  .hero-device img {
    height: 220px;
  }

  .cta-row,
  .row-head,
  .unsupported-card,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .unsupported-card .button {
    width: 100%;
  }

  .principle-grid,
  .category-grid,
  .space-type-collection-card,
  .space-type-directory-grid,
  .space-type-link-grid,
  .space-type-info-grid,
  .space-type-page-grid,
  .sport-home-grid,
  .plan-grid,
  .plan-difference-list,
  .steps,
  .benefit-grid,
  .feature-screen-pair,
  .screen-showcase-compact,
  .screen-showcase-full {
    grid-template-columns: 1fr;
  }

  .space-type-directory {
    width: 100%;
    padding: 48px var(--page-gutter) 56px;
  }

  .space-type-directory-head {
    margin-bottom: 30px;
  }

  .space-type-directory-head h1 {
    font-size: var(--text-3xl);
  }

  .space-type-directory-grid > a {
    min-height: 0;
    padding: 22px;
  }

  .space-type-link-grid > a,
  .space-type-info-grid > article,
  .space-type-page-grid > article,
  .benefit-grid article {
    min-height: 0;
    padding: 22px;
  }

  .screen-showcase-compact {
    grid-template-areas: none;
  }

  .screen-showcase-compact .screen-shot {
    grid-area: auto;
  }

  .screen-shot img,
  .screen-showcase-full .screen-shot img {
    max-height: 620px;
  }

  .principle-grid article,
  .category-card,
  .steps li {
    min-height: auto;
  }

  .category-card img {
    height: 210px;
  }

  .feature-grid-two {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding: 20px;
  }

  .feature-card-featured,
  .feature-card:not(.feature-card-featured) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-card:not(.feature-card-featured) .feature-screen,
  .feature-card-featured .feature-screen {
    width: 100%;
    height: auto;
    justify-self: stretch;
  }

  .feature-screen img {
    height: auto;
    max-height: 520px;
  }

  .feature-card-featured .feature-screen img {
    min-height: 0;
  }

  .feature-pictogram {
    min-height: 164px;
  }

  .feature-card p {
    font-size: var(--text-md);
  }

  .hero-home-showcase,
  .feature-screen-pair {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86%, 340px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 10px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .hero-home-showcase figure,
  .feature-screen-pair .feature-screen {
    scroll-snap-align: start;
  }

  .section-head-center {
    margin-inline: 0;
    text-align: left;
  }

  .early-access-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sport-start-phone {
    margin: 16px 16px 0;
  }

  .sport-start-cover {
    height: 132px;
  }

  .sport-start-screen {
    height: clamp(360px, 120vw, 440px);
    margin: 0 14px;
  }

  .sport-start-copy h3 {
    min-height: 0;
  }

  .sport-start-action {
    min-height: 0;
  }

  .sites-upsell,
  .unsupported-card,
  .plan-card,
  .plan-difference {
    padding: 24px;
  }

  .sites-upsell-banner {
    width: 100%;
    padding-inline: 16px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0 18px;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .home-jump-nav {
    top: 87px;
  }

  .home-page section[id] {
    scroll-margin-top: 154px;
  }

  .site-header-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand {
    min-height: 42px;
    justify-content: center;
  }

  .site-header-logo {
    height: 22px;
  }

  .top-nav {
    width: 100%;
    margin-left: 0;
    border-top: 1px solid var(--line);
  }

  .top-nav a {
    min-width: 0;
    min-height: 44px;
    flex: 1 1 0;
    justify-content: center;
    padding: 8px 4px;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .home-network-subbrands {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .hero-device {
    width: 150px;
  }

  .hero-device figcaption {
    padding: 8px;
  }

  .hero-device img {
    height: 180px;
  }

  .sport-start-actions {
    grid-template-columns: 1fr;
  }
}
