:root {
  color-scheme: light;
  --ink: #0a0d0d;
  --muted: #63706f;
  --paper: #f7f4ed;
  --paper-strong: #fffdf7;
  --night: #06110e;
  --night-soft: #10231d;
  --line: rgba(10, 13, 13, 0.12);
  --cyan: #00a7c7;
  --green: #8aca54;
  --pink: #ff2567;
  --gold: #d9a642;
  --shadow: 0 28px 90px rgba(5, 17, 14, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper-strong);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(6, 17, 14, 0.86);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  width: 148px;
  padding: 0;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 76px) 48px;
  color: #fff;
}

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

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 8, 0.88), rgba(3, 10, 8, 0.48) 48%, rgba(3, 10, 8, 0.1)),
    linear-gradient(0deg, rgba(3, 10, 8, 0.96), rgba(3, 10, 8, 0.08) 46%);
}

.hero-grid {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 18% 62%, #000, transparent 62%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

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

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.75rem, 12vw, 9rem);
  line-height: 0.82;
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: #fff;
  color: var(--night);
}

.button-primary:hover {
  background: var(--green);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.84);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 520px);
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 17, 14, 0.52);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel span {
  display: block;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 900;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.section-band {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 76px);
}

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

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 8vw, 100px);
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.58rem, 3.75vw, 3.6rem);
  line-height: 0.98;
}

.intro-text {
  color: #34403f;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.intro-text p {
  margin: 0 0 22px;
}

.text-link {
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.text-link:hover {
  color: inherit;
  text-decoration: none;
}

.dark {
  background: var(--night);
  color: #fff;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.pillar-card {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

.pillar-card:hover {
  background: var(--night-soft);
  transform: translateY(-4px);
}

.pillar-card span {
  color: var(--green);
  font-weight: 900;
}

.pillar-card h3 {
  min-height: 68px;
  margin: 82px 0 18px;
  font-size: 0.99rem;
  line-height: 1.12;
}

.pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.portal-list {
  display: grid;
  gap: 14px;
}

.portal-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px) 0;
  border-top: 1px solid var(--line);
}

.portal-item strong {
  font-size: clamp(0.9rem, 1.5vw, 1.13rem);
}

.portal-item span {
  color: var(--muted);
  line-height: 1.55;
}

.portal-card > span {
  display: grid;
  gap: 12px;
}

.portal-card em {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.22;
}

.portal-card small {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.portal-inline-links {
  display: inline-block;
  white-space: nowrap;
}

.portal-text-link {
  color: var(--muted);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.62;
  text-decoration: none;
  text-underline-offset: 0.2em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.portal-text-link:hover {
  color: #024d62;
  text-decoration: underline;
}

.statement {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: clamp(74px, 10vw, 136px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(115deg, rgba(6, 17, 14, 0.98), rgba(6, 17, 14, 0.88) 58%, rgba(0, 167, 199, 0.62)),
    var(--night);
  color: #fff;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.statement::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -20%;
  width: 52vw;
  height: 140%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18% 19%, transparent 19% 42%, rgba(138, 202, 84, 0.28) 42% 43%, transparent 43%),
    linear-gradient(135deg, rgba(0, 167, 199, 0.36), rgba(255, 37, 103, 0.16));
  transform: skewX(-14deg);
}

.statement-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.statement-copy h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2rem, 5.25vw, 4.8rem);
  font-weight: 900;
  line-height: 0.92;
}

.statement-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.64;
}

.statement-visual {
  position: relative;
  min-height: clamp(420px, 48vw, 580px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.statement-visual img {
  position: absolute;
  width: min(62%, 290px);
  right: 7%;
  top: 8%;
  opacity: 0.72;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.28));
  animation: symbolFloat 7s ease-in-out infinite alternate;
}

.signal-grid {
  position: absolute;
  left: 0;
  right: 8%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-grid span:nth-child(2),
.signal-grid span:nth-child(5) {
  color: var(--green);
}

.signal-grid span:nth-child(3) {
  color: var(--cyan);
}

.signal-bars {
  position: absolute;
  left: 10%;
  top: 14%;
  width: 44%;
  display: grid;
  gap: 14px;
}

.signal-bars span {
  display: block;
  height: 12px;
  background: #fff;
  transform-origin: left;
  animation: signalPulse 2.8s ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) {
  width: 46%;
  background: var(--pink);
}

.signal-bars span:nth-child(2) {
  width: 88%;
  background: var(--cyan);
  animation-delay: 260ms;
}

.signal-bars span:nth-child(3) {
  width: 64%;
  background: var(--green);
  animation-delay: 520ms;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--night);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.6;
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-card label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.contact-card textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(138, 202, 84, 0.18);
}

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

.contact-card .button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.faq {
  background: var(--paper-strong);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 237, 0.72);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.64;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #ff9f9f;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 9;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(6, 17, 14, 0.86);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top::before,
.back-to-top::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.back-to-top::before {
  top: 15px;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.back-to-top::after {
  top: 17px;
  width: 2px;
  height: 18px;
  background: currentColor;
}

.back-to-top:hover {
  background: var(--cyan);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr auto 1.3fr;
  gap: clamp(24px, 6vw, 82px);
  align-items: start;
  padding: clamp(34px, 6vw, 70px) clamp(20px, 5vw, 76px);
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-brand p:first-child {
  color: #fff;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: scale(1.18) translate3d(-3.2%, -2.2%, 0) rotate(0.45deg);
  }
}

@keyframes symbolFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(-10px, 18px, 0) rotate(3deg);
  }
}

@keyframes signalPulse {
  from {
    transform: scaleX(0.62);
  }
  to {
    transform: scaleX(1);
  }
}

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(6, 17, 14, 0.48);
    color: #fff;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(6, 17, 14, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 94vh;
  }

  .hero-panel,
  .two-columns,
  .pillar-grid,
  .portal-item,
  .statement-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .hero-panel div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-heading {
    display: block;
  }

  .pillar-card {
    min-height: 220px;
  }

  .pillar-card h3 {
    min-height: 0;
    margin-top: 52px;
  }

  .statement {
    min-height: auto;
  }

  .statement::after {
    right: -34vw;
    width: 88vw;
  }

  .statement-visual {
    min-height: 460px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    width: 132px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 18px 28px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 21vw, 5.55rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel div {
    padding: 18px;
  }

  .statement-copy h2 {
    font-size: clamp(1.8rem, 9.75vw, 3.38rem);
  }

  .statement-visual {
    min-height: 420px;
  }

  .statement-visual img {
    width: 210px;
  }

  .signal-grid {
    right: 0;
    grid-template-columns: 1fr;
  }

  .signal-grid span {
    min-height: 54px;
  }

  .section-band {
    padding-inline: 18px;
  }
}
