@font-face {
  font-family: "ELMS SANS";
  src: url("ElmsSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --bg: #f4efe6;
  --bg-strong: #e7dccb;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: #fffaf2;
  --text: #0f2042;
  --muted: #4e5d78;
  --line: rgba(15, 32, 66, 0.12);
  --accent: #1976d2;
  --accent-strong: #1565c0;
  --accent-warm: #d32f2f;
  --shadow: 0 24px 60px rgba(15, 32, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "ELMS SANS", "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 118, 210, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(211, 47, 47, 0.14), transparent 24%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 45%, #f8f3eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 32, 66, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 32, 66, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  position: sticky;
  top: 12px;
  z-index: 10;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 32, 66, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span,
.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--text) !important;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 26px 0 20px;
}

.hero-copy h1,
.section-intro h2,
.cta-section h2 {
  font-family: "ELMS SANS", "Inter", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 11ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.lead,
.feature-card p,
.step p,
.product-copy,
.cta-section p,
.cta-box p,
.hero-points {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: 1.12rem;
  max-width: 58ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 18px 30px rgba(25, 118, 210, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
}

.button-full {
  width: 100%;
}

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

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 0 6px rgba(211, 47, 47, 0.12);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.72));
  box-shadow: var(--shadow);
}

.visual-card-large {
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.visual-card-large::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.18), transparent 70%);
  z-index: -1;
}

.visual-label,
.sample-tag {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 32, 66, 0.08);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.bag-illustration {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.12;
  margin: auto;
  transform: translateY(16px);
}

.bag-body {
  position: absolute;
  inset: 16% 10% 0 10%;
  border-radius: 40px 40px 36px 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 232, 217, 0.98)),
    repeating-linear-gradient(135deg, rgba(15, 32, 66, 0.08) 0 12px, transparent 12px 24px);
  border: 1px solid rgba(15, 32, 66, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 24px 50px rgba(15, 32, 66, 0.1);
}

.bag-body::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(15, 32, 66, 0.08);
}

.bag-stripe {
  position: absolute;
  inset: 46% 16% auto 16%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 118, 210, 0.92), rgba(211, 47, 47, 0.88));
  box-shadow: 0 10px 28px rgba(25, 118, 210, 0.22);
}

.bag-handle {
  position: absolute;
  top: 4%;
  width: 28%;
  height: 28%;
  border: 14px solid rgba(15, 32, 66, 0.72);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.handle-left {
  left: 18%;
  transform: rotate(-3deg);
}

.handle-right {
  right: 18%;
  transform: rotate(3deg);
}

.visual-card-small {
  padding: 20px 22px;
  display: grid;
  gap: 6px;
}

.visual-card-small strong {
  font-size: 1.1rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 72px;
}

.trust-band > div {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(15, 32, 66, 0.05);
}

.trust-number {
  display: block;
  font-family: "ELMS SANS", "Inter", system-ui, sans-serif;
  font-size: 2.3rem;
  color: var(--accent-strong);
  margin-bottom: 8px;
}

.content-grid,
.process-section,
.product-section,
.cta-section {
  margin-bottom: 72px;
}

.section-intro {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 24px;
}

.section-intro h2,
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.narrow {
  max-width: 680px;
}

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

.feature-card,
.step,
.product-panel,
.cta-box {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(15, 32, 66, 0.05);
}

.feature-card,
.step {
  padding: 24px;
}

.feature-card h3,
.step h3,
.product-copy .spec-list li {
  margin: 0 0 10px;
}

.step-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-weight: 800;
  background: rgba(25, 118, 210, 0.12);
  color: var(--accent-strong);
}

.product-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 24px;
  align-items: center;
}

.spec-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.product-sample {
  min-height: 380px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(25, 118, 210, 0.14), transparent 38%),
    linear-gradient(180deg, #fffdf8, #f4ead8);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.product-sample::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.12);
}

.sample-bag {
  position: relative;
  width: min(78%, 280px);
  aspect-ratio: 0.86 / 1;
}

.sample-bag-top,
.sample-bag-body,
.sample-bag-stripe {
  position: absolute;
  left: 0;
  right: 0;
}

.sample-bag-top {
  top: 0;
  height: 20%;
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(15, 32, 66, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 229, 214, 0.96));
}

.sample-bag-body {
  top: 16%;
  bottom: 0;
  border-radius: 34px;
  background:
    repeating-linear-gradient(135deg, rgba(15, 32, 66, 0.08) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 229, 214, 0.98));
  border: 1px solid rgba(15, 32, 66, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.sample-bag-stripe {
  top: 48%;
  height: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  box-shadow: 0 16px 24px rgba(25, 118, 210, 0.18);
}

.cta-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.cta-box {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 18px;
}

@media (max-width: 960px) {
  .hero,
  .trust-band,
  .feature-cards,
  .steps,
  .product-panel,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .visual-card-large {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .nav {
    gap: 12px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero,
  .content-grid,
  .process-section,
  .product-section,
  .cta-section {
    margin-bottom: 56px;
  }

  .feature-card,
  .step,
  .product-panel,
  .cta-box,
  .trust-band > div {
    border-radius: 22px;
  }
}

.site-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}


