: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,
.main-nav a[aria-current="page"] {
  color: var(--green);
}

.main-nav a.is-current,
.main-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.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-app-icon,
.hero-card-text {
  position: relative;
  z-index: 10;
}

.hero-edge-zone {
  z-index: 900;
}

.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 Page ---------- */

.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;
}

.contact-panel {
    text-align: center;
}

.contact-logo {
    width: 180px;
    max-width: 70%;
    margin: 0 auto 1.5rem;
    display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.contact-social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(24, 119, 242, 0.10);
  color: #1877f2;
  font-weight: 800;
  border: 1px solid rgba(24, 119, 242, 0.18);
}

.facebook-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.app-store-badge {
  display: block;
  height: 44px;
  width: auto;
}

.pro-progress-panel {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(30, 122, 60, 0.08);
  border: 1px solid rgba(30, 122, 60, 0.16);
}

.pro-progress-panel h3 {
  margin: 0 0 10px;
}

.pro-progress-panel p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.pro-progress-panel p:last-child {
  margin-bottom: 0;
}

.pro-feature-list {
  margin: 16px 0 18px;
  padding-left: 20px;

  color: var(--muted);
  line-height: 1.8;
}

.pro-feature-list li {
  margin-bottom: 4px;
}

.pro-feedback-line {
  margin-top: 14px;
}


.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;
}

.corner-ribbon {
  position: absolute;

  top: 22px;
  right: -54px;

  z-index: 40;

  width: 240px;

  padding: 10px 0;

  transform: rotate(35deg);

  text-align: center;

  background: linear-gradient(
    135deg,
    #1e7a3c,
    #14552a
  );

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);

  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(0,0,0,0.18);

  pointer-events: none;
}

.disabled-link {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.6;
  color: #444;
}

.legal-content ul {
  margin: 10px 0 16px 18px;
}

.legal-content li {
  margin-bottom: 6px;
}

.muted-text {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.sub-nav a:hover {
  color: #ffffff;
  background: rgba(30, 122, 60, 0.28);
}

 /* Showcase layouts */
.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.showcase-layout-reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.showcase-left,
.showcase-right {
  min-width: 0;
  align-self: start;
}

.showcase-layout > div {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.showcase-left .section-heading,
.showcase-right .section-heading {
  margin-bottom: 16px;
}

.showcase-right .panel-grid.three-up {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.showcase-right .info-panel {
  padding: 18px;
}

.showcase-card-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.mini-dock-showcase {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 20px;

  padding: 28px;

  width: fit-content;
  height: fit-content;

  align-self: start;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);

  border-radius: 36px;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.showcase-right,
.showcase-left {
  display: flex;
  align-items: flex-start;
}

.showcase-dock-image[data-dock-edge="right"],
.showcase-dock-image[data-dock-edge="left"] {
  max-height: 78vh;
}


@media (max-width: 900px) {
  .showcase-layout,
  .showcase-layout-reverse {
    grid-template-columns: 1fr;
  }
}




/* End showcase layouts */
.screenshots-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.screenshot-card {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

 .screenshot-card figcaption {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 255)
  border-top: 1px solid rgba(255,255,255,120);
}

@media (max-width: 900px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

}

.hero-card {
  position: relative;
}

.hero-edge-zone {
  position: absolute;
  z-index: 4;
}

.hero-edge-left {
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
}

.hero-edge-right {
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
}

.hero-edge-bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 22px;
}

.hero-hover-dock-image {
  position: absolute;
  z-index: 99;
    display: none;
  pointer-events: none;
  border-radius: 18px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.hero-hover-dock-image.is-visible {
  display: block;
}

.hero-hover-dock-image.edge-left {
  top: 0;
  left: -72px;
  height: 100%;
  width: auto;
}

.hero-hover-dock-image.edge-right {
  top: 0;
  right: -72px;
  height: 100%;
  width: auto;
}

.hero-hover-dock-image.edge-bottom {
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

.hero-hover-dock-clip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  display: none;
}

.hero-hover-dock-clip.is-visible {
  display: block;
}

/* LEFT */
.edge-left-clip {
  top: 0;
  left: -24px;
  width: 24px;
  height: 100%;
}

.edge-left-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
}

/* RIGHT */
.edge-right-clip {
  top: 0;
  right: -24px;
  width: 24px;
  height: 100%;
}

.edge-right-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}

/* BOTTOM */
.edge-bottom-clip {
  left: 0;
  bottom: -36px;
  width: 100%;
  height: 36px;
}

.edge-bottom-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.hero-card {
    position: relative;
    overflow: visible;
}

.hero-edge-zone {
    position: absolute;
    z-index: 20;
    pointer-events: auto;
}

/* LEFT EDGE */
.hero-edge-left {
    top: 0;
    left: 0;
    width: 32px;
    height: 100%;
}

/* RIGHT EDGE */
.hero-edge-right {
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
}

/* BOTTOM EDGE */
.hero-edge-bottom {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
}

.hero-edge-zone {
    background: transparent;
    z-index: 901;
    }

.hero-hover-dock-clip {
    display: block !important;
    opacity: 1 !important;
}

.hero-hover-dock-image {
    opacity: 1 !important;
}

.hero-card {
    overflow: visible !important;
}

.hero-hover-dock-clip {
    z-index: 902;
    background: rgba(0,255,0,0.2);
}

.hero-hover-dock-image {
  position: absolute;
  z-index: 999;
  display: none;
  pointer-events: none;
  border-radius: 18px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.hero-hover-dock-image.is-visible {
  display: block;
}

.hero-hover-dock-image.edge-left {
  top: 0;
  left: -98px;
  height: 100%;
  width: auto;
 position: absolute;
  z-index: 996;
clip-path: inset(0 calc(1%) 0 0);
}

.hero-hover-dock-image.edge-right {
  top: 0;
  right: -73px;
  height: 100%;
  width: auto;
 position: absolute;
  z-index: 997;
  clip-path: inset(0 0 0 calc(2%));
}

.hero-hover-dock-image.edge-bottom {
  left: 0;
  bottom: -48px;
  width: 100%;
  height: auto;
   position: absolute;
  z-index: 995;
}

.hero-panel,
.hero-visual,
.hero-card {
  overflow: visible;
}

.hero-card {
  position: relative;
  z-index: 900;
}

.hero-hover-dock-image {
  position: absolute;
  z-index: 9999;
}

.hero-edge-zone {
  z-index: 10000;
}

.coming-soon-wrap {
  position: relative;
}

.coming-soon-wrap::after {
  content: "Coming Soon";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;

  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 122, 60, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(20, 26, 32, 0.18);
}


 /* ---------- Final Bottom Dock Section ---------- */

.final-dock-section {
  padding: 0 0 24px;
}

.final-dock-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  margin: 0;
  padding: 0;

  background: transparent;
  border: none;
  box-shadow: none;
}

.final-dock-image {
  display: block;

  width: min(1200px, 96vw);
  max-width: 100%;
  height: auto;

  border-radius: 18px;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.20),
    0 2px 8px rgba(0, 0, 0, 0.14);
}


.versions-section {
  padding-bottom: 0px;
}


.final-dock-section {
  padding: 48px 0 36px;
}

.final-dock-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.final-dock-image {
  display: block;
  width: min(1200px, 96vw);
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .hero-edge-zone,
  .hero-hover-dock-image,
  .hero-hover-dock-clip {
    display: none !important;
  }
}
