:root {
  --navy: #102958;
  --navy-deep: #071a3b;
  --navy-soft: #173968;
  --teal: #2fa7aa;
  --teal-deep: #087d86;
  --green: #7bc7a5;
  --amber: #f3b95f;
  --ink: #142033;
  --muted: #5d6a7c;
  --line: #dce5ee;
  --panel: #f7fafc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 26, 59, 0.14);
  --radius: 8px;
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px clamp(24px, 4.5vw, 80px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 229, 238, 0.8);
  backdrop-filter: blur(18px);
}

.brand img,
.footer-brand img {
  width: 152px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #334256;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(16, 41, 88, 0.2);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(16, 41, 88, 0.18);
}

.button-secondary:hover {
  border-color: rgba(47, 167, 170, 0.7);
  box-shadow: 0 12px 28px rgba(8, 26, 59, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  display: flex;
  align-items: center;
  min-height: min(820px, calc(100vh - 76px));
  padding: clamp(76px, 10vw, 132px) clamp(24px, 4.5vw, 80px) clamp(64px, 8vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(47, 167, 170, 0.16), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.hero-content {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #88d9d6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 24px;
  color: var(--navy-deep);
  font-size: clamp(3.4rem, 6.1vw, 7.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 820px;
  margin-bottom: 30px;
  color: #46576c;
  font-size: clamp(1.1rem, 1.35vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  min-height: 34px;
  padding: 7px 12px;
  color: #263a55;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 41, 88, 0.12);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.section,
.section-band,
.why,
.cta {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 4.5vw, 80px);
}

.section-band {
  background: var(--panel);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 6vw, 120px);
  align-items: start;
}

.split p:not(.eyebrow) {
  color: #4a5b6f;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.feature-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.values-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(8, 26, 59, 0.05);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--navy);
}

.card-icon.signups {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.card-icon.operations {
  background: linear-gradient(135deg, var(--teal-deep), var(--green));
}

.card-icon.venues {
  background: linear-gradient(135deg, var(--navy-soft), #6e8fb7);
}

.card-icon.analytics {
  background: linear-gradient(135deg, #213a61, var(--amber));
}

.feature-card p,
.values-grid p,
.why-grid p,
.two-column p,
.cta p {
  color: var(--muted);
}

.why {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 167, 170, 0.2), rgba(47, 167, 170, 0) 40%),
    var(--navy-deep);
}

.why h2,
.why h3 {
  color: var(--white);
}

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

.why-grid article {
  padding: 26px;
  min-height: 178px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.why-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 54px);
}

.two-column article {
  padding-top: 22px;
  border-top: 3px solid var(--teal);
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.values-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-weight: 850;
}

.journey {
  background: var(--white);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.journey-track div {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.journey-track div:nth-child(even) {
  background: var(--teal-deep);
}

.journey-track div:last-child {
  background: #305e7b;
}

.journey-track strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.journey-track span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
}

.cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(123, 199, 165, 0.16), rgba(123, 199, 165, 0) 34%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #31445d;
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid #cdd9e5;
  border-radius: var(--radius);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 167, 170, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.site-footer {
  padding: 46px clamp(24px, 4.5vw, 80px);
  background: #f4f7fa;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: #394a61;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer address {
  grid-column: 1 / -1;
  max-width: 760px;
  color: #4f5f73;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer small {
  grid-column: 1 / -1;
  color: #6f7f92;
  line-height: 1.6;
}

.legal-hero {
  padding: clamp(76px, 10vw, 128px) clamp(24px, 4.5vw, 80px) clamp(44px, 7vw, 72px);
  background:
    linear-gradient(125deg, rgba(47, 167, 170, 0.16), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.legal-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #46576c;
  font-size: 1.18rem;
}

.legal-content {
  padding: clamp(56px, 8vw, 90px) clamp(24px, 4.5vw, 80px);
}

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

.legal-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(8, 26, 59, 0.04);
}

.legal-grid h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-grid p {
  color: var(--muted);
}

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

.legal-grid a {
  color: var(--teal-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(47, 167, 170, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .feature-grid,
  .why-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
  }

  .brand img,
  .footer-brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(8, 26, 59, 0.12);
  }

  .site-header.is-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .split,
  .two-column,
  .cta-inner,
  .footer-inner,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-list li {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .feature-grid,
  .why-grid,
  .values-grid,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
