:root {
  --bg: #070914;
  --bg-2: #0c1020;
  --panel: #11172a;
  --panel-soft: #151b31;
  --text: #f7f8ff;
  --muted: #a5aabb;
  --muted-2: #777d91;
  --line: rgba(255, 255, 255, 0.12);
  --violet: #6a4cff;
  --violet-2: #8b72ff;
  --cyan: #2fd7ff;
  --pink: #ff4fd8;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(7, 9, 20, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 214px;
  overflow: hidden;
}

.brand img {
  width: 214px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(106, 76, 255, 0.26));
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: #c7cad6;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-cta,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--text);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), #4f7cff 48%, var(--cyan));
  box-shadow: 0 18px 48px rgba(106, 76, 255, 0.34);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(106, 76, 255, 0.44);
}

.btn-secondary {
  background: #ffffff;
  color: #080b17;
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 7vw, 112px) 86px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #050711;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(106, 76, 255, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 9, 20, 0.78) 0%, rgba(7, 9, 20, 0.48) 45%, rgba(7, 9, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.04), rgba(7, 9, 20, 0.72) 100%);
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.hero-copy,
.section-heading p,
.apply-copy p {
  color: #cfd3e2;
  font-size: clamp(17px, 1.6vw, 21px);
}

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

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

.text-link {
  color: #dfe2f0;
  font-weight: 800;
}

.section {
  padding: 92px clamp(20px, 7vw, 112px);
}

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

.section-heading.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.benefits-section {
  background: linear-gradient(180deg, var(--bg), #0b0e1c);
  padding-top: clamp(56px, 7vh, 76px);
  padding-bottom: clamp(56px, 7vh, 76px);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: stretch;
}

.benefit-list {
  display: grid;
  gap: 0;
  align-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.benefit-card,
.path-card,
.standards-card,
.application-form,
.qr-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 27, 49, 0.88), rgba(13, 17, 32, 0.92));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.benefit-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.benefit-card h3 {
  grid-column: 2;
  margin-bottom: 4px;
  font-size: 21px;
}

.benefit-card .icon-mark {
  grid-row: 1 / span 2;
}

.benefit-card p {
  grid-column: 2;
  margin-bottom: 0;
}

.icon-mark,
.path-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card p,
.path-card blockquote,
.path-card li,
.standards-card li,
.qr-panel p,
.form-status {
  color: var(--muted);
}

.qr-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  align-items: end;
  gap: 16px;
  padding: 18px;
}

.panel-image,
.section-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #050711;
  box-shadow: var(--shadow);
}

.panel-image {
  grid-column: 1 / -1;
  width: 100%;
  max-height: 210px;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.qr-panel .eyebrow,
.qr-panel h3,
.qr-panel > p:not(.eyebrow) {
  grid-column: 1;
}

.qr-panel .eyebrow {
  margin-bottom: -8px;
}

.qr-panel h3 {
  margin-bottom: 0;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
}

.qr-panel > p:not(.eyebrow) {
  margin-bottom: 0;
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-visual {
  max-width: 1120px;
  height: clamp(260px, 34vw, 430px);
  margin: 0 auto 22px;
}

.standards-visual {
  min-height: 100%;
  grid-row: span 2;
}

.qr-code {
  display: block;
  width: clamp(168px, 13vw, 220px);
  aspect-ratio: 1;
  grid-column: 2;
  grid-row: 2 / span 3;
  align-self: start;
  margin: 2px 0 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.paths-section {
  background:
    linear-gradient(90deg, rgba(47, 215, 255, 0.08), transparent 35%),
    #080b17;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.path-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 27, 49, 0.88), rgba(13, 17, 32, 0.92));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.path-card-accent {
  background:
    linear-gradient(135deg, rgba(106, 76, 255, 0.26), rgba(21, 27, 49, 0.88) 44%, rgba(13, 17, 32, 0.94));
}

.path-card blockquote {
  margin: 12px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--violet-2);
  font-size: 18px;
}

.path-card ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.path-card li,
.check-list li {
  position: relative;
  padding-left: 26px;
}

.path-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(47, 215, 255, 0.11);
}

.standards-section {
  background: #0a0d19;
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.standards-card {
  padding: 28px;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 79, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #080b17, var(--bg));
}

.apply-copy {
  position: sticky;
  top: 112px;
}

.application-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
}

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

label,
legend,
.upload-block p {
  color: #eceef7;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: #090d1a;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--violet-2);
  box-shadow: 0 0 0 4px rgba(106, 76, 255, 0.16);
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
}

fieldset label,
.upload-block label,
.consent-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--violet);
}

.consent-field {
  align-items: flex-start;
  color: #cfd3e2;
  font-size: 13px;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.upload-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
}

.file-label {
  width: 100%;
  margin-top: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-status.is-success {
  color: #7effd4;
}

.form-status.is-error {
  color: #ff9eac;
}

.atas-footer {
  padding: 40px clamp(20px, 7vw, 112px) 34px;
  color: #e8e9ef;
  background: #060814;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(260px, 1fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-about {
  max-width: 780px;
}

.footer-about p {
  max-width: 560px;
  margin: 0;
  color: #a9aec3;
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.68;
}

.footer-disclaimer-link {
  display: inline-flex;
  margin-top: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.footer-social-wrap {
  justify-self: end;
  min-width: 260px;
  display: grid;
  justify-items: end;
  padding-top: 0;
}

.footer-logo {
  width: 158px;
  height: auto;
  margin-bottom: 18px;
  opacity: 0.92;
  filter: drop-shadow(0 10px 22px rgba(106, 76, 255, 0.2));
}

.footer-social-wrap p {
  margin: 0 0 14px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 114, 255, 0.7);
  background: rgba(106, 76, 255, 0.18);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 190px minmax(280px, 1.5fr) repeat(7, minmax(100px, 1fr));
  gap: 24px;
  padding-top: 24px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom a {
  color: #d8dae4;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .benefit-list,
  .benefits-layout,
  .apply-section,
  .standards-layout {
    grid-template-columns: 1fr;
  }

  .standards-visual {
    grid-row: auto;
    min-height: 360px;
  }

  .apply-copy {
    position: static;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-social-wrap {
    justify-self: start;
    justify-items: start;
  }

  .footer-social,
  .footer-social-wrap p {
    justify-content: flex-start;
    text-align: left;
  }
}

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

  .brand {
    width: 166px;
  }

  .brand img {
    width: 166px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 52px;
  }

  .section {
    padding: 68px 18px;
  }

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

  .qr-panel {
    grid-template-columns: 1fr;
  }

  .qr-code {
    grid-column: 1;
    grid-row: auto;
  }

  .path-card {
    min-height: auto;
    padding: 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-about p {
    font-size: 12px;
  }

  .standards-visual {
    height: auto;
    min-height: 220px;
  }
}

@media (max-width: 460px) {
  .header-cta {
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 23px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .qr-code {
    width: 100%;
  }
}
