:root {
  --bg: #f4f2ea;
  --bg-deep: #dfeae4;
  --surface: rgba(255, 250, 241, 0.72);
  --surface-strong: #fff9ef;
  --ink: #181311;
  --muted: #5f5249;
  --line: rgba(24, 19, 17, 0.12);
  --accent: #14a85f;
  --accent-deep: #1457c8;
  --shadow: 0 24px 60px rgba(31, 59, 50, 0.14);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(20, 168, 95, 0.12) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, #f7f4ec 0%, #eef5ef 52%, #e8eef8 100%);
}

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

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(241, 237, 228, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 19, 17, 0.08);
}

.nav-inner,
.footer-inner,
.nav-links,
.hero-actions,
.hero-points,
.contact-lines p {
  display: flex;
  align-items: center;
}

.nav-inner,
.footer-inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand-mark,
.footer-logo {
  width: 168px;
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%);
}

.nav-links {
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: min(760px, calc(100svh - 5rem));
  padding: 4rem 0 3.5rem;
  overflow: hidden;
  background: #111;
  color: #fffaf0;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 44%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.story-grid,
.offer-grid,
.product-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-copy,
.hero-panel,
.card,
.timeline-item {
  position: relative;
}

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

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 19, 17, 0.12);
  background: rgba(255, 249, 239, 0.58);
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: 6.5rem;
  line-height: 0.92;
}

h2 {
  font-size: 3.25rem;
  line-height: 0.95;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

p {
  margin: 0;
  line-height: 1.65;
}

.hero-text,
.section-heading p,
.card p,
.timeline-item p,
.contact-card p,
.form-note,
.footer-inner p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 240, 0.84);
}

.hero .hero-text {
  color: rgba(255, 250, 240, 0.86);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.52);
}

.hero .button-primary {
  background: #fffaf0;
  color: #151515;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #14a85f;
  color: #ffffff;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf0;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff7ed;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border-color: rgba(24, 19, 17, 0.14);
  background: rgba(255, 249, 239, 0.56);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(24, 19, 17, 0.3);
}

.hero-points {
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-points span,
.launch-chip,
.timeline-step {
  border-radius: 999px;
}

.hero-points span {
  padding: 0.55rem 0.8rem;
  background: rgba(255, 249, 239, 0.58);
  border: 1px solid rgba(24, 19, 17, 0.1);
  font-size: 0.92rem;
}

.hero .hero-points span {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 250, 240, 0.9);
}

.hero-panel,
.card,
.timeline-item {
  border: 1px solid rgba(24, 19, 17, 0.09);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.panel-label {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-top h2 {
  font-size: 2.5rem;
}

.signal-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}

.signal-list article {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.66);
  border: 1px solid rgba(24, 19, 17, 0.08);
}

.signal-list strong,
.launch-chip strong {
  display: block;
  font-size: 1rem;
}

.signal-list p {
  margin-top: 0.35rem;
}

.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, rgba(20, 168, 95, 0.14), rgba(20, 87, 200, 0.08));
  border: 1px solid rgba(24, 19, 17, 0.08);
}

.launch-chip span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 2rem 0 3.5rem;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto 0;
  height: 72%;
  background: linear-gradient(90deg, rgba(238, 255, 242, 0.52), rgba(229, 239, 255, 0.24));
  transform: rotate(-1.8deg);
  z-index: -1;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
  max-width: 800px;
}

.section-heading.compact {
  margin-bottom: 1.2rem;
}

.story-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-band {
  display: grid;
  gap: 1.4rem;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.4rem;
  border-radius: var(--radius);
}

.quote-card {
  display: flex;
  align-items: end;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(16, 28, 24, 0.94), rgba(18, 41, 59, 0.9)),
    var(--surface);
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff8ee;
}

.feature-card {
  min-height: 220px;
}

.timeline {
  display: grid;
  gap: 1rem;
}

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

.faq-item {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(24, 19, 17, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(24, 19, 17, 0.12);
}

.faq-item h3 {
  margin-bottom: 0.35rem;
}

.faq-item p {
  max-width: 760px;
  color: var(--muted);
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: var(--radius);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--ink);
  color: #fff8ee;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.4rem;
}

.contact-shell {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 248, 235, 0.64);
  border: 1px solid rgba(24, 19, 17, 0.08);
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-card,
.form-card {
  height: 100%;
}

.contact-lines {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-lines p {
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(24, 19, 17, 0.08);
}

.contact-lines span {
  color: var(--muted);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 19, 17, 0.12);
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

  input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(20, 168, 95, 0.18);
  border-color: rgba(20, 168, 95, 0.45);
}

.form-button {
  width: fit-content;
}

.form-note {
  min-height: 1.4rem;
  font-size: 0.95rem;
}

.form-note.is-success {
  color: var(--accent-deep);
}

.footer {
  padding: 0 0 2.4rem;
}

.footer-inner {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(24, 19, 17, 0.08);
}

.footer-inner p {
  max-width: 560px;
  text-align: right;
}

.footer-logo {
  filter: brightness(0) saturate(100%);
}

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .offer-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner,
  .footer-inner,
  .contact-lines p {
    align-items: start;
  }

  .nav-inner,
  .footer-inner {
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }

  .contact-shell {
    padding: 1.2rem;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: min(720px, calc(100svh - 4rem));
    padding-top: 2.6rem;
  }

  h1 {
    max-width: 100%;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .quote-card p {
    font-size: 1.55rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .brand-mark,
  .footer-logo {
    width: 142px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-panel,
  .card,
  .timeline-item {
    animation: rise 700ms ease both;
  }

  .hero-panel {
    animation-delay: 120ms;
  }

  .story-grid .card:nth-child(2) {
    animation-delay: 140ms;
  }

  .story-grid .card:nth-child(3) {
    animation-delay: 220ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
