:root {
  --brand: #14351d;
  --brand-2: #1a4426;
  --brand-3: #2f8a57;
  --ink: #13251d;
  --charcoal: #1b262b;
  --slate: #53635c;
  --paper: #ffffff;
  --mist: #f3f8f4;
  --line: #dbe7de;
  --warm: #f4f1e8;
  --blue: #476177;
  --shadow: 0 24px 80px rgba(15, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #f7fff8;
  background: rgba(14, 31, 22, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  width: 128px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.text-link,
.site-footer a {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(247, 255, 248, 0.84);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.91rem;
  white-space: nowrap;
}

.button-primary {
  color: #f7fff8;
  background: var(--brand);
  box-shadow: 0 12px 32px rgba(20, 53, 29, 0.28);
}

.button-light {
  color: var(--brand);
  background: #ffffff;
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost-dark,
.button-dark {
  color: var(--brand);
  border-color: rgba(20, 53, 29, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #ffffff;
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 26, 17, 0.94) 0%, rgba(13, 42, 22, 0.82) 42%, rgba(13, 32, 24, 0.38) 100%),
    linear-gradient(0deg, rgba(6, 21, 13, 0.72) 0%, rgba(6, 21, 13, 0.08) 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  max-width: 1180px;
  min-height: 92vh;
  margin: 0 auto;
  padding: 128px 24px 54px;
}

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

.eyebrow,
.small-label,
.snapshot-label,
.step {
  margin: 0 0 14px;
  color: #6be18d;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 30px;
  color: rgba(247, 255, 248, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.product-snapshot {
  padding: 0;
  border-radius: 8px;
  color: #ffffff;
}

.snapshot-topline,
.snapshot-grid,
.audience-band,
.final-cta,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.snapshot-topline span {
  color: rgba(247, 255, 248, 0.7);
  font-weight: 700;
}

.snapshot-topline strong {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2rem;
}

.strength-bar {
  height: 9px;
  margin: 16px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.strength-bar span {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, #6be18d, #f3fff5);
}

.snapshot-card {
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
  box-shadow: var(--shadow);
}

.snapshot-card h2 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.snapshot-card p:not(.snapshot-label) {
  margin: 0;
  color: #42534a;
  line-height: 1.55;
}

.snapshot-grid {
  margin-top: 18px;
}

.snapshot-grid div {
  flex: 1;
  padding: 16px 14px;
  border-radius: 8px;
  background: rgba(12, 37, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.snapshot-grid strong {
  display: block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.35rem;
}

.snapshot-grid span {
  display: block;
  margin-top: 4px;
  color: rgba(247, 255, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.audience-band,
.section,
.showcase,
.security-band,
.final-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.audience-band {
  align-items: flex-start;
  padding-top: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.audience-band p {
  max-width: 790px;
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
}

.small-label {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-3);
}

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

.section-heading h2,
.showcase-copy h2,
.security-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.feature-card p,
.showcase-copy p,
.security-copy p {
  margin: 0;
  color: var(--slate);
  line-height: 1.68;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: var(--mist);
}

.showcase-copy {
  max-width: 520px;
}

.showcase-copy p {
  margin-top: 20px;
}

.output-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.output-panel img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.output-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.output-list span {
  min-height: 72px;
  padding: 18px;
  color: #f3fff5;
  background: #15231d;
  font-weight: 800;
  line-height: 1.35;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: start;
  gap: 44px;
}

.security-copy p {
  margin-top: 20px;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid div {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(20, 53, 29, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--brand);
  font-size: 1.06rem;
}

.trust-grid span {
  color: var(--slate);
  line-height: 1.55;
}

.final-cta {
  max-width: none;
  margin-bottom: 0;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: #ffffff;
  background: linear-gradient(135deg, #14351d 0%, #1b262b 72%);
}

.final-cta h2 {
  max-width: 650px;
}

.final-cta-copy {
  max-width: 580px;
}

.final-cta-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(247, 255, 248, 0.78);
  line-height: 1.68;
}

.contact-form {
  display: grid;
  width: min(100%, 460px);
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: rgba(247, 255, 248, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: #f7fff8;
  background: rgba(5, 20, 12, 0.48);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(107, 225, 141, 0.28);
  border-color: #6be18d;
}

.form-row-hidden {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: rgba(247, 255, 248, 0.76);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-status[data-tone="success"] {
  color: #aaf4bd;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(247, 255, 248, 0.8);
  background: #101a14;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .showcase,
  .security-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 150px;
  }

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

  .audience-band,
  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero-actions,
  .snapshot-grid,
  .output-list {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

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

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

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

  h1 {
    font-size: 2.72rem;
  }

  .audience-band,
  .section,
  .showcase,
  .security-band,
  .final-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
