* {
  box-sizing: border-box;
}

:root {
  --cyan: #48c7f4;
  --pink: #f47c92;
  --black: #111111;
  --white: #ffffff;
  --soft: #f5f7fa;
  --text: #172033;
  --muted: #5f6b7a;
  --line: rgba(17, 17, 17, 0.09);
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.13);
  --glow: 0 28px 80px rgba(72, 199, 244, 0.25);
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  font-size: 0.9rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #334155;
}

.main-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta,
.button.primary {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 12px 28px rgba(72, 199, 244, 0.34);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--pink);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 124, 146, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

.button.secondary:hover {
  border-color: var(--cyan);
  color: #128ab2;
  transform: translateY(-2px);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.dark:hover {
  background: var(--white);
  color: var(--black);
}

.button.black {
  background: var(--black);
  color: var(--white);
}

.button.white {
  background: var(--white);
  color: var(--black);
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(72, 199, 244, 0.45), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(244, 124, 146, 0.34), transparent 30%),
    linear-gradient(135deg, #111111 0%, #151515 46%, #103445 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.78) 52%, rgba(72, 199, 244, 0.16) 100%),
    linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.5) 100%);
}

.sport-lines {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(125deg, transparent 0 18%, rgba(72, 199, 244, 0.22) 18.2% 18.6%, transparent 18.8% 45%, rgba(244, 124, 146, 0.18) 45.2% 45.8%, transparent 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 84px 84px;
}

.hero-grid {
  position: relative;
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow.light {
  color: #128ab2;
}

.hero h1,
.section h2,
.cta-band h2,
.social-section h2 {
  margin: 0;
  color: inherit;
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 11vw, 5.7rem);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: #eef5fb;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 6px;
  width: 150px;
  border-radius: 999px;
}

.hero-card::before {
  left: -20px;
  top: 42px;
  background: var(--pink);
  transform: rotate(-12deg);
}

.hero-card::after {
  right: -20px;
  bottom: 66px;
  background: var(--cyan);
  transform: rotate(12deg);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(72, 199, 244, 0.18), rgba(244, 124, 146, 0.16)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual::before {
  right: -42px;
  top: 34px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(72, 199, 244, 0.16);
  background: transparent;
}

.hero-visual::after {
  left: -38px;
  bottom: 28px;
  width: 130px;
  height: 130px;
  border: 20px solid rgba(244, 124, 146, 0.16);
  background: transparent;
}

.motion-mark {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 16px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.mark-one {
  top: 26px;
  right: 28px;
}

.mark-two {
  left: 30px;
  bottom: 34px;
  border-color: rgba(72, 199, 244, 0.22);
}

.mark-three {
  left: 42%;
  top: 52%;
  width: 58px;
  height: 58px;
  border-width: 10px;
  border-color: rgba(244, 124, 146, 0.25);
}

.hero-logo-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  padding: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--glow);
}

.hero-logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.hero-features p {
  margin: 0;
  padding: 16px;
  min-height: 88px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: 0.9rem;
}

.hero-features span {
  display: block;
  width: 44px;
  height: 5px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--cyan);
}

.hero-features p:nth-child(even) span {
  background: var(--pink);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section h2,
.social-section h2 {
  color: var(--black);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

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

.service-card,
.benefit-list article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 18px;
  width: 90px;
  height: 6px;
  border-radius: 999px;
  background: rgba(72, 199, 244, 0.18);
  transform: rotate(-16deg);
}

.service-card:hover,
.benefit-list article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), #168ec3);
  font-weight: 900;
  font-size: 1.35rem;
}

.icon.pink {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
}

.service-card h3,
.benefit-list h3 {
  margin: 18px 0 0;
  color: var(--black);
  font-size: 1.04rem;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p,
.section-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.benefits {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  height: 7px;
  width: 230px;
  border-radius: 999px;
  transform: rotate(-12deg);
}

.benefits::before {
  left: -20px;
  top: 70px;
  background: rgba(244, 124, 146, 0.3);
}

.benefits::after {
  right: -20px;
  bottom: 90px;
  background: rgba(72, 199, 244, 0.3);
}

.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 50px;
}

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

.benefit-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
  font-weight: 900;
}

.benefit-list article:nth-child(even) span {
  background: var(--pink);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--black);
  background: linear-gradient(120deg, var(--cyan) 0%, #6ed4f6 42%, var(--pink) 100%);
  box-shadow: var(--glow);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  height: 8px;
  border-radius: 999px;
  transform: rotate(-12deg);
}

.cta-band::before {
  right: 0;
  top: 42px;
  width: 310px;
  background: rgba(255, 255, 255, 0.4);
}

.cta-band::after {
  left: 0;
  bottom: 36px;
  width: 360px;
  background: rgba(17, 17, 17, 0.1);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.cta-band h2 {
  max-width: 820px;
  color: var(--black);
  font-size: clamp(2rem, 4.7vw, 3.7rem);
}

.cta-band p {
  margin: 18px 0 0;
  color: var(--white);
  font-weight: 900;
  font-size: 1.15rem;
}

.cta-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-icon path {
  fill: currentColor;
  stroke: none;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.map-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at 74% 68%, #fff 0 5%, transparent 6%),
    linear-gradient(135deg, rgba(72, 199, 244, 0.22), rgba(244, 124, 146, 0.18)),
    var(--soft);
  box-shadow: var(--shadow);
}

.road {
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
}

.road.horizontal {
  inset: 50% 0 auto;
  height: 12px;
  transform: translateY(-50%);
}

.road.vertical {
  inset: 0 auto 0 50%;
  width: 12px;
  transform: translateX(-50%);
}

.road.diagonal {
  left: 10%;
  width: 80%;
  height: 6px;
  border-radius: 999px;
}

.road.diagonal.cyan {
  top: 22%;
  background: rgba(72, 199, 244, 0.5);
  transform: rotate(-18deg);
}

.road.diagonal.pink {
  bottom: 24%;
  background: rgba(244, 124, 146, 0.5);
  transform: rotate(14deg);
}

.pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--black);
  color: var(--cyan);
  font-size: 2.3rem;
  font-weight: 900;
  box-shadow: var(--glow);
}

.map-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label strong {
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.map-label span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.social-section {
  padding: 72px 0;
  background: var(--soft);
}

.social-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer {
  padding: 54px 0 96px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
}

.footer h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer p {
  margin: 8px 0 16px;
  color: #cbd5e1;
  font-weight: 700;
}

.footer-brand a {
  display: block;
  margin-top: 8px;
  color: #e2e8f0;
  font-weight: 800;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #e2e8f0;
  font-weight: 800;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-contact {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 16px;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: var(--black);
    border-radius: 999px;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 80px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .benefits-grid,
  .location-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
  }

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

  .social-grid,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    height: 64px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 0.78rem;
    max-width: 145px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    top: 72px;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-grid {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11.5vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions,
  .cta-actions,
  .social-actions {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
    min-height: 46px;
    font-size: 0.78rem;
  }

  .hero-card {
    padding: 10px;
  }

  .hero-card::before,
  .hero-card::after {
    width: 110px;
    height: 5px;
  }

  .hero-visual {
    min-height: 150px;
  }

  .hero-logo-orbit {
    width: 96px;
    height: 96px;
    padding: 9px;
  }

  .motion-mark {
    width: 58px;
    height: 58px;
    border-width: 10px;
  }

  .hero-features,
  .cards-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-features p {
    min-height: auto;
    padding: 12px;
    font-size: 0.78rem;
  }

  .hero-features span {
    width: 34px;
    height: 4px;
    margin-bottom: 9px;
  }

  .section,
  .social-section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section h2,
  .social-section h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    line-height: 1.03;
  }

  .service-card,
  .benefit-list article {
    padding: 18px;
  }

  .service-card h3,
  .benefit-list h3 {
    font-size: 0.98rem;
  }

  .service-card p,
  .section-text {
    line-height: 1.55;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-band h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .cta-band p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .map-card {
    min-height: 250px;
  }

  .pin {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
  }

  .map-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    font-size: 0.86rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
  }

  .mobile-contact a:first-child {
    background: var(--cyan);
    color: var(--black);
  }

  .mobile-contact a:last-child {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--black);
  }
}
