/* ══════════════════════════════════════════
   KINDLY. — Landing Page
   Awwwards-level CSS · Studio Quality
   ══════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────── */

:root {
  /* Color Palette */
  --c-white:       #ffffff;
  --c-cream:       #faf7f3;
  --c-cream-warm:  #fff0e3;
  --c-peach:       #ffe3cc;
  --c-peach-mid:   #ffdab6;
  --c-peach-deep:  #eac6a9;
  --c-peach-dark:  #877164;

  --c-green-light: #b0e2b8;
  --c-green:       #9bc6a2;
  --c-green-mid:   #76997d;
  --c-green-deep:  #5e7c65;
  --c-green-dark:  #4f6653;
  --c-green-darker:#37473a;

  --c-blue-pale:   #e7eef2;
  --c-blue-light:  #cbe4f4;
  --c-blue:        #8dc5e7;
  --c-blue-mid:    #4ea4da;
  --c-blue-dark:   #3d83a5;

  --c-dark:        #0f0f0f;
  --c-dark-mid:    #232323;
  --c-dark-soft:   #3f3f3f;
  --c-grey:        #636362;
  --c-grey-light:  #aaa9a7;
  --c-grey-pale:   #e5e3e1;

  /* Typography */
  --f-heading: 'roca', Georgia, 'Times New Roman', serif;
  --f-body:    'nocturne-sans', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid Type Scale */
  --fs-display:  clamp(2.4rem, 4vw + 1rem, 5.5rem);
  --fs-h1:       clamp(2.4rem, 4vw + 1rem, 5.5rem);
  --fs-h2:       clamp(2rem, 3vw + 0.8rem, 4rem);
  --fs-h3:       clamp(1.5rem, 2vw + 0.5rem, 2.4rem);
  --fs-h4:       clamp(1.2rem, 1.2vw + 0.5rem, 1.6rem);
  --fs-body-lg:  clamp(1.05rem, 0.8vw + 0.5rem, 1.35rem);
  --fs-body:     clamp(0.95rem, 0.6vw + 0.5rem, 1.125rem);
  --fs-small:    clamp(0.8rem, 0.4vw + 0.4rem, 0.925rem);
  --fs-caption:  clamp(0.7rem, 0.3vw + 0.4rem, 0.8rem);

  /* Spacing Scale */
  --sp-xs:  clamp(0.5rem, 1vw, 1rem);
  --sp-sm:  clamp(1rem, 2vw, 2rem);
  --sp-md:  clamp(2rem, 4vw, 4rem);
  --sp-lg:  clamp(3rem, 6vw, 6rem);
  --sp-xl:  clamp(4rem, 8vw, 9rem);
  --sp-2xl: clamp(6rem, 12vw, 14rem);

  /* Layout */
  --max-width: 1440px;
  --gutter:    clamp(1.5rem, 4vw, 4rem);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}


/* ── Reset & Base ──────────────────────── */

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

html {
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-dark);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 700;
  line-height: 1.1;
}

::selection {
  background: var(--c-peach-mid);
  color: var(--c-dark);
}

:focus-visible {
  outline: 2px solid var(--c-blue-mid);
  outline-offset: 4px;
}


/* ── Preloader ─────────────────────────── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-cream-warm);
  will-change: transform;
  animation: preloader-fallback 0.5s ease 5s both;
}

.preloader__brand {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.03em;
  will-change: transform, opacity;
}

@keyframes preloader-fallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}


/* ── Custom Cursor ─────────────────────── */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  pointer-events: none;
  mix-blend-mode: difference;
  display: none;
}

.cursor__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-white);
  position: fixed;
  top: -4px;
  left: -4px;
  will-change: transform;
}

.cursor__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: fixed;
  top: -22px;
  left: -22px;
  will-change: transform;
}

html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}


/* ── Grain Overlay ─────────────────────── */

.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
}


/* ── Text Splitting Helpers ────────────── */

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.1em;
}

.word__inner {
  display: inline-block;
  will-change: transform;
}

.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.line__inner {
  display: block;
  will-change: transform;
}


/* ── Shared Components ─────────────────── */

/* Section Labels */
.section-label {
  font-family: var(--f-body);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-grey-light);
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: var(--sp-sm);
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-grey-pale);
  flex-shrink: 0;
}

.section-label--light {
  color: var(--c-green);
}

.section-label--light::before {
  background: var(--c-green-deep);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--f-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 1em 2.4em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-out),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn--primary {
  background-color: var(--c-dark);
  color: var(--c-cream);
}

.btn--primary:hover {
  background-color: var(--c-dark-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.btn--sm {
  font-size: var(--fs-caption);
  padding: 0.75em 1.8em;
}

/* Tags */
.tag {
  font-size: var(--fs-caption);
  font-family: var(--f-body);
  padding: 0.4em 1em;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out);
}

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

.tag--peach {
  background-color: var(--c-peach);
  color: var(--c-peach-dark);
}

.tag--green {
  background-color: var(--c-green-light);
  color: var(--c-green-dark);
}

.tag--blue {
  background-color: var(--c-blue-light);
  color: var(--c-blue-dark);
}


/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-sm) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s var(--ease-out),
              color 0.4s var(--ease-out);
}

.site-header--scrolled {
  background-color: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Light variant (over dark sections) */
.site-header--light {
  color: var(--c-cream);
}

.site-header--light .logo__main,
.site-header--light .logo__pre {
  color: var(--c-cream);
}

.site-header--light .nav-link {
  color: var(--c-cream);
}

.site-header--light .menu-toggle__line {
  background: var(--c-cream);
}

.site-header--light.site-header--scrolled {
  background-color: rgba(55, 71, 58, 0.92);
}

.site-header--light .header__cta {
  background-color: var(--c-cream);
  color: var(--c-dark);
}

/* Logo */
.logo {
  display: block;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo__pre {
  font-family: var(--f-body);
  font-size: clamp(0.6rem, 0.7vw + 0.3rem, 0.8rem);
  font-weight: 400;
  display: block;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  line-height: 1;
  margin-bottom: 0.15em;
  color: var(--c-dark);
  transition: color 0.4s var(--ease-out);
}

.logo__main {
  font-family: var(--f-heading);
  font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  color: var(--c-dark);
  transition: color 0.4s var(--ease-out);
}

/* Navigation */
.main-nav {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  opacity: 0.6;
  transition: opacity 0.4s ease, color 0.4s var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header CTA */
.header__cta {
  margin-left: var(--sp-xs);
}

/* Menu Toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
  z-index: 101;
}

.menu-toggle__line {
  width: 26px;
  height: 2px;
  background: var(--c-dark);
  transition: transform 0.5s var(--ease-out),
              opacity 0.3s ease,
              background 0.4s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.is-active .menu-toggle__line:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}


/* ── Mobile Menu ───────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--c-cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

.mobile-menu__link {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding: 0.2em 0;
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-peach);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
}

.mobile-menu__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ══════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    180deg,
    var(--c-cream) 0%,
    var(--c-cream-warm) 60%,
    var(--c-peach) 100%
  );
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: var(--sp-lg);
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--sp-2xl) var(--gutter) var(--sp-xl);
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-peach-dark);
  margin-bottom: var(--sp-sm);
}

.hero__title {
  font-family: var(--f-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  margin-bottom: var(--sp-md);
}

.hero__subtitle {
  font-family: var(--f-body);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--c-dark-soft);
  max-width: 520px;
  margin-bottom: var(--sp-md);
}

.hero__cta {
  /* inherits from .btn + .btn--primary */
}

.hero__phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__phone img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.10),
    0 12px 32px rgba(0, 0, 0, 0.06);
}

.hero__hands {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__hands img {
  width: 100%;
  display: block;
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-label {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-peach-dark);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--c-peach-dark);
  transform-origin: top;
  transform: scaleY(0);
}


/* ══════════════════════════════════════════
   2. TRUST BAR
   ══════════════════════════════════════════ */

.trust-bar {
  padding: var(--sp-md) 0;
  background-color: var(--c-cream);
  border-bottom: 1px solid var(--c-grey-pale);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  text-align: center;
}

.trust-bar__label {
  font-family: var(--f-body);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-grey-light);
}

.trust-bar__names {
  font-family: var(--f-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--c-grey);
  letter-spacing: -0.01em;
  line-height: 1.5;
}


/* ══════════════════════════════════════════
   3. PRODUCT
   ══════════════════════════════════════════ */

.product {
  position: relative;
  padding: var(--sp-2xl) 0;
  background-color: var(--c-green-darker);
  color: var(--c-cream);
  overflow: hidden;
}

.product__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.product__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.product__header .section-label {
  justify-content: center;
}

.product__heading {
  font-size: var(--fs-h2);
  color: var(--c-cream);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-inline: auto;
}

.product__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
  max-width: 900px;
  margin-inline: auto;
}

.product__phone {
  position: relative;
  will-change: transform;
}

.product__phone--left {
  padding-top: var(--sp-lg);
}

.product__phone--right {
  padding-top: 0;
}

.product__phone img {
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.product__phone-info {
  margin-top: var(--sp-sm);
  text-align: center;
}

.product__phone-title {
  font-family: var(--f-heading);
  font-size: var(--fs-h4);
  color: var(--c-cream);
  margin-bottom: 0.4em;
}

.product__phone-desc {
  font-size: var(--fs-small);
  color: var(--c-green);
  line-height: 1.55;
  max-width: 300px;
  margin-inline: auto;
}

.product__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--c-green-deep);
  opacity: 0.15;
  filter: blur(100px);
  pointer-events: none;
}

.product__glow--1 {
  top: 10%;
  left: -10%;
}

.product__glow--2 {
  bottom: 10%;
  right: -10%;
}


/* ══════════════════════════════════════════
   4. FEATURES — Editorial with visuals
   ══════════════════════════════════════════ */

.features {
  position: relative;
  padding: var(--sp-2xl) 0;
  background-color: var(--c-cream);
  overflow: hidden;
}

.features__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.features__header {
  margin-bottom: var(--sp-xl);
  max-width: 700px;
}

.features__heading {
  font-size: var(--fs-h2);
  color: var(--c-dark);
  letter-spacing: -0.02em;
}

/* Feature Chapters — alternating illustration + text */
.features__chapters {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
}

.feature-chapter {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: var(--sp-lg);
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
}

/* Even chapters: swap visual to right side */
.feature-chapter:nth-child(even) .feature-chapter__content {
  order: -1;
}

.feature-chapter__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-chapter__visual img {
  width: 85%;
  max-width: 380px;
  margin-inline: auto;
}

.feature-chapter__content {
  /* text content column */
}

.feature-chapter__index {
  font-family: var(--f-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: var(--c-peach);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--sp-xs);
  -webkit-text-stroke: 1px var(--c-peach-deep);
}

.feature-chapter__title {
  font-family: var(--f-heading);
  font-size: var(--fs-h3);
  color: var(--c-dark);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.01em;
}

.feature-chapter__desc {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-dark-soft);
  max-width: 480px;
}

.feature-chapter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--sp-sm);
}


/* ══════════════════════════════════════════
   5. MISSION
   ══════════════════════════════════════════ */

.mission {
  position: relative;
  padding: var(--sp-2xl) 0;
  background: linear-gradient(
    180deg,
    var(--c-cream-warm) 0%,
    var(--c-cream) 100%
  );
  text-align: center;
  overflow: hidden;
}

.mission__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

.mission__heading {
  font-family: var(--f-heading);
  font-size: var(--fs-h2);
  color: var(--c-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.mission__body {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--c-dark-soft);
  max-width: 640px;
  margin-inline: auto;
}

.mission__glow {
  position: absolute;
  width: clamp(100px, 20vw, 280px);
  height: clamp(100px, 20vw, 280px);
  border-radius: 50%;
  background: var(--c-blue-light);
  opacity: 0.25;
  filter: blur(80px);
  top: 20%;
  right: 5%;
  pointer-events: none;
  z-index: 0;
}


/* ══════════════════════════════════════════
   6. CLOSING
   ══════════════════════════════════════════ */

.closing {
  position: relative;
  padding: var(--sp-2xl) 0 0;
  background: linear-gradient(
    180deg,
    var(--c-cream) 0%,
    var(--c-cream-warm) 40%,
    var(--c-peach) 100%
  );
  overflow: hidden;
}

.closing__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--sp-xl);
  position: relative;
  z-index: 2;
}

.closing__heading {
  font-family: var(--f-heading);
  font-size: var(--fs-h1);
  color: var(--c-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: var(--sp-md);
}

.closing__heading em {
  font-style: normal;
  color: var(--c-green-deep);
}

.closing__cta {
  margin-bottom: var(--sp-lg);
}

.closing__divider {
  width: 40px;
  height: 1px;
  background: var(--c-peach-dark);
  margin-bottom: var(--sp-sm);
  opacity: 0.4;
}

.closing__or {
  font-size: var(--fs-small);
  color: var(--c-grey);
  margin-bottom: var(--sp-md);
  letter-spacing: 0.02em;
}

.closing__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: flex-start;
}

.closing__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.closing__contact-name {
  font-family: var(--f-heading);
  font-size: var(--fs-h4);
  color: var(--c-dark);
}

.closing__link {
  display: inline-block;
  font-size: var(--fs-body);
  color: var(--c-dark-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.closing__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-in-out);
}

.closing__link:hover {
  color: var(--c-dark);
}

.closing__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.closing__hands {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--sp-lg);
}

.closing__hands img {
  width: 100%;
  display: block;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.site-footer {
  background-color: var(--c-peach);
  padding: var(--sp-sm) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer__brand {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-dark);
}

.site-footer__copy {
  font-size: var(--fs-caption);
  color: var(--c-peach-dark);
}


/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.6fr;
    gap: var(--sp-md);
  }

  .hero__phone img {
    max-width: 260px;
  }

  .product__showcase {
    max-width: 700px;
  }

  .feature-chapter {
    grid-template-columns: 0.4fr 0.6fr;
    gap: var(--sp-md);
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   ══════════════════════════════════════════ */

@media (max-width: 640px) {
  .site-header {
    padding: var(--sp-xs) var(--gutter);
  }

  .main-nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding: calc(var(--sp-2xl) + 2rem) var(--gutter) var(--sp-lg);
    gap: var(--sp-md);
  }

  .hero__phone {
    justify-content: flex-start;
    padding-left: var(--sp-sm);
  }

  .hero__phone img {
    max-width: 200px;
  }

  .hero__scroll-cue {
    display: none;
  }

  /* Trust bar */
  .trust-bar__names {
    font-size: var(--fs-caption);
  }

  /* Product */
  .product__showcase {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: var(--sp-md);
  }

  .product__phone--left {
    padding-top: 0;
  }

  /* Features */
  .feature-chapter {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .feature-chapter:nth-child(even) .feature-chapter__content {
    order: 0;
  }

  .feature-chapter__visual {
    order: -1;
  }

  .feature-chapter__visual img {
    max-width: 260px;
  }

  .feature-chapter__index {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  /* Closing */
  .closing__contact {
    flex-direction: column;
    gap: var(--sp-sm);
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}


/* ── Reduced Motion ────────────────────── */

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

  .preloader {
    display: none !important;
  }

  .cursor {
    display: none !important;
  }
}
