﻿:root {
  --color-text: #1e1e1e;
  --color-text-soft: #5f6763;
  --color-bg: #f8f8f6;
  --color-border: #e4e7e4;
  --color-accent: #6e9f63;
  --color-accent-deep: #4f6f48;
  --color-dark: #101614;
  --shadow-soft: 0 18px 48px rgba(17, 26, 21, 0.08);
  --shadow-strong: 0 24px 80px rgba(10, 18, 14, 0.2);
  --radius-l: 36px;
  --radius-pill: 999px;
  --container: 1180px;
  --gutter: clamp(1.2rem, 3vw, 2rem);
  --section-space: clamp(4.5rem, 9vw, 8rem);
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(110, 159, 99, 0.12), transparent 32%),
    linear-gradient(180deg, #fcfcfa 0%, var(--color-bg) 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--color-dark);
  color: #fff;
  border-radius: 0.6rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(248, 248, 246, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 228, 0.8);
  box-shadow: 0 10px 30px rgba(20, 24, 22, 0.05);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 10rem;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-soft);
  border-radius: var(--radius-pill);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.88);
}

.nav-cta {
  border: 1px solid rgba(216, 221, 218, 0.95);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--color-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: var(--section-space) 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  color: #f6f6f3;
}

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

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.22) 0%, rgba(7, 10, 8, 0.55) 60%, rgba(7, 10, 8, 0.82) 100%),
    linear-gradient(120deg, rgba(6, 8, 7, 0.42) 0%, rgba(18, 24, 21, 0.08) 45%, rgba(18, 24, 21, 0.44) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-copy,
.hero-panel {
  align-self: end;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: 0.96;
}

.hero-intro {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(246, 246, 243, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #f3f5f1;
  color: var(--color-text);
}

.button-secondary {
  color: #f6f6f3;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.panel-label {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(246, 246, 243, 0.72);
}

.panel-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.panel-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: rgba(246, 246, 243, 0.82);
}

.panel-list li {
  position: relative;
  padding-left: 1rem;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(167, 211, 157, 0.92);
}

.split-grid,
.product-layout,
.manifesto-layout,
.faq-layout,
.footer-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.split-grid-wide {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.02;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: var(--color-text-soft);
}

.flow-copy > * + * {
  margin-top: 1rem;
}

.flow-copy p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--color-text-soft);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.section-product {
  position: relative;
}

.section-product::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 0;
  width: min(28rem, 50vw);
  height: min(28rem, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 159, 99, 0.18) 0%, rgba(110, 159, 99, 0) 70%);
  pointer-events: none;
}

.product-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(24rem, 60vw, 42rem);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border-radius: min(4vw, 2.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 244, 241, 0.98) 100%);
  border: 1px solid rgba(228, 231, 228, 0.8);
  box-shadow: var(--shadow-soft);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(216, 221, 218, 0.54), rgba(255, 255, 255, 0));
  filter: blur(18px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  max-height: clamp(22rem, 56vw, 36rem);
  width: auto;
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 231, 228, 0.84);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.22rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cfe0ca 0%, var(--color-accent) 70%);
  box-shadow: 0 0 0 0.35rem rgba(110, 159, 99, 0.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card,
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(228, 231, 228, 0.88);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.info-card {
  min-height: 22rem;
  padding: 1.5rem;
}

.card-index,
.news-date {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
}

.info-card h3,
.news-card h3 {
  font-size: 1.35rem;
  line-height: 1.16;
}

.info-card p:last-child,
.news-card p:last-child {
  color: var(--color-text-soft);
}

.info-card-visual {
  overflow: hidden;
  padding: 0;
}

.info-card-visual img {
  height: 12rem;
  width: 100%;
  object-fit: cover;
}

.info-card-body {
  padding: 1.5rem;
}

.section-manifesto {
  color: #eef3ef;
  background: linear-gradient(120deg, rgba(16, 22, 20, 0.98) 0%, rgba(20, 29, 26, 0.95) 60%, rgba(40, 55, 47, 0.94) 100%);
}

.manifesto-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.section-manifesto .eyebrow,
.section-manifesto .flow-copy p {
  color: rgba(238, 243, 239, 0.8);
}

.section-news .news-card {
  padding: 1.6rem;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(228, 231, 228, 0.88);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding-right: 2rem;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-accent-deep);
  font-size: 1.1rem;
}

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

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--color-text-soft);
}

.faq-list a {
  color: var(--color-accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.footer-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 1.6rem;
  border: 1px solid rgba(228, 231, 228, 0.82);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.footer-logo {
  width: min(8rem, 100%);
}

.footer-tagline {
  margin: 1rem 0 0.35rem;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-note,
.footer-links p {
  margin: 0;
  color: var(--color-text-soft);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--color-accent-deep);
}

.legal-body {
  background:
    radial-gradient(circle at top left, rgba(110, 159, 99, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfcfa 0%, #f7f7f4 100%);
}

.legal-header {
  position: sticky;
}

.legal-nav a {
  background: rgba(255, 255, 255, 0.78);
}

.legal-main {
  padding-bottom: 3rem;
}

.legal-section {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
}

.legal-shell {
  width: min(100% - (var(--gutter) * 2), 820px);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(228, 231, 228, 0.84);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.legal-copy p {
  font-size: 1.1rem;
}

.legal-highlight {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(90deg, rgba(110, 159, 99, 0.12), rgba(110, 159, 99, 0));
  border-radius: 0 1.2rem 1.2rem 0;
}

.legal-signature {
  margin-top: 2rem;
  font-weight: 600;
  color: var(--color-accent-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .split-grid,
  .split-grid-wide,
  .product-layout,
  .manifesto-layout,
  .faq-layout,
  .footer-shell,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero-panel {
    max-width: 32rem;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header {
    padding: 0.85rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  html.js-enabled .site-nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 0.35rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    border: 1px solid rgba(228, 231, 228, 0.88);
    border-radius: 1.5rem;
    background: rgba(248, 248, 246, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
  }

  html.js-enabled .site-nav.is-open {
    display: flex;
  }

  html.js-enabled .site-nav a {
    width: 100%;
    text-align: left;
  }

  html.js-enabled .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  html.js-enabled .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  html.js-enabled .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .info-card,
  .news-card,
  .legal-shell {
    border-radius: 1.5rem;
  }

  .product-stage {
    min-height: 20rem;
  }
}
