:root {
  --ink: #0b211a;
  --green: #0d4a3a;
  --green-soft: #dce9e4;
  --acid: #d9f43a;
  --paper: #f7f5ed;
  --white: #fffefa;
  --muted: #65736d;
  --line: #d6ddd9;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(11, 33, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 100px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -150px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7.3vw, 100px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 64px);
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 8px 0 var(--acid);
  transform: translateY(-3px);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.pill.accent {
  border-color: var(--acid);
  background: var(--acid);
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-visual .shot {
  position: absolute;
  width: 57%;
  border: 10px solid var(--ink);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-visual .shot:first-child {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.hero-visual .shot:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
}

.section {
  padding: 100px 0;
}

.section.compact {
  padding-top: 40px;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section.green .eyebrow,
.section.green .feature-icon {
  color: var(--acid);
}

.section.green .lead {
  color: #c8d9d3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature {
  grid-column: span 2;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.feature:nth-child(n + 4) {
  grid-column: span 3;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink) !important;
  font-size: 21px;
  font-weight: 950;
}

.feature p {
  margin: 0;
  color: #c8d9d3;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.capability {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.capability > span {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.capability h3 {
  font-size: 22px;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gallery {
  display: grid;
  grid-auto-columns: minmax(250px, 30%);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 16px max(20px, calc((100vw - 1160px) / 2)) 50px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green) transparent;
}

.gallery img {
  width: 100%;
  border: 8px solid var(--ink);
  border-radius: 36px;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

.transparency-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding: 52px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.transparency-panel .eyebrow {
  color: var(--acid);
}

.transparency-panel h2 {
  margin-bottom: 0;
}

.transparency-copy p:first-child {
  margin-top: 0;
}

.transparency-copy p {
  color: #d4e2dd;
}

.transparency-copy .button {
  margin-top: 12px;
}

.notice-stack {
  display: grid;
  gap: 18px;
}

.notice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--acid);
}

.notice h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.5vw, 54px);
}

.notice p:last-child {
  max-width: 700px;
  margin-bottom: 0;
}

.independence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.independence p {
  max-width: 830px;
  margin: 0;
}

.independence a {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 850;
}

.page-hero {
  padding: 70px 0 65px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 86px);
}

.document {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 110px;
}

.document-aside {
  align-self: start;
  position: sticky;
  top: 30px;
  padding: 24px;
  border-radius: 22px;
  background: var(--green-soft);
  font-size: 15px;
}

.document-aside strong {
  display: block;
  margin-bottom: 8px;
}

.document-content h2 {
  margin-top: 58px;
  font-size: 32px;
}

.document-content h2:first-child {
  margin-top: 0;
}

.document-content li + li {
  margin-top: 9px;
}

.card {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-links a {
  text-decoration: none;
}

.disclaimer {
  max-width: 760px;
  color: var(--muted);
}

@media (max-width: 850px) {
  .nav-links a:first-child {
    display: none;
  }

  .hero {
    padding-top: 35px;
  }

  .hero-grid,
  .document,
  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(n + 4) {
    grid-column: auto;
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

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

  .gallery {
    grid-auto-columns: 70%;
  }

  .document,
  .transparency-panel {
    gap: 40px;
  }

  .document-aside {
    position: static;
  }

  .notice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
  }

  h1 {
    font-size: 52px;
  }

  .hero::after {
    top: -160px;
    right: -250px;
  }

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

  .hero-visual .shot {
    border-width: 6px;
    border-radius: 26px;
  }

  .section {
    padding: 72px 0;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-columns: 84%;
  }

  .transparency-panel,
  .notice {
    padding: 30px;
  }

  .independence,
  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }
}
