/* DainSpark — Professional brand system */
:root {
  --ink: #121212;
  --ink-soft: #4a5568;
  --ink-mute: #718096;
  --sage: #0056d2;
  --sage-deep: #003d99;
  --mint: #3b8ef0;
  --mint-soft: #c5dbfb;
  --foam: #eef4fc;
  --bg: #f7f9fc;
  --bg-alt: #eaf1fb;
  --white: #ffffff;
  --amber: #c47a2c;
  --stone: #d8dee8;
  --line: rgba(18, 18, 18, 0.1);
  --line-strong: rgba(18, 18, 18, 0.16);
  --shadow-sm: 0 4px 16px rgba(0, 61, 153, 0.06);
  --shadow: 0 20px 50px rgba(0, 61, 153, 0.1);
  --shadow-lg: 0 32px 64px rgba(0, 61, 153, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1160px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --gradient-brand: linear-gradient(135deg, #3b8ef0 0%, #0056d2 55%, #003d99 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--sage);
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.75rem, 720px);
  margin-inline: auto;
}

/* Utility bar */
.utility-bar {
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0.55rem 1rem;
}

.utility-bar span + span::before {
  content: "·";
  margin: 0 0.75rem;
  opacity: 0.5;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  height: 2.35rem;
  width: auto;
  display: block;
}

.site-footer .brand-logo {
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.75rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:not(.nav-cta):hover::after,
.nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: var(--white) !important;
  font-weight: 650;
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.06);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 86, 210, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5ba3f5 0%, #0056d2 55%, #003085 100%);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  background: rgba(0, 86, 210, 0.04);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--sage-deep);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  background: var(--foam);
  color: var(--ink);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 2.2rem);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.78) 0%, rgba(10, 22, 40, 0.5) 42%, rgba(10, 22, 40, 0.28) 100%),
    url("../assets/hero-bg.svg") center / cover no-repeat,
    linear-gradient(135deg, #06101f, #0a2a5c 35%, #0056d2 70%, #3b8ef0);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 75% 45%, rgba(59, 142, 240, 0.28), transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-layout {
  width: min(100% - 2.75rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3.5rem;
  min-height: inherit;
}

.hero-content {
  color: var(--white);
  max-width: 34rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-logo {
  width: min(100%, 320px);
  height: auto;
  margin: 0 0 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  background: rgba(255, 255, 255, 0.97);
  padding: 0.75rem 1rem;
  border-radius: 14px;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.75rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  line-height: 0.92;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 0;
}

.hero-product {
  display: grid;
  place-items: center;
  animation: rise 1s var(--ease) 0.15s both;
}

.hero-product-frame {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-product-frame::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-product-frame img {
  width: 86%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.45));
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  margin: 0 0 0.85rem;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.0625rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head.centered .eyebrow::before {
  display: none;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.trust-item {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sage-deep);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Features */
.features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mint-soft);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  padding: 0.65rem;
  border-radius: 12px;
  background: var(--foam);
  color: var(--sage);
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.feature p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mint-soft);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

/* Product showcase */
.product-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 142, 240, 0.18), transparent 55%);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 18%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35), transparent 70%);
  filter: blur(8px);
}

.product-visual img {
  width: min(78%, 340px);
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.45));
}

/* Product gallery */
.gallery {
  display: grid;
  gap: 0.85rem;
}

.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 42%, rgba(59, 142, 240, 0.2), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1.5rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #f4f6f8;
  padding: 0.35rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.15);
}

.product-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.85rem;
}

.product-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.35rem 0 0.35rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--sage-deep);
  letter-spacing: -0.03em;
}

.price-was {
  color: var(--ink-mute);
  text-decoration: line-through;
  font-size: 1.05rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--ink-mute);
  margin: 0;
}

.specs {
  list-style: none;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.specs li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}

.specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(59, 142, 240, 0.28);
}

/* Comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.compare-col {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
}

.compare-col.old {
  background: var(--white);
}

.compare-col.new {
  background: linear-gradient(160deg, var(--sage-deep), var(--sage));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.compare-col h3 {
  margin: 0 0 1.25rem;
  font-size: 1.3rem;
}

.compare-col.new h3 {
  color: var(--white);
}

.compare-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.compare-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.compare-col.old .compare-list li {
  color: var(--ink-soft);
}

.compare-col.new .compare-list li {
  color: rgba(255, 255, 255, 0.9);
}

.compare-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
}

/* Collection preview */
.collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.collection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  color: inherit;
}

.collection-media {
  aspect-ratio: 1.1;
  background: linear-gradient(165deg, #f4f6f8, #e8ecf0);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.collection-media.is-dark {
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 142, 240, 0.18), transparent 55%),
    linear-gradient(165deg, #0a1628, #121212);
}

.collection-media img {
  width: 88%;
  max-width: 220px;
  height: 88%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.collection-card:hover .collection-media img {
  transform: scale(1.04) translateY(-3px);
}

.collection-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.collection-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.collection-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  flex: 1;
}

.collection-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-meta .price {
  font-size: 1.2rem;
}

.link-arrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sage);
  text-decoration: none;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.quote-stars {
  color: var(--amber);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.quote blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--sage));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.quote-author strong {
  display: block;
  font-size: 0.95rem;
}

.quote-author span {
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* Guarantee band */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--foam);
  color: var(--sage);
  display: grid;
  place-items: center;
}

.guarantee h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}

.guarantee p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(59, 142, 240, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0, 86, 210, 0.08), transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.85rem;
  max-width: 16ch;
}

.page-hero p {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
  margin: 0;
}

/* Product grid (products page) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-item-media {
  aspect-ratio: 1;
  background: linear-gradient(165deg, #f4f6f8, #e8ecf0);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--white);
}

.product-item-media img {
  width: 92%;
  max-width: 260px;
  height: 92%;
  object-fit: contain;
}

.product-item-body {
  padding: 1.35rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.product-item > .product-item-body > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 1rem;
  flex: 1;
}

.product-item .price {
  font-size: 1.35rem;
}

.product-item .btn-group {
  margin-top: 1.15rem;
}

/* Surfaces table */
.surfaces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.surface-box {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.surface-box h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.surface-box.good h3 {
  color: var(--sage-deep);
}

.surface-box.limited h3 {
  color: var(--amber);
}

.surface-box ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.surface-box li {
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}

.surface-box li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--mint);
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.story-prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 1.25rem;
}

.story-prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.story-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.story-panel h3 {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
}

.values {
  display: grid;
  gap: 1.35rem;
}

.value {
  border-left: 3px solid var(--mint);
  padding-left: 1.1rem;
}

.value h4 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.timeline {
  margin-top: 3.5rem;
  display: grid;
  gap: 0;
  border-left: 2px solid var(--mint-soft);
  padding-left: 1.75rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--foam);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  padding: 1.75rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, var(--sage), var(--mint));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.team-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 600;
}

.team-card p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Careers */
.jobs {
  display: grid;
  gap: 1rem;
}

.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.job:hover {
  border-color: var(--mint);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.job h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.job p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--foam);
  color: var(--sage-deep);
}

.perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  margin-top: 1.75rem;
}

.perk {
  color: var(--ink-soft);
  font-size: 0.98rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.perk strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.form-note {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--foam), var(--bg-alt));
  border: 1px solid var(--mint-soft);
  border-radius: var(--radius);
}

.form-note a {
  font-weight: 700;
}

/* CTA band */
.cta-band {
  margin: 1rem 0 5rem;
  padding: 3.25rem 2.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 15%, rgba(59, 142, 240, 0.4), transparent 42%),
    linear-gradient(135deg, #06101f 0%, #0a2a5c 45%, #0056d2 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--white);
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 0;
  background: #0a1628;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-weight: 700;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--mint);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-brand-text {
  margin-top: 1rem;
  max-width: 28ch;
  line-height: 1.55;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.9rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter input:focus {
  outline: 2px solid var(--mint);
  outline-offset: 1px;
}

.newsletter button {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--mint);
  color: var(--ink);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter button:hover {
  background: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  font-size: inherit;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-layout,
  .product-stage,
  .story-grid,
  .compare,
  .surfaces,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .features,
  .steps,
  .collection,
  .quotes,
  .product-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-product {
    order: -1;
  }

  .hero-product-frame {
    width: min(100%, 280px);
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-icon {
    margin-inline: auto;
  }

  .story-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

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

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 1rem;
  }

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

  .nav-row {
    flex-wrap: wrap;
  }

  .utility-bar span + span::before {
    margin: 0 0.4rem;
  }

  .trust-strip,
  .features,
  .steps,
  .collection,
  .quotes,
  .product-grid,
  .team-grid,
  .perks {
    grid-template-columns: 1fr;
  }

  .job {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 2.5rem 0 3rem;
  }

  .brand-hero {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-logo {
    width: min(100%, 260px);
  }

  .section {
    padding: 3.75rem 0;
  }

  .newsletter {
    flex-direction: column;
  }
}
