:root {
  --ink: #152327;
  --muted: #617075;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --teal: #007f7a;
  --coral: #ef6b54;
  --lime: #bfd941;
  --gold: #f0b44c;
  --line: rgba(21, 35, 39, 0.12);
  --shadow: 0 18px 55px rgba(21, 35, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(0, 127, 122, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 86px) 64px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.76) 42%, rgba(251, 250, 247, 0.08) 75%),
    linear-gradient(0deg, rgba(21, 35, 39, 0.14), rgba(21, 35, 39, 0));
}

.hero-content {
  position: relative;
  max-width: 650px;
  padding-top: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8.9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero-copy {
  max-width: 540px;
  color: #304348;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

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

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

.social-proof {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: 30px clamp(20px, 6vw, 86px);
  color: #fff;
  background: linear-gradient(135deg, #10191c, #007f7a 58%, #ef6b54);
}

.social-proof p {
  margin: 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.55;
}

.stat-number,
.stat-label {
  display: block;
}

.stat-number {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.9;
  font-weight: 800;
}

.stat-label {
  margin-top: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.proof-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button.secondary.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.intro div {
  padding: 28px clamp(20px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.intro div:last-child {
  border-right: 0;
}

.intro strong,
.intro span {
  display: block;
}

.intro strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intro span,
.product-card p,
.copy-block p,
.custom-panel p,
.steps p,
.contact-section p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.shop-section,
.split-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 86px);
}

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

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

.product-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(21, 35, 39, 0.06);
}

.shop-section {
  background: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

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

.shop-card.featured {
  color: #fff;
  background: var(--ink);
}

.shop-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.shop-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-card p,
.tick-list {
  color: var(--muted);
  line-height: 1.65;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.product-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--teal);
}

.product-icon.egg {
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.78), transparent 16px),
    repeating-linear-gradient(45deg, var(--coral) 0 8px, var(--gold) 8px 16px);
}

.product-icon.dragon {
  background:
    conic-gradient(from 45deg, var(--teal), var(--lime), var(--coral), var(--teal));
  clip-path: polygon(50% 0, 62% 28%, 94% 26%, 70% 48%, 82% 84%, 50% 64%, 18% 84%, 30% 48%, 6% 26%, 38% 28%);
}

.product-icon.prop {
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 57%, transparent 58%),
    linear-gradient(135deg, var(--teal), var(--coral));
}

.product-icon.useful {
  background:
    linear-gradient(90deg, var(--gold) 0 28%, transparent 28% 36%, var(--teal) 36% 64%, transparent 64% 72%, var(--coral) 72%),
    #fff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: #eef7f3;
}

.copy-block p {
  max-width: 590px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.custom-panel {
  display: grid;
  gap: 14px;
}

.custom-panel div,
.steps div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.custom-panel span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}

.custom-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.process {
  background: var(--paper);
}

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

.steps span {
  width: auto;
  padding: 0 14px;
  background: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  color: #fff;
  background: var(--ink);
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-section p,
.contact-section .form-note {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 35, 39, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  background: #10191c;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 800;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.86) 48%, rgba(251, 250, 247, 0.32) 100%),
      linear-gradient(0deg, rgba(21, 35, 39, 0.2), rgba(21, 35, 39, 0));
  }

  .intro,
  .product-grid,
  .social-proof,
  .shop-grid,
  .split-section,
  .steps,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-actions {
    justify-content: flex-start;
  }

  .intro div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: 82vh;
    padding: 96px 18px 44px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

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

  .section,
  .shop-section,
  .split-section,
  .contact-section {
    padding: 62px 18px;
  }

  .product-card {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }
}
