:root {
  --announcement-height: 42px;
  --bg: #f4f8f4;
  --surface: #ffffff;
  --surface-soft: #eef4ee;
  --text: #10241d;
  --muted: #4a645a;
  --brand: #0d8f5b;
  --brand-dark: #0a6a43;
  --accent: #1f9fd1;
  --line: #d8e5dc;
  --shadow: 0 20px 60px rgba(14, 43, 33, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, #dff3e7 0%, rgba(223, 243, 231, 0) 45%),
    radial-gradient(circle at 95% 12%, #d7edf8 0%, rgba(215, 237, 248, 0) 38%),
    var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: var(--announcement-height);
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244, 248, 244, 0.84);
  border-bottom: 1px solid rgba(216, 229, 220, 0.8);
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--announcement-height);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(120deg, #0f6f47, #1779a1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.announcement-bar p {
  margin: 0;
  padding: 0.55rem 1rem;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 0.3rem 0;
}

.hero {
  padding: 4.8rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 6vw, 3.8rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
}

.hero-sub {
  margin: 1.15rem 0 1.7rem;
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--accent));
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0a7b4f, #178cb9);
}

.btn-secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #f8fbf9;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.match-card {
  background: var(--surface);
  border: 1px solid #deebe2;
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.match-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.match-head p {
  margin: 0;
  font-weight: 700;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c73f3f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.live-dot::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e54848;
  box-shadow: 0 0 0 8px rgba(229, 72, 72, 0.15);
}

.scoreline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.4rem;
  text-align: center;
  align-items: center;
}

.team-name {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.score {
  margin: 0.3rem 0 0;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.versus {
  margin: 0;
  font-size: 1.3rem;
  color: #96afa3;
}

.event-strip {
  margin: 1rem 0 1.1rem;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 0.65rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-strip span {
  font-size: 0.84rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 0.7rem;
}

.stat-grid article {
  background: var(--surface-soft);
  border: 1px solid #dce8df;
  border-radius: 0.8rem;
  text-align: center;
  padding: 0.65rem 0.4rem;
}

.stat-num {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.stat-label {
  margin: 0.05rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
}

.live-activity-card {
  background: #f9fbf9;
  border: 1px solid #dce8df;
  border-radius: 1.1rem;
  padding: 1rem;
}

.activity-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.activity-head p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #305244;
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  background: #dff2e8;
  color: #0a6a43;
  font-weight: 700;
}

.iphone-mock {
  margin-top: 0.75rem;
  background: #0b0d0f;
  border-radius: 1.2rem;
  padding: 0.35rem;
  border: 1px solid #2a3137;
  box-shadow: 0 18px 40px rgba(9, 17, 23, 0.3);
}

.iphone-screen {
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem 0.75rem 0.7rem;
  min-height: 310px;
  background:
    radial-gradient(circle at 20% 0%, rgba(134, 197, 255, 0.22), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(48, 209, 88, 0.2), transparent 42%),
    linear-gradient(170deg, #1c2530 10%, #11171f 70%, #0d1218 100%);
  color: #f4f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

.lock-clock {
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
}

.lock-date {
  margin: 0.2rem 0 1rem;
  text-align: center;
  color: #c3cad4;
  font-size: 0.74rem;
  font-weight: 500;
}

.lock-activity-shell {
  margin-top: auto;
}

.lock-label {
  margin: 0 0 0.45rem;
  color: #d6dbe2;
  font-size: 0.72rem;
  font-weight: 500;
}

.lock-activity-widget {
  border-radius: 0.85rem;
  padding: 0.65rem;
  background:
    linear-gradient(90deg, rgba(52, 199, 89, 0.32), rgba(142, 142, 147, 0.18)),
    #23262a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lock-widget-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.35rem;
  align-items: center;
}

.lock-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.18rem;
}

.lock-ball {
  font-size: 0.95rem;
  line-height: 1;
  filter: saturate(0) brightness(1.5);
}

.lock-team-name {
  margin: 0;
  font-size: 0.63rem;
  line-height: 1.15;
  color: #f7f9fb;
  min-height: 1.45rem;
  display: grid;
  align-content: center;
}

.lock-team-score {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.lock-center {
  text-align: center;
}

.lock-elapsed {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #32d74b;
}

.lock-status {
  margin: 0.15rem 0 0;
  font-size: 0.62rem;
  color: #cad0d9;
}

.lock-countdown {
  margin: 0.16rem 0 0;
  font-size: 0.72rem;
  color: #ff6961;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.island-preview {
  width: 58%;
  min-height: 1.85rem;
  margin: 0.6rem auto 0;
  border-radius: 999px;
  background: #020304;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
}

.island-score {
  font-size: 0.76rem;
  font-weight: 700;
}

.island-live {
  font-size: 0.56rem;
  color: #ff6a63;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.activity-note {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  color: #466255;
}

.value-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbf8;
}

.value-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem 0;
}

.value-item {
  margin: 0;
  border: 1px solid #dce8df;
  border-radius: 0.9rem;
  background: #ffffff;
  min-height: 64px;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.value-step {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e7f3ec;
  border: 1px solid #d5e8dc;
  color: #22674c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.value-item p {
  margin: 0;
  color: #3a564b;
  text-align: left;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.35;
}

.section {
  padding: 4.6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 244, 238, 0.65), rgba(238, 244, 238, 0));
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-top: 0.35rem;
}

.feature-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.audience-card {
  background: #fff;
  border: 1px solid #dce8df;
  border-radius: 1rem;
  padding: 1.05rem;
}

.feature-card p,
.audience-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.workflow-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #dce8df;
  border-radius: 1rem;
  padding: 1rem;
}

.workflow-list li span {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.workflow-list li p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #dce8df;
  border-radius: 0.95rem;
  background: #fff;
  overflow: clip;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  padding: 0.95rem 1rem;
  cursor: pointer;
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  padding: 0 1rem;
  font-size: 0.93rem;
}

.faq-item.open .faq-answer {
  padding-bottom: 1rem;
}

.cta-section {
  padding: 1.2rem 0 4.8rem;
}

.cta-box {
  border-radius: 1.1rem;
  padding: 1.6rem;
  background: linear-gradient(130deg, #0f6f47, #1779a1);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: #fff;
}

.cta-box p {
  margin: 0.85rem 0 1.15rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-wrap a {
  color: var(--brand-dark);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .value-list {
    gap: 0.7rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0.55rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

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

  .main-nav a {
    padding: 0.52rem 0.55rem;
    border-radius: 0.55rem;
  }

  .main-nav a:hover {
    background: #f3f8f5;
  }

  .value-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .value-item {
    min-height: 58px;
    padding: 0.65rem 0.75rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .activity-head {
    flex-wrap: wrap;
  }

  .iphone-screen {
    min-height: 286px;
  }

  .lock-team-name {
    font-size: 0.58rem;
  }

  .island-preview {
    width: 72%;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0;
  }
}
