:root {
  --ink: #0b1f1b;
  --ink-soft: #183b34;
  --muted: #4d625c;
  --paper: #fffdf7;
  --mist: #eef7f1;
  --green: #15b889;
  --deep-green: #07352d;
  --orange: #ff6a2a;
  --yellow: #ffd75e;
  --blue: #8cc9c9;
  --line: rgba(11, 31, 27, 0.12);
  --line-strong: rgba(11, 31, 27, 0.2);
  --shadow: 0 24px 70px rgba(11, 31, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(21, 184, 137, 0.14), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 106, 42, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #f5fbf5 48%, #fffaf0 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.84);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, var(--green), var(--blue)),
    var(--green);
  box-shadow: inset -8px -8px 0 rgba(255, 215, 94, 0.82);
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  padding: 13px 20px;
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 34px rgba(11, 31, 27, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 4vw, 44px) 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(112deg, rgba(7, 53, 45, 0.98), rgba(12, 95, 76, 0.94) 52%, rgba(21, 184, 137, 0.9)),
    var(--deep-green);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #146b58;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: #f8fff9;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 0.97;
}

h1,
h2 {
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(248, 255, 249, 0.86);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  padding: 15px 24px;
}

.button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 38px rgba(255, 106, 42, 0.25);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-strip li {
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(10px);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.proof-strip span {
  color: rgba(248, 255, 249, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  align-self: stretch;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 70px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: var(--yellow);
  z-index: -1;
}

.hero-media img {
  display: block;
  width: 100%;
  min-height: 520px;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.trust-card {
  width: min(430px, 88%);
  margin: -74px 22px 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b201c;
  color: white;
  box-shadow: 0 22px 52px rgba(11, 31, 27, 0.28);
}

.trust-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-card strong {
  display: block;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.25;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.ticker span {
  padding: 24px clamp(18px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.section,
.partners,
.contact,
.contact-hero,
.story-section,
.contact-form-section,
.thank-you,
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 44px);
}

.assortment {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 64px);
}

.section-heading {
  position: sticky;
  top: 96px;
  align-self: start;
}

.section-heading.compact {
  position: static;
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading h2,
.partners h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
}

.section-heading p:not(.eyebrow),
.partners p,
.contact p,
.standards-grid p,
.category-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-grid,
.standards-grid {
  display: grid;
  gap: 18px;
}

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

.category-card,
.standards-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(11, 31, 27, 0.08);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -46px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  opacity: 0.85;
}

.category-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.category-card h3,
.standards-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.15;
}

.accent-green::before {
  background: var(--green);
}

.accent-orange::before {
  background: var(--orange);
}

.accent-blue::before {
  background: var(--blue);
}

.accent-yellow::before {
  background: var(--yellow);
}

.partners {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  max-width: none;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 44px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 44px));
  background:
    linear-gradient(135deg, rgba(7, 53, 45, 0.96), rgba(11, 31, 27, 0.98)),
    var(--deep-green);
  color: white;
}

.partners .eyebrow {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.partners p {
  color: rgba(248, 255, 249, 0.76);
}

.partners ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partners li {
  min-height: 104px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  padding: 20px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.standards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.standards-grid article {
  min-height: 260px;
  background: #ffffff;
}

.standards-grid article:nth-child(2) {
  transform: translateY(24px);
}

.standards-grid article:nth-child(3) {
  transform: translateY(48px);
}

.standards-grid article:nth-child(4) {
  transform: translateY(72px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 88px;
  border: 1px solid rgba(255, 215, 94, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 215, 94, 0.96), rgba(255, 106, 42, 0.9)),
    var(--yellow);
  box-shadow: var(--shadow);
}

.contact .eyebrow {
  border: 0;
  color: #5f3c00;
}

.contact p {
  max-width: 760px;
  color: #432b00;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  max-width: none;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 44px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 44px));
  background:
    linear-gradient(115deg, rgba(7, 53, 45, 0.98), rgba(15, 113, 91, 0.95) 56%, rgba(21, 184, 137, 0.9)),
    var(--deep-green);
  color: white;
}

.contact-hero h1,
.thank-you h1 {
  color: white;
}

.contact-hero .intro,
.thank-you .intro {
  color: rgba(248, 255, 249, 0.84);
}

.contact-hero .eyebrow,
.thank-you .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 56px rgba(11, 31, 27, 0.22);
}

.contact-panel span,
.founder-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 28px;
}

.contact-panel p,
.contact-panel a {
  color: rgba(248, 255, 249, 0.84);
  line-height: 1.7;
}

.company-details {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.company-details span {
  margin-bottom: 10px;
  color: var(--blue);
}

.company-details strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
}

.story-section article,
.contact-form,
.form-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 31, 27, 0.08);
}

.story-section article {
  padding: clamp(28px, 4vw, 44px);
}

.story-section h2,
.contact-form-section h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.story-section p,
.contact-form-section p {
  color: var(--muted);
  line-height: 1.75;
}

.founder-card {
  background:
    linear-gradient(160deg, rgba(11, 31, 27, 0.98), rgba(24, 59, 52, 0.94)),
    var(--ink) !important;
  color: white;
}

.founder-card h2 {
  color: white;
}

.founder-card p {
  color: rgba(248, 255, 249, 0.74);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  padding-top: 0;
}

.form-copy,
.contact-form {
  padding: clamp(24px, 4vw, 38px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.thank-you {
  min-height: calc(100vh - 78px);
  max-width: none;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 44px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 44px));
  background:
    linear-gradient(115deg, rgba(7, 53, 45, 0.98), rgba(21, 184, 137, 0.86)),
    var(--deep-green);
}

.legal-hero {
  max-width: none;
  padding: 96px max(18px, calc((100vw - 1280px) / 2 + 44px));
  background:
    linear-gradient(115deg, rgba(7, 53, 45, 0.98), rgba(21, 184, 137, 0.86)),
    var(--deep-green);
  color: white;
}

.legal-hero h1 {
  color: white;
}

.legal-hero .intro {
  color: rgba(248, 255, 249, 0.84);
}

.legal-hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 82px clamp(18px, 4vw, 44px);
}

.legal-content article {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content article:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content a {
  color: var(--ink);
  font-weight: 900;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 32px;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1280px) / 2 + 44px));
  padding-right: max(18px, calc((100vw - 1280px) / 2 + 44px));
  background: var(--ink);
  color: white;
}

footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

footer p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

@media (max-width: 1020px) {
  .hero,
  .assortment,
  .partners,
  .contact,
  .contact-hero,
  .story-section,
  .contact-form-section,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .section-heading {
    position: static;
  }

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

  .standards-grid article:nth-child(n) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .logo {
    font-size: 16px;
  }

  nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    padding-bottom: 42px;
    row-gap: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  h1 {
    order: 2;
  }

  .intro {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .hero-media {
    order: 5;
  }

  .proof-strip {
    order: 6;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 46px);
    line-height: 0.98;
  }

  .intro {
    font-size: 17px;
  }

  .proof-strip,
  .ticker,
  .category-grid,
  .standards-grid,
  .partners ul {
    grid-template-columns: 1fr;
  }

  .proof-strip li {
    min-height: auto;
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .trust-card {
    width: calc(100% - 24px);
    margin: -38px 12px 0 auto;
  }

  .section,
  .partners,
  .contact,
  .contact-hero,
  .story-section,
  .contact-form-section,
  .legal-hero,
  .thank-you,
  footer {
    padding: 68px 18px;
  }

  .contact {
    margin: 0 18px 68px;
  }

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

@media (max-width: 430px) {
  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-media::after {
    display: none;
  }
}
