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

:root {
  --bg:            #ffffff;
  --text:          #141414;
  --muted:         #6b6b6b;
  --muted-soft:    #9d9d9b;
  --border:        #e5e3e0;
  --surface:       #f7f6f4;
  --surface-strong:#efeeec;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --maxw:          1160px;

  --ease:          cubic-bezier(.16,1,.3,1);
  --glow-a:        255,184,107;  /* warm amber, used at low opacity for glows/blobs */
  --glow-b:        173,196,255;  /* soft blue, used at low opacity for glows/blobs */
}

html { scroll-behavior: smooth; }

/* ── MOTION: keyframes ── */
@keyframes floatA {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(12px,-26px) rotate(8deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(-16px,-18px) rotate(-6deg); }
}
@keyframes bounceSoft {
  0%, 50%, 100% { transform: translateY(0); }
  25%           { transform: translateY(-5px); }
  75%           { transform: translateY(2px); }
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(-8px) scale(.88); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── MOTION: word-by-word text reveal ── */
.word-split .word { display: inline-block; overflow: hidden; vertical-align: top; }
.word-split .word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(112%) rotate(3deg);
  transition: transform .7s var(--ease), opacity .5s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
  will-change: transform, opacity;
}
.word-split.visible .word-inner { opacity: 1; transform: translateY(0) rotate(0deg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .word-split .word-inner { opacity: 1 !important; transform: none !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 6%; }
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
.hairline-top { border-top: 1px solid var(--border); }
.hairline-bottom { border-bottom: 1px solid var(--border); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-soft);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-head { margin-bottom: 64px; max-width: 680px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.18; margin-bottom: 18px; }
.section-head .lead { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── LINKS ── */
.btn-text { font-size: .88rem; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.btn-text:hover { color: var(--text); border-color: var(--text); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .25s;
}
nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .25s;
}
nav.is-scrolled .nav-inner { padding: 15px 6%; }
.logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em;
  display: inline-block; transition: transform .35s var(--ease);
}
.logo:hover { transform: rotate(-6deg) scale(1.1); }
.logo-img { display: block; height: 34px; width: auto; transition: height .25s; }
nav.is-scrolled .logo-img { height: 27px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { position: relative; font-size: .86rem; color: var(--muted); transition: color .2s; padding-bottom: 2px; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--text);
  transition: right .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero .eyebrow { animation: badgePop .7s var(--ease) .05s both; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.12;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  animation: badgePop .8s var(--ease) .25s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  opacity: 0;
  animation: badgePop .8s var(--ease) .4s both;
}
.btn-arrow { display: inline-block; animation: bounceSoft 2.4s ease-in-out infinite; }
.btn-text:hover { transform: translateX(2px); }
.btn-text { display: inline-flex; align-items: center; gap: 5px; transition: color .2s, border-color .2s, transform .3s var(--ease); }

/* ── HERO: floating parallax blobs ── */
.hero-blobs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob-wrap { position: absolute; will-change: transform; }
.blob-wrap.bw-1 { top: -140px; right: -60px; transform: translateY(calc(var(--scrollY, 0) * -0.15px)); }
.blob-wrap.bw-2 { top: 80px; left: -120px; transform: translateY(calc(var(--scrollY, 0) * -0.08px)); }
.blob { border-radius: 50%; filter: blur(70px); }
.blob.b-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle at 35% 35%, rgba(var(--glow-a), .5), transparent 70%);
  animation: floatA 10s ease-in-out infinite;
}
.blob.b-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 40% 40%, rgba(var(--glow-b), .45), transparent 70%);
  animation: floatB 13s ease-in-out infinite;
}
@media (max-width: 760px) {
  .blob.b-1 { width: 280px; height: 280px; }
  .blob.b-2 { width: 220px; height: 220px; }
}

/* ── STRIP ── */
.strip-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  color: var(--muted-soft);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.strip span.sep { margin: 0 18px; color: var(--border); }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar { padding: 4px 40px 0 0; border-left: 1px solid var(--border); padding-left: 32px; }
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar-num {
  font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--border); display: block; margin-bottom: 18px; line-height: 1;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.pillar:hover .pillar-num { color: var(--text); transform: scale(1.12) rotate(-6deg); }
.pillar h3 { font-size: 1.15rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

.pillar.reveal:nth-child(1) { transition-delay: 0ms; }
.pillar.reveal:nth-child(2) { transition-delay: 90ms; }
.pillar.reveal:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
  .pillar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .pillar:first-child { border-top: none; padding-top: 0; }
}

/* ── PRODUCT SUITE GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card.reveal:hover {
  border-color: var(--muted-soft);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -28px rgba(var(--glow-a), .45), 0 6px 18px -8px rgba(20,20,20,.1);
}
.product-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; font-family: 'Inter', sans-serif; letter-spacing: -0.005em; }
.product-desc { color: var(--muted); font-size: .88rem; line-height: 1.6; }

.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.product-price-row { display: flex; align-items: baseline; gap: 4px; }
.product-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.product-cadence { color: var(--muted-soft); font-size: .82rem; }
.product-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 100px;
  background: var(--text);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  transition: opacity .2s, transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.product-cta:hover {
  opacity: .92;
  transform: scale(1.07);
  box-shadow: 0 0 0 7px rgba(var(--glow-a), .18);
}

.product-card.reveal:nth-child(1) { transition-delay: 0ms; }
.product-card.reveal:nth-child(2) { transition-delay: 70ms; }
.product-card.reveal:nth-child(3) { transition-delay: 140ms; }
.product-card.reveal:nth-child(4) { transition-delay: 210ms; }
.product-card.reveal:nth-child(5) { transition-delay: 280ms; }
.product-card.reveal:nth-child(6) { transition-delay: 350ms; }

/* ── NUMBERED LIST (process) ── */
.numbered-list { border-top: 1px solid var(--border); }
.numbered-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.numbered-item .num { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--muted-soft); transition: color .3s var(--ease), transform .3s var(--ease); }
.numbered-item:hover .num { color: var(--text); transform: translateX(4px); }
.numbered-item h4 { font-size: 1.08rem; margin-bottom: 8px; }
.numbered-item p { color: var(--muted); font-size: .92rem; max-width: 520px; }

.numbered-item.reveal:nth-child(1) { transition-delay: 0ms; }
.numbered-item.reveal:nth-child(2) { transition-delay: 80ms; }
.numbered-item.reveal:nth-child(3) { transition-delay: 160ms; }
.numbered-item.reveal:nth-child(4) { transition-delay: 240ms; }

@media (max-width: 600px) {
  .numbered-item { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ── TAGS (coverage / industries) ── */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border);
  font-size: .8rem; color: var(--muted); font-weight: 500;
  display: inline-block;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.tag:hover { transform: translateY(-3px) rotate(-2deg); border-color: var(--muted-soft); background: var(--surface); color: var(--text); }
.coverage-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 48px; display: flex; flex-direction: column; gap: 30px; }
.coverage-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 12px; }
.coverage-divider { height: 1px; background: var(--border); }

@media (max-width: 640px) {
  .coverage-wrap { padding: 32px 24px; }
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: .86rem; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); font-size: .8rem; color: var(--muted-soft); }
.footer-location { display: flex; align-items: center; gap: 6px; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: var(--muted-soft); }
.footer-legal a:hover { color: var(--text); }

@media (max-width: 600px) {
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 160px 6% 100px; }
.legal-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.legal-meta { color: var(--muted-soft); font-size: .86rem; margin-bottom: 56px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-size: 1.1rem; font-weight: 600; margin: 42px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; line-height: 1.75; }
.legal-body ul, .legal-body ol { margin: 10px 0 20px 22px; display: flex; flex-direction: column; gap: 8px; list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body li { line-height: 1.7; }
.legal-body strong { font-weight: 600; }
.legal-highlight { background: var(--surface); border-radius: var(--radius-md); padding: 18px 22px; margin: 24px 0; }
.legal-highlight p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.data-table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: .87rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--surface); font-weight: 600; border-bottom: 1px solid var(--border); }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }

.policy-callout { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 36px; margin: 32px 0; text-align: center; }
.policy-callout h3 { font-size: 1.25rem; margin-bottom: 12px; }
.policy-callout p { color: var(--muted); font-size: .94rem; max-width: 560px; margin: 0 auto; }

@media (max-width: 600px) {
  .legal-wrap { padding: 140px 6% 70px; }
  .data-table { font-size: .8rem; }
}

/* ── THANKS PAGE ── */
.thanks-page {
  min-height: 100vh;
  min-height: 100svh;
}

.thanks-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
  isolation: isolate;
}

.thanks-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.thanks-card {
  width: min(100%, 720px);
  padding: 52px 44px;
  border: 1px solid rgba(229, 227, 224, .85);
  border-radius: 32px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px -46px rgba(20, 20, 20, .24);
  text-align: center;
}

.thanks-kicker {
  margin-bottom: 14px;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-soft);
  font-weight: 700;
}

.thanks-title {
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: .98;
  margin-bottom: 20px;
}

.thanks-copy,
.thanks-note {
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-copy {
  font-size: 1.02rem;
  margin-bottom: 34px;
}

.thanks-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.thanks-contact-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(247, 246, 244, .8);
  padding: 18px 16px;
}

.thanks-contact-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-soft);
  font-weight: 700;
  margin-bottom: 8px;
}

.thanks-contact-value {
  display: block;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}

.thanks-note {
  font-size: .92rem;
  margin-bottom: 28px;
}

.thanks-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  transition: opacity .2s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}

.thanks-home-link:hover {
  opacity: .94;
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(var(--glow-a), .16);
}

@media (max-width: 720px) {
  .thanks-card {
    padding: 40px 24px;
    border-radius: 26px;
  }

  .thanks-contact-list {
    grid-template-columns: 1fr;
  }
}
