/* =========================================================
   Whiteband AI — Landing Page
   ========================================================= */

@font-face {
  font-family: 'Figtree';
  font-weight: 300 900;
  font-display: swap;
  src: url(assets/fonts/Figtree.woff2) format('woff2');
}

:root {
  --ink:        #101828;
  --ink-soft:   #1D2939;
  --body:       #5A6478;
  --body-light: #6B7688;

  --blue:       #2E7DF7;
  --blue-hi:    #4E93FA;
  --blue-deep:  #1B66DE;
  --hl-bg:      #D8E7FE;

  --line:       #E7EAEF;
  --line-soft:  #EFF1F5;

  --shadow-sm:  0 1px 2px rgba(16, 24, 40, .04), 0 1px 3px rgba(16, 24, 40, .06);
  --shadow-md:  0 4px 12px rgba(16, 24, 40, .06), 0 12px 28px rgba(16, 24, 40, .07);
  --shadow-lg:  0 10px 24px rgba(16, 24, 40, .08), 0 28px 60px rgba(16, 24, 40, .10);
  --shadow-btn: 0 2px 6px rgba(46, 125, 247, .28), 0 8px 20px rgba(46, 125, 247, .22);

  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;

  --header-h: 87px;
  --container: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Figtree', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
blockquote { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.nowrap { white-space: nowrap; }

/* Pre-animation state — cleared by script.js if GSAP is unavailable. */
.pre-anim [data-hero],
.pre-anim [data-hero-title],
.pre-anim [data-reveal],
.pre-anim [data-card],
.pre-anim [data-quote],
.pre-anim [data-quote-img],
.pre-anim [data-rule] { opacity: 0; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  --btn-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
  transform: translate3d(0, var(--btn-y), 0);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-position .5s var(--ease), background-color .3s var(--ease),
              border-color .3s var(--ease);
}

.btn-blue {
  color: #fff;
  background-image: linear-gradient(100deg, var(--blue-deep), var(--blue) 45%, var(--blue-hi));
  background-size: 200% 100%;
  background-position: 0% 0%;
  box-shadow: 0 1px 2px rgba(46, 125, 247, .24), 0 4px 12px rgba(46, 125, 247, .18);
}
.btn-blue:hover  { --btn-y: -2px; background-position: 100% 0%; box-shadow: var(--shadow-btn); }
.btn-blue:active { --btn-y: -1px; }

.btn-dark {
  color: #fff;
  background-image: linear-gradient(100deg, #0B1220, #1D2939 50%, #2C3A4E);
  background-size: 200% 100%;
  height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .18), 0 4px 12px rgba(16, 24, 40, .12);
}
.btn-dark:hover  { --btn-y: -2px; background-position: 100% 0%;
                   box-shadow: 0 4px 10px rgba(16, 24, 40, .2), 0 12px 26px rgba(16, 24, 40, .16); }
.btn-dark:active { --btn-y: -1px; }

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover  { --btn-y: -2px; border-color: #D8DDE5; box-shadow: var(--shadow-md); }
.btn-ghost:active { --btn-y: -1px; }

.btn-lg { height: 48px; padding: 0 26px; font-size: 15px; border-radius: 11px; }

/* Highlight mark */
.hl {
  background: var(--hl-bg);
  color: var(--ink);
  padding: .08em .34em;
  border-radius: 5px;
  font-weight: 700;
}
.hl-dark { background: #CFE2FF; color: #12213A; }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
  transition: transform .4s var(--ease);
}

/* The bar tracks 95% of the viewport at every screen size; surface colour is
   shared with the footer panel. */
.header-inner {
  width: 95%;
  margin-inline: auto;
  height: 67px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(217, 221, 226, .92);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}

.site-header.is-stuck .header-inner {
  background: rgba(217, 221, 226, .96);
  box-shadow: 0 2px 6px rgba(16, 24, 40, .06), 0 10px 30px rgba(16, 24, 40, .08);
}

.brand img { width: 140px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: #333D4B;
}
.nav a { position: relative; padding: 6px 0; transition: color .25s var(--ease); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 9px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.3px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 95%;
  margin: 8px auto 0;
  padding: 10px;
  background: rgba(217, 221, 226, .96);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.mobile-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333D4B;
}
.mobile-nav a:not(.btn):active { background: rgba(255, 255, 255, .55); }
.mobile-cta { margin-top: 4px; justify-content: center; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  /* +80px drops the heading group lower in the section. */
  padding-top: calc(var(--header-h) + 142px);
  padding-bottom: 56px;
  text-align: center;
}

/* Fluid scale runs through 80px @1440 and 36px @375; the measure is wide
   enough for the single desktop line, broken out of the content container. */
.hero-title {
  width: 92vw;
  margin-inline: calc(50% - 46vw);
  font-size: clamp(2.25rem, 1.283rem + 4.13vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.032em;
  color: var(--ink);
}

/* One line on desktop; the break returns at 900px for the two-line layout. */
.title-break { display: none; }

/* Wrapper carries the hover response; the SVG itself carries the loop, so the
   two transforms never fight each other. */
.sparkle-wrap {
  display: inline-block;
  vertical-align: super;
  margin-left: .06em;
  will-change: transform;
  transition: transform .4s var(--ease), filter .4s var(--ease);
}

.sparkle {
  display: block;
  width: .32em;
  height: .32em;
  fill: #A855F7;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

/* The pulse only runs once the heading's entrance has landed, and restarts
   whenever the heading re-enters the viewport. */
.hero-title.is-revealed .sparkle {
  animation:
    sparkle-in .6s var(--ease) .3s both,
    sparkle-loop 3.4s ease-in-out .95s infinite;
}

@keyframes sparkle-in {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes sparkle-loop {
  0%, 100% {
    opacity: .8;
    transform: scale(.95) rotate(-5deg);
    filter: drop-shadow(0 0 1px rgba(168, 85, 247, .35));
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, .75));
  }
}

/* Hovering anywhere on the heading lifts the sparkle a further 5%. */
.hero-title:hover .sparkle-wrap {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(168, 85, 247, .5));
}

/* Wide enough for one line on desktop; on mobile the measure and fluid size
   land it on exactly two. */
.hero-sub {
  max-width: min(92vw, 760px);
  margin: 22px auto 0;
  font-size: clamp(13px, 12.3px + .188vw, 15px);
  line-height: 1.65;
  color: var(--body);
}

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

/* Locked to 70% of the viewport at every breakpoint. The symmetric negative
   side margins let it break out of the 1160px content container while staying
   centred and in normal flow. */
.hero-visual {
  width: 70vw;
  margin-top: 54px;
  margin-inline: calc(50% - 35vw);
}
.hero-visual img { width: 100%; height: auto; }

/* ---------------------------------------------------------
   Pull quote
   --------------------------------------------------------- */
.pullquote { padding: 88px 0 96px; }

.pullquote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.rule {
  display: block;
  width: 148px;
  height: 1px;
  background: #D5D9E0;
  transform-origin: center;
}

.pullquote-text {
  max-width: 640px;
  text-align: center;
  font-size: clamp(1.12rem, .95rem + .62vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: -.02em;
  font-weight: 400;
  color: var(--ink-soft);
}
.pullquote-text strong { font-weight: 700; color: var(--ink); }

/* ---------------------------------------------------------
   Section heads
   --------------------------------------------------------- */
.section-head { text-align: center; margin-bottom: 46px; }

.section-title {
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--ink);
}
.section-title.left { text-align: left; }

.section-sub {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--body);
}
.section-sub strong { font-weight: 700; color: var(--ink-soft); }

/* ---------------------------------------------------------
   Products
   --------------------------------------------------------- */
.products { padding: 20px 0 100px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  min-height: 380px;
  padding: 30px;
  border-radius: var(--r-lg);
  overflow: hidden;
  will-change: transform;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.card-mypara {
  background-image: linear-gradient(150deg, #CDD6EF 0%, #C5CFE9 45%, #DADFEE 100%);
  box-shadow: 0 2px 8px rgba(16, 24, 40, .05), 0 14px 34px rgba(16, 24, 40, .07);
}
.card-cases {
  background-image: linear-gradient(150deg, #DEDEE2 0%, #D5D5DA 48%, #E4E4E8 100%);
  box-shadow: 0 2px 8px rgba(16, 24, 40, .05), 0 14px 34px rgba(16, 24, 40, .07);
}

.product-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 8px 20px rgba(16, 24, 40, .09), 0 30px 62px rgba(16, 24, 40, .13);
}

.product-copy { display: flex; flex-direction: column; align-items: flex-start; }

/* The myPara asset already is a dark chip on a transparent background,
   so it needs no wrapper fill of its own. */
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-badge img { height: 30px; width: auto; }

/* Same chip as before — fill, height and radius unchanged — widened so the
   wordmark sits inside at its own aspect ratio. */
.badge-plain {
  height: 34px;
  padding: 0 10px;
  background: #E9E9ED;
  border-radius: 8px;
}
.badge-plain img { height: 16px; width: auto; }

.product-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.028em;
  color: var(--ink);
}

.product-text {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.62;
  color: #4B5565;
}

.feature-list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: #2C3648;
}
.feature-list li { display: flex; align-items: center; gap: 8px; }

.tick {
  flex: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
}
.tick::after {
  content: '';
  position: absolute;
  left: 4.6px; top: 3.2px;
  width: 4px; height: 7px;
  border: solid #fff;
  border-width: 0 1.7px 1.7px 0;
  transform: rotate(43deg);
}

.product-copy .btn { margin-top: auto; }
.feature-list + .btn { margin-top: 22px; }

/* --- Product visuals --- */
/* Static so each shot resolves against .product-card, letting it reach the
   card's bottom edge and size to 90% of the card height. */
.product-visual { position: static; min-height: 300px; }

.product-shot {
  position: absolute;
  right: 0;
  bottom: 0;                /* flush to the card edge, past the 30px padding */
  height: 90%;
  width: auto;              /* auto width keeps the source ratio exactly */
  max-width: none;          /* the global img reset would clamp this back */
}

/* ---------------------------------------------------------
   Approach
   --------------------------------------------------------- */
.approach { padding: 30px 0 110px; }

.approach-inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.55fr);
  gap: 56px;
  align-items: center;
}

.approach-text {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--body);
  max-width: 330px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  padding: 26px 24px 28px;
  background-image: linear-gradient(170deg, #FFFFFF 0%, #FDFBFF 60%, #FBF8FE 100%);
  border: 1px solid #F0E9F7;
  border-radius: var(--r-md);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .03), 0 8px 24px rgba(16, 24, 40, .05);
  will-change: transform;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.approach-cards .info-card:last-child { border-color: #EAE8FA; }

.info-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: #E3D8F0;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .06), 0 22px 48px rgba(16, 24, 40, .09);
}

.info-ico { display: block; margin-bottom: 16px; }
.info-ico svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.022em;
  color: var(--ink);
}
.info-card p {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--body);
}

/* ---------------------------------------------------------
   Testimonial
   --------------------------------------------------------- */
.testimonial { padding: 0 0 118px; }

.testimonial-inner {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 44px;
  align-items: flex-start;
}

.testimonial-media { will-change: transform; }
.testimonial-media img {
  width: 148px; height: 148px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .12), 0 20px 44px rgba(16, 24, 40, .14);
}

.testimonial-body blockquote {
  font-size: clamp(1.05rem, .88rem + .62vw, 1.42rem);
  line-height: 1.52;
  letter-spacing: -.022em;
  color: var(--ink-soft);
  max-width: 640px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.author-mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  background: #101828;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: var(--shadow-sm);
}
.author-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.cta { padding: 0 12px; }

/* No max-width, so the panel tracks the footer panel edge for edge. */
.cta-panel {
  position: relative;
  padding: 92px 24px 96px;
  background-image: linear-gradient(165deg, #2E3946 0%, #262F3C 45%, #1C242F 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}

.cta-bg {
  position: absolute;
  inset: -12% 0;
  z-index: -1;
  overflow: hidden;
}
.cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills the panel, never distorts */
  object-position: center;
  will-change: transform;
}

/* Dark overlay retained so the white copy stays legible over the artwork. */
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 26, 35, .34), rgba(20, 26, 35, .46));
}

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

.cta-content h2 {
  font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.6rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.032em;
  color: #fff;
}

.cta-content p {
  max-width: 430px;
  margin: 20px auto 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #B4BDCA;
}

/* Paired CTA buttons — same family as every other primary button,
   with an arrow that leans into the hover. */
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

/* Any primary button that hands the user off to a live product carries the
   arrow. One class drives the icon spacing and the hover lean, so the product
   cards and the CTA panel can never drift apart. */
.btn-arrow { gap: 10px; }

.btn-cta {
  min-width: 210px;          /* keeps both buttons identical despite label length */
}

.cta-arrow {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .35s var(--ease);
}

.btn-cta:hover { --btn-y: -4px; }
.btn-arrow:hover .cta-arrow { transform: translate3d(2.5px, -2.5px, 0); }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer { padding: 12px; }

.footer-panel {
  background: #D9DDE2;
  border-radius: var(--r-lg);
  padding: 104px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 3.6fr) minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 132px;
}

.footer-brand img { width: 175px; height: auto; margin-bottom: 18px; }
.footer-brand p {
  max-width: 300px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #4E5866;
}

/* Company identification — reads as the tail of the description block, so it
   inherits the description's size, colour and measure and only needs a gap. */
.footer-cin { margin-top: 14px; font-weight: 400; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 20px; }
.footer-col a,
.footer-col .addr {
  font-size: 13.5px;
  line-height: 1.5;
  color: #333D4B;
}
.footer-col a { transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--blue); }

/* Only the address email reads as a link in the reference. */
.footer-col a.mail {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 13px; color: #4E5866; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-bottom a {
  font-size: 13px;
  color: #333D4B;
  font-weight: 500;
  transition: color .25s var(--ease);
}
.footer-bottom a:hover { color: var(--blue); }

/* ---------------------------------------------------------
   Policy / content pages
   --------------------------------------------------------- */
.policy-hero {
  padding-top: calc(var(--header-h) + 54px);
  text-align: center;
}

.policy-title {
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.03em;
  color: var(--ink);
}

.policy-meta {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--body);
}

.policy-body {
  max-width: 820px;
  margin-inline: auto;
  padding: 44px 0 100px;
}

.policy-section + .policy-section { margin-top: 42px; }

.policy-section h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.022em;
  color: var(--ink);
  margin-bottom: 12px;
}

.policy-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 22px 0 8px;
}

.policy-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
}
.policy-section p + p { margin-top: 14px; }

.policy-section ul {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.policy-section li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}
.policy-section li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.policy-section strong { color: var(--ink-soft); font-weight: 700; }
.policy-section a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .policy-hero { padding-top: calc(var(--header-h) + 30px); }
  .policy-body { padding: 32px 0 72px; }
  .policy-section + .policy-section { margin-top: 34px; }
  .policy-section h2 { font-size: 17.5px; }
  .policy-section p,
  .policy-section li { font-size: 14.5px; }
}

/* ---------------------------------------------------------
   Responsive — Tablet
   --------------------------------------------------------- */
@media (max-width: 1040px) {
  :root { --r-lg: 24px; }

  .hero { padding-top: calc(var(--header-h) + 100px); }
  /* Single line would run edge-to-edge here, so switch to the two-line break. */
  .title-break { display: inline; }
  .hero-visual { margin-top: 42px; }

  .pullquote { padding: 72px 0 76px; }
  .products  { padding-bottom: 84px; }
  .approach  { padding-bottom: 90px; }
  .testimonial { padding-bottom: 92px; }

  .product-grid { gap: 20px; }
  .product-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    padding: 26px;
  }
  .product-visual { min-height: 300px; }
  /* Card is single-column here and much taller, so 70% of card height would
     run over the copy. Fill the visual row instead, still bottom-flush. */
  .product-visual { position: relative; }
  .product-shot { height: 100%; right: -26px; bottom: -26px; }

  .approach-inner { grid-template-columns: minmax(0, 1fr); gap: 34px; align-items: start; }
  .approach-text { max-width: 460px; }

  .cta-panel { padding: 74px 22px 78px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .mobile-nav { display: flex; }
  .header-inner { padding-left: 16px; }
  .brand img { width: 128px; }
}

/* The mobile menu carries its own CTA, so drop the header one when space is tight. */
@media (max-width: 560px) {
  .header-actions .btn-dark { display: none; }
}

/* ---------------------------------------------------------
   Responsive — Mobile
   --------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --r-lg: 20px; --r-md: 16px; }

  .container { padding-inline: 20px; }

  .hero { padding-top: calc(var(--header-h) + 68px); padding-bottom: 24px; }
  .hero-sub { margin-top: 18px; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 150px; height: 48px; }
  .hero-visual { margin-top: 34px; }

  .pullquote { padding: 48px 0 60px; }
  .rule { width: 110px; }

  .section-head { margin-bottom: 34px; }
  .products { padding-bottom: 68px; }

  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .product-card { padding: 24px 22px; }
  .product-card:hover { transform: none; }
  .product-copy .btn,
  .feature-list + .btn { width: 100%; height: 48px; }

  /* No product shots on mobile. Hiding the row as well as the image keeps the
     card from holding 300px of empty space where the artwork used to be. */
  .product-visual { display: none; }

  .approach { padding-bottom: 72px; }
  .approach-cards { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .info-card:hover { transform: none; }

  .testimonial { padding-bottom: 76px; }
  .testimonial-inner { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .testimonial-media img { width: 120px; height: 120px; }

  .cta { padding-inline: 10px; }
  .cta-panel { padding: 60px 20px 64px; }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cta-actions .btn { width: 100%; max-width: 320px; height: 50px; }

  .footer { padding-inline: 10px; }
  .footer-panel { padding-top: 48px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-bottom: 34px; }
  /* Legal links first, copyright centred beneath them. `order` does the swap
     visually so the DOM order — and the desktop layout — stay untouched. */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-bottom ul { order: -1; gap: 18px; }
  .footer-bottom p { width: 100%; text-align: center; }
}

/* ---------------------------------------------------------
   Reduced motion
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .product-card:hover,
  .info-card:hover,
  .btn:hover { transform: none; }
  .btn-arrow:hover .cta-arrow { transform: none; }

  /* No continuous loop; the sparkle simply rests fully visible. */
  .sparkle,
  .hero-title.is-revealed .sparkle { animation: none; opacity: 1; transform: none; filter: none; }
  .hero-title:hover .sparkle-wrap { transform: none; filter: none; }
}
