:root {
  --navy: #0f172a;
  --ink: #08111f;
  --teal: #2dd4bf;
  --teal-dark: #0f9f91;
  --slate: #64748b;
  --slate-dark: #334155;
  --ice: #f1f5f9;
  --ribbon: #f4f7f9;
  --white: #ffffff;
  --line: #dbe3ec;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 108px;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.button {
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 30px clamp(30px, 4.2vw, 54px);
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-block: 16px;
  background: rgba(8, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 218px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--teal-dark);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 600;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(45, 212, 191, 0.1);
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.24), transparent 24%),
    linear-gradient(120deg, #030815 0%, #07111e 46%, #0a1728 100%);
}

.hero-wave,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-wave {
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 21, 0.94) 0%, rgba(3, 8, 21, 0.78) 34%, rgba(3, 8, 21, 0.15) 72%),
    linear-gradient(0deg, rgba(3, 8, 21, 0.92) 0%, transparent 34%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 610px;
  padding-top: 88px;
}

.hero-copy {
  width: min(540px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(43px, 4.9vw, 58px);
  font-weight: 600;
}

.hero h1 span {
  color: var(--teal);
}

.rule {
  width: 50px;
  height: 2px;
  margin: 10px 0;
}

.lede {
  max-width: 500px;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 500;
}

.support {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #20bba9);
  box-shadow: 0 14px 34px rgba(45, 212, 191, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #5eead4, var(--teal));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.button-link,
.text-link {
  color: var(--teal-dark);
  font-weight: 600;
}

.button-link {
  min-height: 0;
  padding: 0 0 5px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.55);
  border-radius: 0;
  color: var(--teal);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-link:hover,
.button-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: #14b8a6;
}

.partner-strip {
  padding: 27px 0 29px;
  background: var(--ribbon);
}

.partner-strip h2 {
  margin: 0 0 22px;
  color: var(--slate-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  align-items: center;
  gap: 0;
}

.partner-logos > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.partner-logos > span:last-child {
  border-right: 0;
}

.partner-logos img {
  width: 172px;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about-section {
  padding: clamp(36px, 4.8vw, 54px) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.about-copy h2 {
  max-width: 390px;
  margin: 0 0 16px;
  font-size: clamp(29px, 3.4vw, 38px);
  line-height: 1.08;
}

.about-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 12px;
  color: var(--slate-dark);
  font-size: 14px;
  line-height: 1.55;
}

.about-copy .text-link {
  margin-top: 6px;
}

.about-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.about-media img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.section {
  padding: clamp(48px, 5.8vw, 68px) 0;
}

.platform {
  padding: 34px 0 32px;
  background: var(--ribbon);
}

.brands {
  padding-top: clamp(32px, 4.2vw, 46px);
  padding-bottom: clamp(36px, 4.4vw, 50px);
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .rule {
  margin-inline: auto;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(27px, 3.1vw, 34px);
  font-weight: 600;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--slate-dark);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.feature-card {
  padding: 26px clamp(18px, 2.8vw, 30px) 0;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--teal-dark);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 20px 0 12px;
  font-size: 16px;
}

.feature-card p {
  font-size: 14px;
}

.feature-card p,
.brand-card p,
.contact-copy p,
.site-footer p {
  color: var(--slate-dark);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.brands-heading {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brands-heading > div {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 2.8vw, 34px);
  min-width: 0;
}

.brands-heading .eyebrow {
  margin: 0;
  flex: 0 0 auto;
}

.brands-heading h2 {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.12;
  white-space: nowrap;
}

.brands-heading .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.brand-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.veero-card > div {
  position: relative;
  z-index: 1;
  max-width: 292px;
}

.veero-logo {
  width: 150px;
  height: auto;
  margin: 0 0 22px;
}

.brand-card p {
  max-width: 270px;
  margin: 0 0 22px;
}

.brand-card a {
  color: var(--teal-dark);
  font-weight: 600;
}

.brand-product {
  position: absolute;
  right: 24px;
  bottom: 8px;
  width: min(214px, 38%);
  height: auto;
  pointer-events: none;
}

.future-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.future-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.future-title h3 {
  margin: 0;
}

.orbit {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px dashed var(--slate);
  border-radius: 999px;
}

.mountain-mark {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 250px;
  height: 110px;
  opacity: 0.6;
  background: linear-gradient(135deg, transparent 0 30%, #e2e8f0 30% 50%, transparent 50%),
    linear-gradient(145deg, transparent 0 42%, #e5e7eb 42% 68%, transparent 68%);
}

.contact-band {
  padding: 0 0 16px;
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 46px;
  padding: clamp(34px, 5vw, 48px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(45, 212, 191, 0.15), transparent 30%),
    linear-gradient(135deg, #030815, #08111f 54%, #071426);
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(203, 213, 225, 0.52);
  border-radius: 6px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.52);
  outline: 0;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 104px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #99f6e4;
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #030815;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 160px 230px;
  gap: 44px;
  padding: 36px 0;
}

.footer-logo {
  width: 192px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.site-footer nav,
.site-footer nav a,
.site-footer strong {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  display: block;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(8, 17, 31, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
  }

  .partner-logos > span:nth-child(3) {
    border-right: 0;
  }

  .feature-grid,
  .brand-grid,
  .about-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .about-media img {
    aspect-ratio: 16 / 9;
  }

  .feature-grid {
    border-top: 0;
    gap: 18px;
  }

  .feature-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
  }

  .brands-heading {
    gap: 14px;
  }

  .brands-heading > div {
    gap: 14px;
  }

  .brands-heading h2 {
    font-size: 20px;
  }

  .brands-heading .text-link {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding: 18px 16px;
  }

  .brand img {
    width: 164px;
  }

  .hero-grid {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 16px;
  }

  .hero-actions .button-link {
    width: auto;
  }

  .brands-heading {
    align-items: flex-start;
  }

  .brands-heading > div {
    display: block;
  }

  .brands-heading h2 {
    margin-top: 8px;
    white-space: normal;
  }

  .partner-logos {
    grid-template-columns: 1fr 1fr;
  }

  .partner-logos > span {
    border-right: 0;
  }

  .brand-card,
  .contact-card {
    padding: 24px;
  }

  .brand-product,
  .mountain-mark {
    opacity: 0.28;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
