:root {
  --ink: #0a0d0b;
  --surface-1: #10140f;
  --surface-1-alt: #161c14;
  --paper: #ffffff;
  --paper-alt: #f2f4ef;
  --green-deep: #03743a;
  --green-bright: #00a42c;
  --green-glow: #7be8a0;
  --line-dark: rgba(255,255,255,.12);
  --line-dark-soft: rgba(255,255,255,.06);
  --line-light: rgba(3,116,58,.22);
  --text-mute-dark: rgba(255,255,255,.62);
  --text-mute-light:#5b6660;
  --amber: #e8a33d;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  --container: 1180px;
  --gap: clamp(1.25rem, 2vw, 2.5rem);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2.75rem, var(--container));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }
}
.grid-bg {
  background-image: linear-gradient(var(--line-dark-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark-soft) 1px, transparent 1px);
  background-size: 42px 42px;
}

.grid-bg--light {
  background-image: linear-gradient(rgba(3, 116, 58, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(3, 116, 58, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-mono);
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex: none;
}

.eyebrow--dark {
  color: var(--green-glow);
}

.plate {
  position: relative;
}
.plate::before, .plate::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.plate::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.plate::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.plate {
  border: 1px solid var(--line-dark-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green-bright);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-glow);
}

.btn--accent {
  background: var(--green-bright);
  color: #fff;
}
.btn--accent:hover {
  background: var(--green-glow);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--outline:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.btn--outline-dark {
  background: transparent;
  border-color: rgba(10, 13, 11, 0.35);
  color: var(--ink);
}
.btn--outline-dark:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.btn--ghost-green {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.btn--ghost-green:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: #06170c;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.06s;
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.18s;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.3s;
}

.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.36s;
}

.reveal-stagger.is-visible > *:nth-child(7) {
  transition-delay: 0.42s;
}

.reveal-stagger.is-visible > *:nth-child(8) {
  transition-delay: 0.48s;
}

.reveal-stagger.is-visible > *:nth-child(9) {
  transition-delay: 0.54s;
}

.reveal-stagger.is-visible > *:nth-child(10) {
  transition-delay: 0.6s;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E1E5DD;
}
.site-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}
.logo__img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 900px) {
  .logo__img {
    height: 34px;
  }
}
@media (min-width: 1200px) {
  .logo__img {
    height: 40px;
  }
}

@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
}
.main-nav {
  min-width: 0;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.main-nav a {
  font-size: 0.88rem;
  color: #171B18;
  transition: color 0.15s ease;
}
.main-nav a:hover {
  color: #00A42C;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
@media (max-width: 899px) {
  .header-cta__ticket {
    display: none;
  }
}

.nav-toggle,
#navToggle {
  display: none;
  background: none;
  border: 1px solid #E1E5DD;
  border-radius: 3px;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #171B18;
}
@media (max-width: 899px) {
  .nav-toggle,
  #navToggle {
    display: flex;
  }
}
.nav-toggle span,
#navToggle span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded=true] span:nth-child(1),
#navToggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2),
#navToggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3),
#navToggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 68px 0 auto 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E1E5DD;
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.2);
  padding: 1.25rem 0 1.75rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 99;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav ul {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.mobile-nav a {
  color: #171B18;
  font-size: 1rem;
}

.hero {
  position: relative;
  background: #14181A;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 68px;
  min-height: clamp(480px, 125vw, 900px);
}
@media (min-width: 700px) {
  .hero {
    min-height: clamp(480px, 37.5vw, 720px);
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 13, 11, 0.78) 0%, rgba(10, 13, 11, 0.32) 45%, rgba(10, 13, 11, 0) 75%);
  pointer-events: none;
}
.hero h1 {
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 1.8rem + 3.6vw, 4.6rem);
  line-height: 0.98;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero__sub {
  margin-top: 22px;
  max-width: 58ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: #F2F4F0;
  opacity: 0.92;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
}
@media (min-width: 900px) {
  .hero__meta {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero__meta dt {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BA39B;
}
.hero__meta dd {
  margin: 4px 0 0;
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.section--dark {
  background: var(--surface-1);
  color: #fff;
}

.section--paper-alt {
  background: var(--paper-alt);
}

.section-head {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.section-head p {
  margin-top: 1rem;
  color: var(--text-mute-light);
  font-size: 1.02rem;
}

.section--dark .section-head p {
  color: var(--text-mute-dark);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.about__copy p {
  color: var(--text-mute-light);
  margin-bottom: 1.1rem;
  max-width: 52ch;
}

.about__facts {
  position: relative;
}
.about__facts::before, .about__facts::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.about__facts::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.about__facts::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.about__facts {
  border: 1px solid rgba(3, 116, 58, 0.16);
  background: #fff;
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.about__facts dl {
  display: grid;
  gap: 1.15rem;
}

.about__facts .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px dashed rgba(3, 116, 58, 0.25);
}
.about__facts .row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about__facts dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute-light);
}

.about__facts dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about__logos {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(3, 116, 58, 0.16);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.about__logos-plate {
  position: relative;
}
.about__logos-plate::before, .about__logos-plate::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.about__logos-plate::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.about__logos-plate::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.about__logos-plate {
  border: 1px solid rgba(3, 116, 58, 0.16);
  background: #fff;
  padding: 1.2rem clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 280px;
  max-width: 380px;
}

.about__logos-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 560px) {
  .about__logos {
    flex-direction: column;
    align-items: center;
  }
  .about__logos-plate {
    width: 100%;
    max-width: 320px;
  }
}
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.challenge-card {
  position: relative;
}
.challenge-card::before, .challenge-card::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.challenge-card::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.challenge-card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.challenge-card {
  background: #fff;
  border: 1px solid rgba(3, 116, 58, 0.14);
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.98rem;
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.challenge-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-2px);
}
.challenge-card .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green-deep);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: none;
}

.challenge-foot {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-deep);
}

@media (max-width: 640px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }
}
.highlight-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.highlight-card {
  background: var(--surface-1);
  padding: 2rem 1.6rem;
}
.highlight-card .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-glow);
  display: block;
  margin-bottom: 0.9rem;
}
.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.highlight-card p {
  color: var(--text-mute-dark);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .highlight-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .highlight-row {
    grid-template-columns: 1fr;
  }
}
.feature-booth {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.machine-frame {
  position: relative;
}
.machine-frame::before, .machine-frame::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.machine-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.28);
  border-left: 1.5px solid rgba(255, 255, 255, 0.28);
}
.machine-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.28);
  border-right: 1.5px solid rgba(255, 255, 255, 0.28);
}
.machine-frame {
  border: 1px solid var(--line-dark);
  background: linear-gradient(160deg, var(--surface-1-alt), #0c0f0b);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.machine-frame__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--green-glow);
  margin-bottom: 0.6rem;
  display: block;
}

.feature-booth h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 0.4rem;
}

.feature-booth .claim {
  font-style: italic;
  color: var(--green-glow);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.feature-booth p.copy {
  color: var(--text-mute-dark);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin: 1.6rem 0 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.spec-list div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.spec-list span.k {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute-dark);
}
.spec-list span.v {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

@media (max-width: 880px) {
  .feature-booth {
    grid-template-columns: 1fr;
  }
}
.feature-rows {
  display: grid;
  gap: clamp(3rem, 7vw, 5rem);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.feature-row:nth-child(even) {
  direction: rtl;
}
.feature-row:nth-child(even) > * {
  direction: ltr;
}

.feature-row__art {
  position: relative;
}
.feature-row__art::before, .feature-row__art::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.feature-row__art::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.feature-row__art::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.feature-row__art {
  border: 1px solid rgba(3, 116, 58, 0.16);
  background: var(--paper-alt);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.feature-row__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.feature-row h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.9rem;
}

.feature-row p {
  color: var(--text-mute-light);
  max-width: 50ch;
  margin-bottom: 1.4rem;
}

.feature-row .note {
  font-size: 0.8rem;
  color: var(--text-mute-light);
  margin-top: -0.6rem;
  margin-bottom: 1.4rem;
  display: block;
}

@media (max-width: 780px) {
  .feature-row, .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.discuss {
  background: radial-gradient(90% 140% at 100% 0%, rgba(0, 164, 44, 0.25), transparent 60%), var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.discuss::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(80% 80% at 50% 30%, #000, transparent 75%);
}

.discuss .container {
  position: relative;
  z-index: 1;
}

.discuss .section-head {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.discuss .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.discuss .eyebrow {
  color: #d9ffe6;
  justify-content: center;
  width: 100%;
}

.discuss .section-head h2 {
  color: #fff;
}

.form-panel {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}

.form-panel iframe {
  width: 100%;
  min-height: 1300px;
  border: 0;
  display: block;
}

.form-fallback {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-mute-light);
  font-size: 0.92rem;
  border: 1px dashed rgba(3, 116, 58, 0.35);
  border-radius: 4px;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.info-list {
  position: relative;
}
.info-list::before, .info-list::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.info-list::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.info-list::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.info-list {
  border: 1px solid rgba(3, 116, 58, 0.16);
  background: #fff;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.info-list .row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed rgba(3, 116, 58, 0.25);
}
.info-list .row:last-child {
  border: none;
  padding-bottom: 0;
}

.info-list .icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--green-deep);
}

.info-list .icon svg {
  width: 16px;
  height: 16px;
}

.info-list h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute-light);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.info-list p {
  font-weight: 600;
  font-size: 1rem;
}

.map-frame {
  position: relative;
}
.map-frame::before, .map-frame::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.map-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.map-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.map-frame {
  border: 1px solid rgba(3, 116, 58, 0.16);
  overflow: hidden;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

@media (max-width: 880px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #06170c;
  display: grid;
  place-items: center;
  border: none;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
}
.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top svg {
  width: 16px;
  height: 16px;
}

.media-frame {
  position: relative;
}
.media-frame::before, .media-frame::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.media-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid var(--line-light);
  border-left: 1.5px solid var(--line-light);
}
.media-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid var(--line-light);
  border-right: 1.5px solid var(--line-light);
}
.media-frame {
  border: 1px solid rgba(3, 116, 58, 0.16);
  overflow: hidden;
  background: #EDF0E9;
  width: 100%;
  min-height: 280px;
}
@media (min-width: 900px) {
  .media-frame {
    min-height: 360px;
  }
}
@media (min-width: 1200px) {
  .media-frame {
    min-height: 420px;
  }
}

.media-frame--4-3 {
  aspect-ratio: 4/3;
}
@media (min-width: 900px) {
  .media-frame--4-3 {
    aspect-ratio: 16/11;
  }
}

.media-frame__map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.02);
}

.footer-info {
  background: #F5F7F3;
  color: #171B18;
  padding-block: 72px;
}
.footer-info .btn--outline {
  color: #171B18;
  border-color: rgba(23, 27, 24, 0.32);
}
.footer-info .btn--outline:hover {
  border-color: #00A42C;
  color: #00A42C;
}
.footer-info__grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .footer-info__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.footer-info__list {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer-info__row {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E1E5DD;
}
.footer-info__row dt {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #62695F;
  width: 110px;
  flex: none;
}
.footer-info__row dd {
  margin: 0;
  font-weight: 600;
  color: #171B18;
}

.btn-row-left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.btn__note {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 0.72rem;
  color: #62695F;
}

.site-footer {
  background: #14181A;
  color: #F2F4F0;
  padding-block: 64px 32px;
}
.site-footer__grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 899px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__about p {
  color: #9BA39B;
  max-width: 40ch;
  margin-top: 16px;
  font-size: 0.92rem;
}
.site-footer h4 {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BA39B;
  margin-bottom: 16px;
}
.site-footer ul {
  display: grid;
  gap: 10px;
}
.site-footer a {
  font-size: 0.92rem;
  color: #F2F4F0;
}
.site-footer a:hover {
  color: #00A42C;
}
.site-footer__bottom {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.78rem;
  color: #9BA39B;
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, monospace;
}
.site-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.site-footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.site-footer__social a svg {
  width: 15px;
  height: 15px;
}
.site-footer__social a:hover {
  border-color: #00A42C;
  color: #00A42C;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  padding-top: 20px;
}/*# sourceMappingURL=lp_pmtx2026.css.map */