:root {
  --primary: #8cc63f;
  --primary-ink: #41680a;
  --secondary: #0b3b42;
  --surface: #f0f5f4;
  --text-slate: #475569;
  --white: #ffffff;
  --black-alpha-60: rgba(0, 0, 0, 0.6);
  --line: rgba(11, 59, 66, 0.14);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.22);
  --shadow: 0 20px 60px rgba(11, 59, 66, 0.12);
  --section: 96px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--secondary);
  background: var(--white);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
}

.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links a,
.footer a {
  transition: color 300ms ease-in-out;
}

.nav-links a:hover,
.nav-links a.active,
.footer a:hover {
  color: var(--primary);
}

.nav-action {
  justify-self: end;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 300ms ease-in-out, background 300ms ease-in-out, color 300ms ease-in-out;
}

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

.btn-primary {
  background: var(--primary);
  color: #102a2f;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--secondary);
}

.hero.compact {
  min-height: 620px;
}

.hero-media,
.hero-media img,
.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-media [data-carousel-slide] {
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.hero-media [data-carousel-slide]:first-child {
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 59, 66, 0.92) 0%, rgba(11, 59, 66, 0.68) 45%, rgba(11, 59, 66, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 59, 66, 0.76) 0%, rgba(11, 59, 66, 0) 45%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding-top: 90px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--primary-ink);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow,
.dark .eyebrow,
.footer .eyebrow,
.quote-panel .eyebrow {
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.1;
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.25rem);
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.text-muted {
  color: var(--text-slate);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.glass-card {
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.hero-widget {
  padding: 28px;
  align-self: end;
}

.widget-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.widget-stat:first-child {
  border-top: 0;
  padding-top: 0;
}

.widget-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
}

.widget-stat span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: var(--section) 0;
}

.section.surface {
  background: var(--surface);
}

.section.dark {
  background: var(--secondary);
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 12px 36px rgba(11, 59, 66, 0.05);
  transition: transform 300ms ease-in-out, border-color 300ms ease-in-out, box-shadow 300ms ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 198, 63, 0.55);
  box-shadow: var(--shadow);
}

.dark .card,
.card.dark-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(140, 198, 63, 0.14);
  color: var(--primary);
}

.icon-badge .material-symbols-outlined {
  font-size: 30px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: gap 300ms ease-in-out, color 300ms ease-in-out;
}

.link-arrow:hover {
  gap: 14px;
  color: var(--primary-ink);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  background: var(--surface);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.quote-panel {
  position: absolute;
  inset: auto 24px 24px;
  padding: 22px;
}

.quote-panel p {
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--white);
  padding: 18px 22px;
}

.stat-chip strong {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag {
  border-radius: 999px;
  background: var(--surface);
  padding: 6px 12px;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-slate);
  font-size: 0.95rem;
}

.check-list .material-symbols-outlined {
  color: var(--primary);
  font-size: 20px;
}

.cta-panel {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 24px;
  background: var(--white);
  padding: 54px;
  text-align: center;
  box-shadow: var(--shadow);
}

.partnership-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: var(--secondary);
}

.partnership-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 59, 66, 0.28), rgba(11, 59, 66, 0.68)),
    linear-gradient(0deg, rgba(11, 59, 66, 0.78), rgba(11, 59, 66, 0.08) 54%, rgba(11, 59, 66, 0.5)),
    url("images/aptos-partnership-bg.jpg") center / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.12);
}

.partnership-card {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px clamp(24px, 7vw, 78px);
  text-align: center;
  border-radius: 32px;
}

.partnership-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #173036;
  padding: 8px 16px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.partnership-card h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}

.partner-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  margin: 0 auto 34px;
}

.partner-logo {
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.3));
}

.partner-logo-aptos {
  height: clamp(74px, 12vw, 132px);
}

.partner-logo-cotas {
  height: clamp(86px, 13vw, 148px);
}

.partner-x {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.partnership-copy {
  max-width: 800px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.partnership-copy strong {
  color: var(--primary);
  font-weight: 600;
}

.partnership-cta {
  min-width: 210px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--secondary);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 59, 66, 0.28);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--secondary);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--primary);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--text-slate);
  font-size: 0.95rem;
  text-align: center;
}

.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.mobile-menu {
  display: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

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

  .nav-links,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: grid;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 59, 66, 0.96);
    transition: max-height 300ms ease-in-out, padding 300ms ease-in-out;
  }

  .mobile-menu.open {
    max-height: 420px;
    padding: 18px 24px 24px;
  }

  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-widget {
    max-width: 520px;
  }

  .partner-lockup {
    flex-wrap: wrap;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand span {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 700px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions,
  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cta-panel {
    padding: 34px 22px;
  }

  .partnership-section {
    padding: 62px 0;
  }

  .partnership-card {
    border-radius: 24px;
  }

  .partner-lockup {
    gap: 14px;
  }

  .partner-logo-aptos,
  .partner-logo-cotas {
    max-width: 38%;
    height: auto;
  }

}
