:root {
  --bg: #eef2ef;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #1b1f23;
  --muted: #5f6870;
  --green: #1e7a3c;
  --green-dark: #14552a;
  --border: rgba(27, 31, 35, 0.08);
  --shadow: 0 18px 40px rgba(20, 26, 32, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(238, 242, 239, 0.84), rgba(238, 242, 239, 0.92)),
    url("images/soccerfield.jpg") center center / cover fixed no-repeat;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 248, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--green);
}

.hero-section {
  position: relative;
  padding: 72px 0 64px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 18, 10, 0.08), rgba(8, 18, 10, 0.04));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.hero-logo {
  width: min(300px, 100%);
  margin-bottom: 22px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}

.hero-actions,
.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  background: rgba(27, 31, 35, 0.06);
  color: var(--text);
  border: 1px solid rgba(27, 31, 35, 0.08);
}

.button-secondary:hover {
  background: rgba(27, 31, 35, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(100%, 360px);
  background: var(--panel-strong);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(20, 26, 32, 0.12);
  text-align: center;
}

.hero-app-icon {
  width: min(100%, 250px);
  margin: 0 auto 18px;
}

.hero-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.content-section {
  padding: 40px 0;
}

.alt-section {
  padding-top: 12px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.feature-panel h2,
.callout-panel h2,
.final-cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.section-heading p,
.feature-panel p,
.callout-panel p,
.final-cta-panel p,
.info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel-grid {
  display: grid;
  gap: 22px;
}

.panel-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-grid.two-up,
.two-column-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
}

.info-panel h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.product-panel .text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
}

.product-panel .text-link:hover {
  text-decoration: underline;
}

.callout-panel,
.final-cta-panel {
  text-align: center;
  background: var(--panel-strong);
}

.site-footer {
  margin-top: 36px;
  padding: 28px 0 34px;
  background: rgba(15, 23, 18, 0.92);
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .hero-panel,
  .panel-grid.three-up,
  .panel-grid.two-up,
  .two-column-layout,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .hero-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .info-panel {
    padding: 20px;
  }

  .brand-logo {
    height: 44px;
  }

  .main-nav {
    gap: 12px 14px;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .hero-section {
    padding-top: 42px;
  }
}
.page-hero-section {
  padding-top: 56px;
}

.screenshot-panel p,
.faq-item p {
  margin-top: 12px;
}

.screenshot-placeholder {
  min-height: 220px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(30, 122, 60, 0.12), rgba(27, 31, 35, 0.08));
  border: 1px dashed rgba(27, 31, 35, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 18px;
}
.download-panel,
.shared-dock-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-meta {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.download-meta p {
  margin: 0 0 6px;
}

.compact-actions {
  margin-top: 18px;
}

.tier-panel h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.tier-best-for {
  margin-top: 16px;
}

.featured-tier {
  border: 1px solid rgba(30, 122, 60, 0.22);
  box-shadow: 0 18px 40px rgba(20, 26, 32, 0.14);
}

.comparison-table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(27, 31, 35, 0.08);
}

.comparison-table thead th {
  background: rgba(30, 122, 60, 0.08);
  color: var(--text);
  font-size: 0.98rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-link-line {
  margin-top: 16px;
}

.contact-email {
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}
.nav-badge {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #1e7a3c;
  background: rgba(30, 122, 60, 0.12);
  vertical-align: middle;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e7a3c;
  background: rgba(30, 122, 60, 0.14);
}
.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-dock-hover-zone {
  position: absolute;
  z-index: 20;
}

.hero-dock-left {
  left: 0;
  top: 0;
  width: 36px;
  height: 100%;
}

.hero-dock-right {
  right: 0;
  top: 0;
  width: 36px;
  height: 100%;
}

.hero-dock-bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 36px;
}

.hero-random-dock {
  position: absolute;
  z-index: 25;
  max-width: 280px;
  max-height: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-random-dock.is-visible {
  opacity: 1;
}
.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.showcase-left {
  min-width: 0;
}

.showcase-right {
  min-width: 0;
}

@media (max-width: 900px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1100px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
}
.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.showcase-right .panel-grid.three-up {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.showcase-right .info-panel {
  padding: 18px;
}

@media (max-width: 900px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }
}
.showcase-left .section-heading {
  margin-bottom: 16px;
}

.showcase-right .section-heading {
  margin-bottom: 16px;
}
.showcase-layout {
  align-items: start;
}
.showcase-layout > div {
  display: flex;
  flex-direction: column;
}
.disabled-link {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
