﻿:root {
  --bg: #f4f0e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf8;
  --text: #13231d;
  --muted: #52625b;
  --line: rgba(19, 35, 29, 0.1);
  --accent: #0f7a67;
  --accent-deep: #0a5a4c;
  --accent-soft: #d8efe8;
  --shadow: 0 24px 60px rgba(18, 35, 29, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 122, 103, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(189, 219, 208, 0.7), transparent 20%),
    linear-gradient(180deg, #f8f4ee 0%, #f1ede4 100%);
}

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

.site-header,
.hero,
.stats,
.section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand,
.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  max-width: 11ch;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  max-width: 14ch;
  margin-bottom: 0;
}

.hero-text,
.feature-card p,
.step p,
.stats span,
.site-footer p,
.contact-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #f7fffc;
  box-shadow: 0 14px 32px rgba(15, 122, 103, 0.22);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.hero-card,
.feature-card,
.step,
.callout,
.stats article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.product-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 1rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(68, 186, 230, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 248, 0.96));
  overflow: hidden;
}

.hero-logo {
  width: 100%;
  max-width: 490px;
  height: auto;
}

.card-copy {
  padding-top: 1.4rem;
}

.card-label {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 2rem;
}

.stats article,
.feature-card,
.step {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.stats strong,
.feature-card h3,
.step h3 {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.how-it-works {
  padding-top: 1rem;
}

.step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.contact-text {
  max-width: 34rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 0 2.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: right;
  font-weight: 700;
}

.callout-actions,
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
}

.social-button svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #f7fffc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-button .fill-icon {
  fill: #f7fffc;
  stroke: none;
}

@media (max-width: 900px) {
  .site-nav,
  .stats,
  .feature-grid,
  .steps,
  .hero,
  .section-heading,
  .callout,
  .contact-card,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-header,
  .section-heading,
  .callout,
  .contact-card,
  .site-footer {
    align-items: flex-start;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-card {
    width: 100%;
  }

  .footer-contact {
    text-align: left;
  }

  .callout-actions,
  .contact-actions {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 1rem;
  }

  .site-nav {
    display: none;
  }

  h1 {
    max-width: none;
  }

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

  .button {
    width: 100%;
  }

  .product-shell {
    min-height: 280px;
    padding: 0.5rem;
  }
}



.eyebrow-large {
  font-size: 1.56rem;
  line-height: 1.1;
}

body {
  overflow-x: hidden;
}

.hero-copy,
.hero-card,
.contact-card > div {
  min-width: 0;
}

.product-shell:empty {
  min-height: 180px;
}

.social-buttons {
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .section {
    padding: 3rem 0;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 1.4rem;
  }

  .section-heading h2,
  .contact-text {
    max-width: none;
  }

  .hero-card,
  .contact-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .stats,
  .section,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    padding: 1rem 0 0.5rem;
  }

  .hero {
    gap: 1.25rem;
    padding: 1.5rem 0 2rem;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: none;
  }

  .eyebrow-large {
    font-size: 1rem;
    line-height: 1.2;
  }

  .hero-card,
  .contact-card,
  .feature-card,
  .step,
  .stats article {
    padding: 1.15rem;
  }

  .product-shell,
  .product-shell:empty {
    min-height: 140px;
    padding: 0.5rem;
  }

  .hero-points {
    gap: 0.55rem;
  }

  .hero-points li {
    width: 100%;
    text-align: center;
  }

  .social-buttons {
    width: 100%;
    gap: 0.6rem;
  }

  .social-button {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}

.product-shell-mobile {
  display: none;
}

@media (max-width: 640px) {
  .product-shell-mobile {
    display: grid;
    margin: 0.5rem 0 1rem;
  }

  .product-shell-desktop {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f7fffc;
  font-size: 0.85rem;
}

.card-price {
  margin: 0.5rem 0 0;
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 800;
}

.footer-meta {
  color: var(--muted);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 22, 0.34);
  backdrop-filter: blur(4px);
  z-index: 20;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100vh;
  padding: 1.25rem;
  background: #fbfaf5;
  box-shadow: -20px 0 60px rgba(19, 35, 29, 0.16);
  transform: translateX(100%);
  transition: transform 180ms ease;
  z-index: 30;
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.cart-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  transform-origin: center;
}

.cart-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cart-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cart-drawer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  min-height: 0;
}

.cart-items {
  display: grid;
  gap: 0.85rem;
  overflow: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.cart-item-copy strong,
.cart-summary strong {
  font-size: 1rem;
}

.cart-item-copy p,
.cart-note,
.cart-empty {
  margin: 0.35rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.cart-item-copy span {
  color: var(--accent-deep);
  font-weight: 800;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cart-summary {
  margin-top: auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

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

@media (max-width: 640px) {
  .header-actions {
    align-items: flex-start;
  }

  .cart-trigger {
    min-height: 42px;
    padding: 0 0.8rem;
  }

  .cart-drawer {
    padding: 1rem;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-controls {
    justify-content: flex-start;
  }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 22, 0.34);
  backdrop-filter: blur(4px);
  z-index: 24;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  content: '';
}

.mobile-menu-icon {
  position: relative;
}

.mobile-menu-icon::before {
  position: absolute;
  top: -5px;
  left: 0;
}

.mobile-menu-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  padding: 1rem;
  background: #fbfaf5;
  box-shadow: -20px 0 60px rgba(19, 35, 29, 0.16);
  transform: translateX(100%);
  transition: transform 180ms ease;
  z-index: 25;
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

.mobile-menu-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
}

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.mobile-menu-panel a,
.mobile-menu-panel button {
  width: 100%;
}

.mobile-menu-panel a {
  display: block;
  padding: 0.95rem 0;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.mobile-cart-trigger {
  justify-content: space-between;
  margin-top: 0.9rem;
}

@media (max-width: 640px) {
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-header {
    align-items: center;
  }
}



body.mobile-menu-open {
  overflow: hidden;
}



.cart-drawer .cart-close {
  min-width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
