:root {
  --bg: #03050a;
  --bg-soft: #070b14;
  --panel: rgba(12, 18, 31, 0.78);
  --panel-strong: rgba(15, 22, 38, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --text: #f7f3eb;
  --muted: rgba(237, 241, 250, 0.72);
  --subtle: rgba(237, 241, 250, 0.52);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(214, 185, 118, 0.42);
  --blue: #4e78ff;
  --blue-bright: #6d91ff;
  --gold: #d7b46a;
  --gold-soft: #f2dfb0;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.2) 0%, rgba(8, 15, 27, 0.88) 42%, #03050a 100%),
    linear-gradient(115deg, #03050a 0%, #071123 48%, #02040a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(78, 120, 255, 0.12), transparent 25%, transparent 72%, rgba(215, 180, 106, 0.08)),
    linear-gradient(180deg, transparent 0%, rgba(2, 4, 10, 0.6) 84%);
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.15rem, 10vw, 6.45rem);
  line-height: 0.93;
}

h1 span {
  color: var(--blue-bright);
}

h2 {
  font-size: clamp(2.05rem, 7.5vw, 3.75rem);
  line-height: 1.02;
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 760;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(var(--max), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  z-index: -1;
  background: rgba(3, 5, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.landing-brand {
  position: relative;
  display: block;
  width: 138px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
}

.landing-brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 242px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.landing-brand--footer {
  width: 144px;
  height: 54px;
}

.landing-brand--footer .landing-brand-logo {
  width: 252px;
}

.saclo-wordmark-text {
  color: #241c19;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
}

.saclo-wordmark-text {
  display: inline-block;
  font-size: 0.74em;
  vertical-align: 0.08em;
}

.nav-links {
  display: none;
}

.nav-cta,
.button {
  min-height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 18px;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary,
.nav-cta {
  color: #fff;
  background: linear-gradient(180deg, #6588ff, #2858f6);
  box-shadow: 0 18px 42px rgba(52, 94, 255, 0.34);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.32);
}

.eyebrow {
  color: #a7bdff;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(109, 145, 255, 0.5);
  border-radius: 999px;
  background: rgba(78, 120, 255, 0.11);
}

.hero-subtitle {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 3.8vw, 1.26rem);
  line-height: 1.55;
}

.hero-belief {
  max-width: 620px;
  margin-top: 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button {
  min-width: 168px;
}

.hero-note {
  margin-top: 20px;
  color: var(--subtle);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 580px);
  min-height: clamp(340px, 90vw, 480px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.look-preview-card {
  position: relative;
  width: min(100%, 468px);
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 12%, rgba(109, 145, 255, 0.18), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(215, 180, 106, 0.16), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.look-preview-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.look-preview-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.look-preview-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.look-preview-title {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.02;
}

.look-preview-subtitle {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.look-preview-context {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.look-preview-context span {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel-soft);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: center;
}

.look-preview-pieces {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.look-preview-piece {
  min-width: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
}

.look-preview-piece > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.look-preview-piece strong,
.look-preview-piece small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.look-preview-piece strong {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.15;
}

.look-preview-piece small {
  color: var(--subtle);
  font-size: 0.76rem;
  line-height: 1.35;
}

.look-piece-visual {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.look-piece-visual--top,
.look-piece-visual--accessory {
  background: rgba(215, 180, 106, 0.1);
}

.look-piece-visual--bottom {
  background: rgba(109, 145, 255, 0.1);
}

.look-piece-visual--shoes {
  background: rgba(255, 255, 255, 0.08);
}

.look-piece-svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.look-preview-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.82rem;
}

.look-preview-save {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading.centered::after {
  content: "";
  width: 46px;
  height: 2px;
  margin: 4px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.demo {
  padding-top: 44px;
}

.demo-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(10px, 2.2vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(78, 120, 255, 0.12), rgba(215, 180, 106, 0.055)),
    rgba(8, 13, 24, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.landing-demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: 18px;
  background: #02040a;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.demo-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.demo-action .button {
  min-width: 180px;
}

.step-grid,
.feature-grid,
.feedback-grid {
  display: grid;
  gap: 16px;
}

.step-card,
.feature-card,
.quote-card,
.screen-card,
.trust-strip article {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.step-card {
  position: relative;
  min-height: 218px;
  padding: 28px;
  border-radius: var(--radius);
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(242, 223, 176, 0.42);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.line-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(109, 145, 255, 0.25);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(78, 120, 255, 0.08);
}

.landing-icon-svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}

.landing-icon-svg * {
  vector-effect: non-scaling-stroke;
}

.step-card h3,
.feature-card h3,
.trust-strip h3 {
  color: var(--text);
  text-align: center;
}

.step-card p,
.feature-card p {
  margin-top: 12px;
  text-align: center;
  font-size: 0.95rem;
}

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

.feature-card {
  min-height: 186px;
  padding: 28px 22px;
  border-radius: 18px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--gold-soft);
}

.feature-icon .landing-icon-svg {
  width: 34px;
  height: 34px;
}

.product {
  display: grid;
  gap: 30px;
  align-items: start;
}

.product-copy {
  display: grid;
  gap: 16px;
}

.product-copy h2 {
  max-width: 590px;
}

.product-copy p {
  max-width: 650px;
}

.product-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-pillars article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.product-pillars article > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.product-pillars h3 {
  margin-top: 30px;
}

.product-pillars p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.product-screens {
  padding-top: 46px;
  padding-bottom: 46px;
}

.product-screens-inner {
  overflow: hidden;
  padding: clamp(34px, 6vw, 54px) clamp(18px, 4vw, 40px);
  border: 1px solid var(--landing-border-soft);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(246, 215, 226, 0.42), transparent 28%),
    radial-gradient(circle at 94% 92%, rgba(207, 227, 245, 0.42), transparent 30%),
    rgba(255, 249, 245, 0.9);
  box-shadow: 0 20px 54px rgba(91, 74, 67, 0.1);
}

.product-screens .section-heading {
  margin-bottom: 28px;
}

.product-screens .section-heading .eyebrow {
  width: fit-content;
  margin: 0 auto;
}

.product-screens-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--landing-border-strong) transparent;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.product-screen-card {
  flex: 0 0 min(68vw, 260px);
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--landing-border-soft);
  border-radius: 26px;
  background: var(--landing-surface);
  box-shadow: 0 16px 36px rgba(91, 74, 67, 0.12);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-screen-frame {
  overflow: hidden;
  border: 1px solid rgba(201, 175, 163, 0.72);
  border-radius: 20px;
  background: var(--landing-surface-warm);
}

.product-screen-frame img {
  width: 100%;
  height: auto;
}

.product-screen-card figcaption {
  display: grid;
  gap: 7px;
  min-height: 96px;
  padding: 17px 10px 12px;
}

.product-screen-card h3 {
  color: var(--landing-text-main);
  font-size: 1.02rem;
}

.product-screen-card p {
  color: var(--landing-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-screen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(91, 74, 67, 0.16);
}

.story-card {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(115deg, rgba(215, 180, 106, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(78, 120, 255, 0.16), rgba(255, 255, 255, 0.02) 52%, rgba(255, 255, 255, 0.04)),
    rgba(8, 13, 24, 0.8);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.story-copy p:not(.eyebrow) {
  max-width: 590px;
}

.signature {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.signature strong {
  color: var(--blue-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 500;
}

.signature span {
  color: var(--subtle);
  font-size: 0.95rem;
}

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

.quote-card {
  min-height: 178px;
  padding: 24px;
  border-radius: 18px;
}

.quote-card > span {
  display: block;
  height: 26px;
  color: var(--blue-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.72;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.quote-card footer {
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 720;
}

.feedback-cta {
  display: grid;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(109, 145, 255, 0.22);
  border-radius: 22px;
  background: rgba(78, 120, 255, 0.08);
}

.feedback-cta h3 {
  font-size: 1.12rem;
}

.feedback-cta p {
  margin-top: 8px;
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feedback-actions .button {
  flex: 1 1 160px;
}

.trust {
  padding-top: 28px;
}

.trust-strip {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 13, 24, 0.64);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.trust-strip h3 {
  text-align: left;
}

.trust-strip p {
  grid-column: 2;
  font-size: 0.92rem;
}

.trust-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: var(--panel-soft);
}

.trust-icon .landing-icon-svg {
  width: 24px;
  height: 24px;
}

.install {
  padding-top: 52px;
}

.install-grid {
  display: grid;
  gap: 16px;
}

.install-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(78, 120, 255, 0.12), rgba(215, 180, 106, 0.055)),
    rgba(8, 13, 24, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.install-device {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(109, 145, 255, 0.36);
  border-radius: 999px;
  color: #c5d2ff;
  background: rgba(78, 120, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 780;
}

.install-card h3 {
  font-size: 1.12rem;
}

.install-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-card li {
  position: relative;
  min-height: 34px;
  padding-left: 44px;
  color: var(--muted);
  line-height: 1.55;
  counter-increment: install-step;
}

.install-card li::before {
  content: counter(install-step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 223, 176, 0.4);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(242, 223, 176, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.install-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.install-action .button {
  min-width: 190px;
}

.final-cta {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding-top: 58px;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(100%, 940px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 145, 255, 0.72), transparent);
  transform: translateX(-50%);
}

.final-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.final-content h2 {
  max-width: 720px;
}

.final-content .button {
  width: min(100%, 320px);
}

.final-content p {
  color: var(--subtle);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 10, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: 30px 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-inner nav a:hover,
.footer-inner p a:hover {
  color: #fff;
}

.footer-inner p {
  color: var(--subtle);
  font-size: 0.92rem;
}

@media (max-width: 420px) {
  .section-shell,
  .site-header,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    min-height: 82px;
    padding-block: 8px;
  }

  .site-header::before {
    height: 86px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.84rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .look-preview-card {
    gap: 14px;
    padding-inline: 16px;
    border-radius: 28px;
  }

  .look-preview-pieces {
    gap: 8px;
  }

  .look-preview-piece {
    min-height: 70px;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .look-preview-piece strong {
    font-size: 0.82rem;
  }

  .look-preview-piece small {
    font-size: 0.7rem;
  }

  .look-piece-visual {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 12px;
  }

  .look-piece-svg {
    width: 23px;
    height: 23px;
  }

  .look-preview-footer {
    font-size: 0.78rem;
  }

  .look-preview-save {
    min-height: 32px;
    padding-inline: 12px;
  }

}

@media (min-width: 640px) {
  .section-shell {
    padding: 82px 0;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feedback-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .feedback-actions .button {
    flex-basis: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .product-screens {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .product-screens-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 260px));
    justify-content: center;
    overflow: visible;
    padding-bottom: 4px;
    scroll-snap-type: none;
  }

  .product-screen-card {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 26px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 650;
  }

  .nav-links a {
    position: relative;
    padding: 10px 0;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    min-height: 640px;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 7vw, 5.75rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .product {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .story-card {
    padding: 30px;
  }

  .landing-brand--header {
    width: 164px;
    height: 60px;
  }

  .landing-brand--header .landing-brand-logo {
    width: 287px;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 205px;
    padding-inline: 18px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .product-screens-track {
    grid-template-columns: repeat(4, minmax(0, 250px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Warm pastel landing theme */
:root {
  --landing-bg: #f8f2ed;
  --landing-bg-soft: #fbf7f3;
  --landing-surface: #ffffff;
  --landing-surface-warm: #fff9f5;
  --landing-text-main: #241c19;
  --landing-text-strong: #342824;
  --landing-text-muted: #5b4a43;
  --landing-text-soft: #6f5e56;
  --landing-text-placeholder: #7a685f;
  --landing-primary: #aa5348;
  --landing-primary-hover: #963f37;
  --landing-primary-soft: #f1c8be;
  --landing-primary-bg: #fbeae5;
  --landing-primary-text: #fff9f5;
  --landing-border: #d8c8be;
  --landing-border-soft: #e8ddd5;
  --landing-border-strong: #c9afa3;
  --landing-accent-green: #bfdcc1;
  --landing-accent-green-strong: #6f9e73;
  --landing-accent-blue: #cfe3f5;
  --landing-accent-blue-strong: #527c9d;
  --landing-accent-lilac: #dcc7f7;
  --landing-accent-lilac-strong: #8062a8;
  --landing-accent-yellow: #f9e8b6;
  --landing-accent-yellow-strong: #9b7a2f;
  --landing-accent-pink: #f6d7e2;
  --landing-accent-pink-strong: #a85f78;
  --bg: var(--landing-bg);
  --bg-soft: var(--landing-bg-soft);
  --panel: var(--landing-surface);
  --panel-strong: var(--landing-surface);
  --panel-soft: var(--landing-surface-warm);
  --text: var(--landing-text-main);
  --muted: var(--landing-text-muted);
  --subtle: var(--landing-text-soft);
  --line: var(--landing-border-soft);
  --line-strong: var(--landing-border-strong);
  --blue: var(--landing-primary);
  --blue-bright: var(--landing-primary);
  --gold: var(--landing-primary);
  --gold-soft: var(--landing-primary-bg);
  --shadow: 0 24px 70px rgba(91, 74, 67, 0.14);
}

body {
  color: var(--landing-text-main);
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 215, 226, 0.46), transparent 34%),
    radial-gradient(circle at 86% 9%, rgba(207, 227, 245, 0.34), transparent 32%),
    linear-gradient(180deg, var(--landing-bg) 0%, var(--landing-bg-soft) 48%, var(--landing-surface-warm) 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(91, 74, 67, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 74, 67, 0.035) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 72%);
}

body::after {
  background:
    linear-gradient(90deg, rgba(246, 215, 226, 0.38), transparent 28%, transparent 70%, rgba(191, 220, 193, 0.28)),
    linear-gradient(180deg, transparent 0%, rgba(255, 249, 245, 0.72) 88%);
}

h1,
h2,
h3,
.section-heading h2,
.product-copy h2,
.final-content h2 {
  color: var(--landing-text-main);
}

h1 span,
.signature strong {
  color: var(--landing-primary);
  text-shadow: none;
}

p,
.section-heading p,
.hero-subtitle,
.hero-belief,
.hero-note,
.product-copy p,
.story-copy p:not(.eyebrow),
.feedback-cta p,
.final-content p,
.footer-inner p,
.install-card li,
.trust-strip p {
  color: var(--landing-text-muted);
}

.site-header::before {
  background: rgba(255, 249, 245, 0.88);
  border-bottom: 1px solid var(--landing-border-soft);
  box-shadow: 0 18px 42px rgba(91, 74, 67, 0.08);
}

.nav-links {
  color: var(--landing-text-muted);
}

.nav-links a::after {
  background: var(--landing-primary);
}

.nav-links a:hover,
.footer-inner nav a:hover,
.footer-inner p a:hover {
  color: var(--landing-primary-hover);
}

.footer-inner nav a:focus-visible,
.footer-inner p a:focus-visible {
  color: var(--landing-primary-hover);
  outline: 2px solid var(--landing-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta,
.button.primary {
  border-color: var(--landing-primary);
  background: var(--landing-primary);
  color: var(--landing-primary-text);
  box-shadow: 0 18px 38px rgba(201, 111, 96, 0.24);
}

.nav-cta:hover,
.button.primary:hover {
  border-color: var(--landing-primary-hover);
  background: var(--landing-primary-hover);
}

.button.secondary {
  border-color: var(--landing-border);
  background: var(--landing-surface);
  color: var(--landing-text-muted);
}

.eyebrow,
.hero-copy .eyebrow,
.install-device {
  border-color: #e2b8ac;
  background: var(--landing-primary-bg);
  color: #6d3f36;
}

.hero-copy .eyebrow {
  display: inline-flex;
}

.look-preview-card,
.demo-card,
.story-card,
.trust-strip,
.install-card,
.feedback-cta {
  border-color: var(--landing-border-soft);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 245, 0.9)),
    var(--landing-surface);
  box-shadow: var(--shadow);
}

.look-preview-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(207, 227, 245, 0.72), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(246, 215, 226, 0.68), transparent 38%),
    var(--landing-surface);
}

.look-preview-card::before {
  border-color: rgba(201, 111, 96, 0.16);
}

.look-preview-context span,
.look-preview-piece {
  border-color: var(--landing-border-soft);
  background: rgba(255, 255, 255, 0.78);
}

.look-piece-visual {
  border-color: var(--landing-border-soft);
  color: var(--landing-primary);
}

.look-piece-visual--top,
.look-piece-visual--accessory {
  background: var(--landing-primary-bg);
}

.look-piece-visual--bottom {
  background: rgba(207, 227, 245, 0.72);
}

.look-piece-visual--shoes {
  background: rgba(191, 220, 193, 0.52);
}

.look-preview-save {
  border-color: var(--landing-primary);
  background: var(--landing-primary);
  color: var(--landing-primary-text);
}

.section-heading.centered::after,
.final-cta::before {
  background: linear-gradient(90deg, transparent, var(--landing-primary), transparent);
}

.step-card,
.feature-card,
.quote-card,
.product-pillars article,
.trust-strip article {
  border-color: var(--landing-border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 245, 0.88)),
    var(--landing-surface);
  box-shadow: 0 16px 42px rgba(91, 74, 67, 0.1);
}

.step-number {
  border-color: var(--landing-border);
  background: var(--landing-primary-bg);
  color: #6d3f36;
}

.line-icon,
.trust-icon {
  border-color: var(--landing-border);
  color: var(--landing-primary);
  background: var(--landing-primary-bg);
}

.step-card h3,
.feature-card h3,
.trust-strip h3,
.product-pillars h3,
.install-card h3,
.feedback-cta h3 {
  color: var(--landing-text-main);
}

.step-card p,
.feature-card p,
.quote-card p,
.trust-strip p,
.install-card li {
  color: var(--landing-text-muted);
}

.feature-icon,
.quote-card > span {
  color: var(--landing-primary);
}

.landing-demo-video {
  background: var(--landing-surface-warm);
  box-shadow: inset 0 0 0 1px var(--landing-border-soft);
}

.quote-card footer {
  color: #6d3f36;
}

.install-device {
  border-color: #e2b8ac;
}

.install-card li::before {
  border-color: var(--landing-border);
  background: var(--landing-primary-bg);
  color: #6d3f36;
}

.site-footer {
  border-top: 1px solid var(--landing-border-soft);
  background: rgba(255, 249, 245, 0.92);
}

.footer-inner nav {
  color: var(--landing-text-muted);
}

.footer-inner p {
  color: var(--landing-text-soft);
}
