/*!
 * Hoofy homepage CSS bundle — DO NOT EDIT BY HAND.
 * Concatenation of: css/styles.css css/enhancements.css css/3d-effects.css css/cinematic-home.css css/seo-conversion.css
 * Regenerate with: bash scripts/build_home_bundle.sh
 * Built: 2026-05-10T13:09:37Z
 */
/* Hoofy — Bold-inspired dark SaaS (ref: az-bold.webflow.io) */
:root {
  --bg-deep: #050508;
  --bg-elevated: #0c0c12;
  --bg-panel: #14141c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #fafafa;
  --text-muted: #b4b4c0;
  --accent: #f4b02e;
  --accent-hot: #ffd78a;
  --accent-soft: rgba(244, 176, 46, 0.18);
  --accent-glow: rgba(244, 176, 46, 0.5);
  --accent-2: #d4893d;
  --violet: #a78bfa;
  --violet-soft: rgba(167, 139, 250, 0.35);
  --cyan-pop: #22d3ee;
  --green-stat: #4ade80;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 110% 90% at 50% -35%, rgba(244, 176, 46, 0.2), transparent 52%),
    radial-gradient(ellipse 85% 55% at 100% 10%, rgba(167, 139, 250, 0.16), transparent 48%),
    radial-gradient(ellipse 70% 50% at 0% 90%, rgba(34, 211, 238, 0.07), transparent 42%),
    radial-gradient(ellipse 50% 40% at 80% 75%, rgba(236, 72, 153, 0.05), transparent 45%),
    var(--bg-deep);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hot);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(244, 176, 46, 0.04);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent) 0%, #8b4513 55%, #4c1d95 100%);
  color: #0a0a0c;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(244, 176, 46, 0.55),
    0 0 24px rgba(244, 176, 46, 0.25),
    0 10px 32px rgba(0, 0, 0, 0.5);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-desktop a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.header-row {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 0.75rem;
}

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

  .nav-burger {
    display: flex;
  }

  .header-row {
    display: block;
  }

  .nav-toggle:checked ~ .header-row .nav-mobile {
    display: block;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd78a 0%, var(--accent) 45%, #c97812 100%);
  color: #0a0a0c !important;
  box-shadow:
    0 4px 24px rgba(244, 176, 46, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow:
    0 8px 36px rgba(244, 176, 46, 0.55),
    0 0 40px rgba(167, 139, 250, 0.15);
  color: #0a0a0c !important;
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f7 100%);
  color: #0a0a0c !important;
  padding: 0.7rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 48px rgba(244, 176, 46, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-appstore:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(244, 176, 46, 0.35);
  color: #0a0a0c !important;
}

.btn-appstore small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-appstore > span {
  display: block;
  text-align: left;
  line-height: 1.2;
}

.btn-appstore .btn-appstore-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ——— Layout ——— */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem) 4rem;
}

/* Bold-style hero */
.hero-bold {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
  min-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 176, 46, 0.35);
  background: linear-gradient(135deg, rgba(244, 176, 46, 0.12), rgba(167, 139, 250, 0.08));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 0 28px rgba(244, 176, 46, 0.12);
}

.hero-badge strong {
  color: var(--text);
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
  text-wrap: balance;
}

.hero-title .line {
  display: block;
}

.hero-title .grad {
  background: linear-gradient(125deg, #ffffff 0%, var(--accent-hot) 38%, var(--accent) 62%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(244, 176, 46, 0.15));
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.hero-actions-bold {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-subnote {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(244, 176, 46, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .hero-stat-row {
    grid-template-columns: 1fr;
  }
}

.hero-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
}

/* Meet section */
.section-meet {
  padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.meet-display {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  border: 0;
  padding: 0;
}

.meet-line {
  display: block;
  font-size: clamp(3rem, 12vw, 7rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-hot) 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 50px rgba(244, 176, 46, 0.12));
}

.meet-line--hoofy {
  font-size: clamp(3.5rem, 14vw, 8rem);
  margin-top: -0.12em;
}

.meet-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

/* Stats strip (Bold-style metrics) */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
}

@media (max-width: 900px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

.stat-block {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.stat-block .num.accent {
  color: var(--green-stat);
}

.stat-block .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.65rem;
}

.stat-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

/* Feature band */
.section-band {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
}

.section-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 20ch;
}

.section-band .section-lead {
  margin-bottom: 2.5rem;
}

/* Dark / night callout */
.night-band {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(22, 22, 26, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.night-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.night-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .night-band-inner {
    grid-template-columns: 1fr;
  }
}

.night-band h3,
.night-band .night-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.night-band p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-section {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
}

.testimonial-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.03em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

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

.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testimonial-card .who {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(244, 176, 46, 0.15);
  background:
    radial-gradient(ellipse 90% 120% at 50% 120%, rgba(244, 176, 46, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(167, 139, 250, 0.08), transparent 50%);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.cta-band .sub {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Newsletter (static) */
.newsletter {
  max-width: 420px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.newsletter a {
  font-weight: 600;
}

/* Legacy hero (inner pages) */
.hero {
  padding: clamp(2rem, 6vw, 3rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--text);
}

h1 em,
.h1 em {
  font-style: normal;
  color: var(--accent);
}

.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(circle, rgba(244, 176, 46, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

section.block {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

.section-lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(244, 176, 46, 0.28), rgba(167, 139, 250, 0.22));
  border: 1px solid var(--border);
}

.card h3,
.card .card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  display: block;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card a {
  color: var(--accent);
}

.price-box {
  background: var(--bg-panel);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  text-align: center;
}

.price-box .price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-box .per {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-list {
  text-align: left;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-stat);
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--accent);
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.75rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  color: var(--accent);
}

.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal p strong,
.legal li {
  color: var(--text);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal a {
  color: var(--accent);
}

.site-footer {
  margin-top: auto;
  padding: 2.5rem clamp(1rem, 4vw, 2rem);
  background: #050506;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-col h4,
.footer-col .footer-col-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.stack-center {
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card:hover,
  .btn-appstore:hover {
    transform: none;
  }
}
/* Skip link, focus, scroll reveal, trust strip, comparison, sticky CTA, back-to-top */

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--accent, #e8a54b);
  color: var(--bg-deep, #0a0a0c);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0.35rem;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible + label.nav-burger {
  outline: 2px solid var(--accent, #e8a54b);
  outline-offset: 3px;
}

.nav-desktop a:focus-visible,
.nav-mobile a:focus-visible {
  outline: 2px solid var(--accent, #e8a54b);
  outline-offset: 3px;
  border-radius: 6px;
}

.logo:focus-visible {
  outline: 2px solid var(--accent, #e8a54b);
  outline-offset: 4px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .nav-mobile a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.trust-strip {
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(244, 176, 46, 0.04), transparent);
}

.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip__list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-strip__icon {
  font-size: 1.1rem;
  filter: grayscale(0.2);
}

.compare-section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
  max-width: 52rem;
  margin: 0 auto;
}

.compare-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.compare-section .section-lead {
  text-align: center;
  margin-bottom: 2rem;
}

.compare-table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
  font-size: 0.92rem;
}

.compare-row > div {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-row--head {
  font-weight: 600;
  background: rgba(244, 176, 46, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

.compare-row--head > div {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.compare-row:last-child > div {
  border-bottom: none;
}

.compare-col--hoofy {
  color: var(--accent, #e8a54b);
  font-weight: 500;
}

@media (max-width: 640px) {
  .compare-row--head {
    display: none;
  }

  .compare-row:not(.compare-row--head) {
    display: block;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .compare-row:not(.compare-row--head) > div {
    border: none;
    padding: 0.4rem 0;
  }

  .compare-row:not(.compare-row--head) > div:nth-child(1) {
    font-weight: 600;
    margin-bottom: 0.35rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .compare-row:not(.compare-row--head) > div:nth-child(2)::before {
    content: "Hoofy: ";
    color: var(--accent, #e8a54b);
    font-weight: 600;
  }

  .compare-row:not(.compare-row--head) > div:nth-child(3)::before {
    content: "Typical stack: ";
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.95) 30%);
  transform: translateY(110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.sticky-cta.sticky-cta--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  right: 1rem;
  z-index: 190;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 12, 0.85);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.back-to-top:hover {
  background: rgba(244, 176, 46, 0.15);
  border-color: rgba(244, 176, 46, 0.4);
}

.back-to-top.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent, #e8a54b);
  outline-offset: 3px;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  margin: -1rem auto 1.75rem;
  max-width: 36rem;
}

@media (min-width: 900px) {
  .back-to-top {
    bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.footer-contact-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-contact-links a:hover {
  color: var(--accent, #e8a54b);
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.footer-updated {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Legal pages — tie web policy to the iPhone app */
.legal-app-banner {
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(244, 176, 46, 0.28);
  background: rgba(244, 176, 46, 0.07);
  font-size: 0.95rem;
  line-height: 1.5;
}

.legal-app-banner p {
  margin: 0;
}

.legal-app-banner p + p {
  margin-top: 0.65rem;
}

.legal-app-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.85rem;
  align-items: center;
}

/* Home FAQ — visible Q&A list backing FAQPage schema */
.home-faq {
  max-width: 52rem;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}

.home-faq h2 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.01em;
}

.home-faq__lead {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.home-faq__list {
  display: grid;
  gap: 0.6rem;
}

.home-faq__item {
  background: var(--bg-panel, #14151a);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 0.85rem);
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease;
}

.home-faq__item[open] {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.home-faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text, #f3f3f3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.home-faq__item > summary::-webkit-details-marker {
  display: none;
}

.home-faq__item > summary::after {
  content: "+";
  margin-left: auto;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.18));
  font-weight: 600;
  color: var(--text-muted);
  transition: transform 180ms ease, color 180ms ease;
}

.home-faq__item[open] > summary::after {
  content: "−";
  color: var(--accent, #d6a14a);
  transform: rotate(180deg);
}

.home-faq__answer {
  padding: 0 1rem 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-faq__answer p {
  margin: 0;
  font-size: 0.95rem;
}

.home-faq__answer a {
  color: var(--cyan-pop, #6dc7ff);
}
/* Hoofy — premium 3D-style visuals (CSS transforms + motion; no WebGL dependency) */

/* ——— Immersive hero ——— */
.hero-bold--immersive {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.hero-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-3d-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.68;
  animation: orbFloat 18s ease-in-out infinite;
}

.hero-3d-bg .orb-1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: radial-gradient(circle at 30% 30%, rgba(244, 176, 46, 0.62), rgba(167, 139, 250, 0.22) 50%, transparent 70%);
  top: -12%;
  right: -8%;
  animation-delay: 0s;
}

.hero-3d-bg .orb-2 {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.48), transparent 65%);
  bottom: 5%;
  left: -10%;
  animation-delay: -6s;
}

.hero-3d-bg .orb-3 {
  width: min(200px, 30vw);
  height: min(200px, 30vw);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), rgba(74, 222, 128, 0.12) 40%, transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -3%) scale(1.03); }
  66% { transform: translate(-2%, 2%) scale(0.98); }
}

.hero-3d-bg .grid-floor {
  position: absolute;
  inset: auto -20% -30%;
  height: 55%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(68deg);
  transform-origin: 50% 0;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent, black 30%, transparent);
}

.hero-bold-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 960px) {
  .hero-bold-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

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

/* ——— 3D phone mockup ——— */
.hero-3d-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 420px;
}

.phone-3d {
  position: relative;
  width: min(260px, 72vw);
  height: min(520px, 145vw);
  transform-style: preserve-3d;
  --tilt-x: 8deg;
  --tilt-y: -14deg;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.15s ease-out;
  animation: phoneEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes phoneEnter {
  from {
    opacity: 0;
    transform: rotateX(18deg) rotateY(-22deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }
}

.phone-3d__glow {
  position: absolute;
  inset: -15%;
  border-radius: 48px;
  background: radial-gradient(ellipse at 50% 40%, rgba(244, 176, 46, 0.58), rgba(167, 139, 250, 0.15) 55%, transparent 65%);
  filter: blur(32px);
  z-index: 0;
  opacity: 0.95;
}

.phone-3d__body {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(165deg, #1c1c22 0%, #0a0a0e 100%);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.phone-3d__screen {
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #12121a 0%, #0d0d12 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* In-phone UI — matches hoofyapp.com tokens (dark glass, gold + violet) */
.phone-3d__screen--hoofy {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(244, 176, 46, 0.12), transparent 52%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(167, 139, 250, 0.08), transparent 45%),
    linear-gradient(180deg, #14141c 0%, #0a0a0e 100%);
  box-shadow:
    inset 0 0 0 1px rgba(244, 176, 46, 0.12),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.phone-3d__screen--hoofy .phone-3d__notch {
  background: linear-gradient(180deg, #12121a 0%, #050508 100%);
  border: 1px solid rgba(244, 176, 46, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.phone-3d__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 26px;
  background: #0a0a0e;
  border-radius: 20px;
  z-index: 3;
}

.phone-3d__ui {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-3d__ui--hoofy {
  padding: 40px 0 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.65rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.phone-3d__ui--hoofy .phone-3d__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 4px 14px;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.phone-3d__ui--hoofy .phone-3d__status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(250, 250, 250, 0.75);
}

.phone-3d__ui--hoofy .phone-3d__sig {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 8px;
}

.phone-3d__ui--hoofy .phone-3d__sig i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: rgba(250, 250, 250, 0.85);
}

.phone-3d__ui--hoofy .phone-3d__sig i:nth-child(1) {
  height: 4px;
}

.phone-3d__ui--hoofy .phone-3d__sig i:nth-child(2) {
  height: 6px;
}

.phone-3d__ui--hoofy .phone-3d__sig i:nth-child(3) {
  height: 8px;
}

.phone-3d__ui--hoofy .phone-3d__lte {
  margin-left: 2px;
  font-size: 0.48rem;
  opacity: 0.9;
}

.phone-3d__ui--hoofy .phone-3d__bat {
  width: 14px;
  height: 7px;
  border-radius: 2px;
  border: 1px solid rgba(250, 250, 250, 0.55);
  margin-left: 2px;
  position: relative;
}

.phone-3d__ui--hoofy .phone-3d__bat::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 2px;
  width: 1px;
  height: 3px;
  background: rgba(250, 250, 250, 0.55);
  border-radius: 0 1px 1px 0;
}

.phone-3d__app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 2px 8px 8px;
  border-bottom: 1px solid var(--border);
}

.phone-3d__app-btn {
  font-size: 0.54rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--accent-hot);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(244, 176, 46, 0.45);
  background: rgba(244, 176, 46, 0.08);
  line-height: 1.1;
  box-shadow: 0 0 16px rgba(244, 176, 46, 0.06);
}

.phone-3d__app-nav-title {
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  flex: 1;
  text-align: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.phone-3d__app-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 6px 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phone-3d__app-block {
  flex-shrink: 0;
}

.phone-3d__app-label {
  margin: 0 0 4px 2px;
  font-size: 0.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.phone-3d__app-card {
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  border: 1px solid var(--border);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25), 0 0 20px rgba(244, 176, 46, 0.04);
}

.phone-3d__app-photo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-3d__app-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 25%, rgba(244, 176, 46, 0.15), transparent 55%),
    linear-gradient(145deg, #1c1c24 0%, #0f0f14 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-3d__ui--hoofy .phone-3d__cam-ico {
  width: 22px;
  height: 22px;
  color: var(--accent);
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(244, 176, 46, 0.35));
}

.phone-3d__cam-ico--lg {
  width: 26px;
  height: 26px;
}

.phone-3d__app-photo-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent-hot);
}

.phone-3d__app-hint {
  margin: 5px 2px 0;
  font-size: 0.45rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.phone-3d__app-card--row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(244, 176, 46, 0.05);
  border-color: rgba(244, 176, 46, 0.15);
}

.phone-3d__warn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-3d__warn svg {
  width: 14px;
  height: 14px;
}

.phone-3d__app-safety-txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.phone-3d__app-safety-txt strong {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text);
}

.phone-3d__app-safety-txt span {
  font-size: 0.48rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.phone-3d__toggle {
  width: 36px;
  height: 21px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}

.phone-3d__toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3a3a44, #2a2a32);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.phone-3d__app-card--list {
  padding: 0;
  overflow: hidden;
}

.phone-3d__app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.56rem;
  border-bottom: 1px solid var(--border);
}

.phone-3d__app-row:last-child {
  border-bottom: none;
}

.phone-3d__app-row--solo {
  font-weight: 600;
  color: var(--text);
}

.phone-3d__app-row--placeholder span {
  color: rgba(180, 180, 192, 0.45);
  font-weight: 400;
}

.phone-3d__app-k {
  color: var(--text-muted);
  font-weight: 500;
}

.phone-3d__app-v {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(180, 180, 192, 0.85);
  font-weight: 400;
}

.phone-3d__ui--hoofy .phone-3d__picker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  font-size: 0.32rem;
  line-height: 0.65;
  color: var(--violet);
  opacity: 0.9;
}

.phone-3d__ui--hoofy .phone-3d__picker > span {
  display: block;
}

.phone-3d__shadow {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  width: 70%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

/* Floating chips behind phone */
.hero-3d-showcase::before,
.hero-3d-showcase::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244, 176, 46, 0.25), rgba(167, 139, 250, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-12deg) translateZ(0);
  animation: chipFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-3d-showcase::before {
  top: 8%;
  right: 8%;
  animation-delay: -2s;
}

.hero-3d-showcase::after {
  bottom: 18%;
  left: 4%;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  animation-delay: -4s;
}

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

/* ——— 3D stat cards in hero ——— */
.hero-visual--3d {
  transform-style: preserve-3d;
}

.hero-stat {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.35s;
}

.hero-visual-contained {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-visual--3d .hero-stat:hover {
  transform: translateY(-6px) translateZ(12px);
  border-color: rgba(244, 176, 46, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(244, 176, 46, 0.15);
}

/* ——— Feature cards tilt ——— */
.card--tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
}

.card--tilt:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(244, 176, 46, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.card--tilt .card-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card--tilt:hover .card-icon {
  transform: scale(1.08) translateZ(8px);
}

/* ——— Stat strip depth ——— */
.stat-block--3d {
  transition: transform 0.35s ease, border-color 0.25s, box-shadow 0.35s;
}

.stat-block--3d:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 176, 46, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ——— Meet section: decorative rings ——— */
.section-meet--3d {
  position: relative;
  overflow: hidden;
}

.meet-rings {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 140vw);
  height: min(900px, 140vw);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.meet-rings svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: ringSpin 80s linear infinite;
  transform-origin: 200px 200px;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.section-meet--3d .meet-display,
.section-meet--3d .meet-sub {
  position: relative;
  z-index: 1;
}

/* ——— Testimonial glass 3D ——— */
.testimonial-card--3d {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
  backdrop-filter: blur(12px);
}

.testimonial-card--3d:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
}

/* ——— CTA band depth ——— */
.cta-band--3d {
  position: relative;
  overflow: hidden;
}

.cta-band--3d::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(244, 176, 46, 0.06) 60deg, transparent 120deg);
  animation: ctaRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes ctaRotate {
  to { transform: rotate(360deg); }
}

.cta-band--3d h2,
.cta-band--3d .sub,
.cta-band--3d .hero-actions-bold,
.cta-band--3d .newsletter {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .phone-3d,
  .meet-rings svg,
  .cta-band--3d::before,
  .hero-3d-showcase::before,
  .hero-3d-showcase::after {
    animation: none !important;
  }

  .phone-3d {
    animation: none;
    opacity: 1;
    transform: rotateX(8deg) rotateY(-14deg);
  }

  .card--tilt:hover,
  .stat-block--3d:hover,
  .hero-visual--3d .hero-stat:hover,
  .testimonial-card--3d:hover {
    transform: none;
  }
}
/* Homepage — immersive / editorial layer (inspired by premium product sites) */

body.page-home {
  --cinematic-max: min(1240px, 100%);
}

body.page-home main#main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  position: relative;
  z-index: 2;
}

body.page-home .site-footer {
  position: relative;
  z-index: 2;
}

/* ——— Film grain (subtle) ——— */
body.page-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
  body.page-home::after {
    opacity: 0.02;
  }
}

/* ——— Intro curtain ——— */
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.9s;
}

.intro-curtain.intro-curtain--done {
  opacity: 0;
  transform: translateY(-4%);
  visibility: hidden;
  pointer-events: none;
}

.intro-curtain__inner {
  text-align: center;
  padding: 2rem;
}

.intro-curtain__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-2) 0%, #5c3d1e 100%);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(244, 176, 46, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: introLogo 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes introLogo {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-curtain__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.intro-curtain__bar {
  height: 2px;
  width: min(200px, 50vw);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.intro-curtain__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), #f5c56d);
  border-radius: 2px;
  animation: introBar 1s ease-in-out infinite;
}

@keyframes introBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(350%);
  }
}

.intro-curtain__skip {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-family: inherit;
}

.intro-curtain__skip:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

body.page-home.intro-active {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .intro-curtain {
    display: none;
  }

  .intro-curtain__bar span {
    animation: none;
    width: 100%;
    transform: none;
  }
}

/* ——— Hero refinements ——— */
body.page-home .hero-bold--immersive {
  min-height: min(92vh, 960px);
  padding-top: clamp(3rem, 10vw, 6rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

body.page-home .hero-eyebrow-cinematic {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

body.page-home .hero-title {
  font-size: clamp(2.65rem, 8vw, 4.75rem);
  max-width: 12ch;
}

body.page-home .hero-lead {
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  max-width: 38rem;
}

/* ——— Marquee ——— */
.marquee-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 55s linear infinite;
}

.marquee-strip__track:hover {
  animation-play-state: paused;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-strip__segment {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.marquee-strip__segment strong {
  color: var(--accent);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
    gap: 0.5rem 1rem;
  }

  .marquee-strip__segment {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ——— Statement block ——— */
.statement-cinematic {
  position: relative;
  padding: clamp(4rem, 14vw, 9rem) clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(244, 176, 46, 0.04) 0%, transparent 45%);
}

.statement-cinematic__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.statement-cinematic__kicker {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.statement-cinematic__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.statement-cinematic__title span {
  display: block;
}

.statement-cinematic__gradient {
  background: linear-gradient(135deg, #fff 15%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statement-cinematic__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin: 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ——— Pillars (01–04) ——— */
.pillars-cinematic {
  padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
}

.pillars-cinematic__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pillars-cinematic__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.pillars-cinematic__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.pillars-cinematic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pillars-cinematic__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pillars-cinematic__grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  position: relative;
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(244, 176, 46, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.pillar-card:hover {
  border-color: rgba(244, 176, 46, 0.35);
  transform: translateY(-4px);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.pillar-card__num span {
  color: var(--accent);
}

.pillar-card h3,
.pillar-card .pillar-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.pillar-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ——— Meet section polish ——— */
body.page-home .section-meet--3d {
  border-top: none;
  position: relative;
}

body.page-home .meet-sub {
  max-width: 28rem;
}

/* ——— CTA finale ——— */
body.page-home .cta-band--3d {
  position: relative;
  overflow: hidden;
}

body.page-home .cta-band--3d::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 176, 46, 0.08), transparent 50%);
  pointer-events: none;
}

body.page-home .cta-band--3d h2,
body.page-home .cta-band--3d .sub {
  position: relative;
  z-index: 1;
}

/* ——— Footer tagline ——— */
body.page-home .site-footer .footer-tagline {
  text-align: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), var(--accent-hot), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ═══ Award-level atmosphere (homepage) ═══ */

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 100% at 50% -42%, rgba(244, 176, 46, 0.3), transparent 54%),
    radial-gradient(ellipse 75% 55% at 108% 22%, rgba(167, 139, 250, 0.24), transparent 50%),
    radial-gradient(ellipse 60% 50% at -12% 65%, rgba(34, 211, 238, 0.12), transparent 48%),
    radial-gradient(ellipse 70% 55% at 88% 95%, rgba(236, 72, 153, 0.1), transparent 48%),
    #050508;
}

body.page-home .hero-3d-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 70% at 50% 100%, rgba(244, 176, 46, 0.14), transparent 55%);
  pointer-events: none;
}

body.page-home .hero-eyebrow-cinematic {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.88), var(--accent-hot) 40%, var(--violet) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.page-home .hero-title .line:not(.grad) {
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
}

body.page-home .hero-title .grad {
  background: linear-gradient(115deg, #ffffff 0%, var(--accent-hot) 35%, var(--accent) 55%, var(--violet) 92%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 55px rgba(244, 176, 46, 0.25));
}

body.page-home .intro-curtain {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(244, 176, 46, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(167, 139, 250, 0.1), transparent 50%),
    var(--bg-deep);
}

body.page-home .intro-curtain__logo {
  background: linear-gradient(145deg, var(--accent) 0%, #6d28d9 100%);
  color: #0a0a0c;
  box-shadow:
    0 0 0 2px rgba(244, 176, 46, 0.55),
    0 0 40px rgba(244, 176, 46, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

/* Marquee — high-contrast ribbon */
.marquee-strip {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(167, 139, 250, 0.06), rgba(0, 0, 0, 0.65));
  border-top: 1px solid rgba(244, 176, 46, 0.25);
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.marquee-strip__segment {
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 24px rgba(244, 176, 46, 0.15);
}

.marquee-strip__segment strong {
  color: var(--accent-hot);
  text-shadow: 0 0 28px rgba(244, 176, 46, 0.45);
}

/* Statement — layered glow */
.statement-cinematic {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(244, 176, 46, 0.12);
  background: linear-gradient(180deg, rgba(244, 176, 46, 0.09) 0%, rgba(167, 139, 250, 0.04) 40%, transparent 65%);
}

.statement-cinematic::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(244, 176, 46, 0.2), transparent 62%);
  pointer-events: none;
  animation: statementGlow 10s ease-in-out infinite alternate;
}

.statement-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 90%, rgba(167, 139, 250, 0.12), transparent 55%);
  pointer-events: none;
}

@keyframes statementGlow {
  from {
    opacity: 0.75;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .statement-cinematic::before {
    animation: none;
    opacity: 0.85;
  }
}

.statement-cinematic__inner {
  position: relative;
  z-index: 1;
}

.statement-cinematic__kicker {
  color: rgba(255, 255, 255, 0.55);
}

.statement-cinematic__gradient {
  background: linear-gradient(120deg, #fff 0%, var(--accent-hot) 40%, var(--violet) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(244, 176, 46, 0.2));
}

/* Pillars — gradient frames */
body.page-home .pillar-card {
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(11, 11, 18, 0.98) 100%) padding-box,
    linear-gradient(135deg, rgba(244, 176, 46, 0.5), rgba(167, 139, 250, 0.4), rgba(34, 211, 238, 0.2)) border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 60px rgba(167, 139, 250, 0.06);
}

body.page-home .pillar-card:hover {
  border-color: transparent;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(244, 176, 46, 0.12);
}

body.page-home .pillar-card:nth-child(1)::before {
  background: radial-gradient(circle at 20% 0%, rgba(244, 176, 46, 0.2), transparent 55%);
}

body.page-home .pillar-card:nth-child(2)::before {
  background: radial-gradient(circle at 20% 0%, rgba(167, 139, 250, 0.18), transparent 55%);
}

body.page-home .pillar-card:nth-child(3)::before {
  background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 55%);
}

body.page-home .pillar-card:nth-child(4)::before {
  background: radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.12), transparent 55%);
}

.pillars-cinematic__label {
  text-shadow: 0 0 24px rgba(244, 176, 46, 0.25);
}

/* Meet — brighter rings */
body.page-home .meet-rings {
  opacity: 0.58;
}

body.page-home .meet-line--hoofy {
  filter: drop-shadow(0 0 45px rgba(244, 176, 46, 0.2));
}

/* Trust strip */
body.page-home .trust-strip {
  background: linear-gradient(90deg, transparent, rgba(244, 176, 46, 0.05), transparent);
  border-top-color: rgba(244, 176, 46, 0.12);
  border-bottom-color: rgba(167, 139, 250, 0.1);
}

/* Compare */
body.page-home .compare-section {
  position: relative;
}

body.page-home .compare-table {
  box-shadow: 0 0 0 1px rgba(244, 176, 46, 0.1), 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 100px rgba(167, 139, 250, 0.05);
}

body.page-home .compare-row--head {
  background: linear-gradient(90deg, rgba(244, 176, 46, 0.14), rgba(167, 139, 250, 0.1));
}

/* Feature cards + night band */
body.page-home .card--tilt {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(12, 12, 20, 0.9) 100%);
}

body.page-home .card--tilt:hover {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(244, 176, 46, 0.2), 0 0 50px rgba(167, 139, 250, 0.08);
}

body.page-home .night-band {
  border: 1px solid rgba(244, 176, 46, 0.15);
  background: linear-gradient(145deg, rgba(22, 22, 32, 0.95) 0%, rgba(8, 8, 12, 0.98) 100%);
  box-shadow: 0 0 80px rgba(167, 139, 250, 0.06);
}

/* Testimonials */
body.page-home .testimonial-card--3d {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(10, 10, 16, 0.85));
}

body.page-home .testimonial-card--3d:hover {
  border-color: rgba(244, 176, 46, 0.25);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 40px rgba(244, 176, 46, 0.08);
}

/* CTA finale — richer rotating wash (animation from 3d-effects) */
body.page-home .cta-band--3d::before {
  background: conic-gradient(
    from 200deg at 50% 50%,
    transparent 0deg,
    rgba(244, 176, 46, 0.14) 70deg,
    rgba(167, 139, 250, 0.12) 140deg,
    transparent 220deg,
    rgba(34, 211, 238, 0.06) 300deg,
    transparent 360deg
  );
  opacity: 0.95;
}

body.page-home .cta-band h2 {
  text-shadow: 0 0 60px rgba(244, 176, 46, 0.12);
}

/* Stat strip numerals */
body.page-home .stat-block--3d .num.accent {
  color: #5ee9a8;
  text-shadow: 0 0 24px rgba(94, 233, 168, 0.35);
}

body.page-home .stat-block--3d:hover {
  border-color: rgba(244, 176, 46, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(167, 139, 250, 0.08);
}

/* Hero stat row */
body.page-home .hero-visual--3d {
  border-color: rgba(244, 176, 46, 0.12);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.page-home .hero-stat strong {
  color: var(--accent-hot);
}

/* Homepage → hoof education */
.learn-cta-band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244, 176, 46, 0.15);
  border-bottom: 1px solid rgba(244, 176, 46, 0.1);
  background:
    linear-gradient(180deg, rgba(244, 176, 46, 0.07) 0%, transparent 55%),
    rgba(0, 0, 0, 0.2);
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.learn-cta-band__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.learn-cta-band__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.learn-cta-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.learn-cta-band__text {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
/* SEO + conversion helpers — Hoofy marketing site */

.breadcrumb-trail {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--muted, #9a9aa8);
}
.breadcrumb-trail ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.breadcrumb-trail li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumb-trail li:not(:last-child)::after {
  content: "›";
  opacity: 0.45;
  margin-left: 0.2rem;
}
.breadcrumb-trail a {
  color: var(--accent, #c9a227);
  text-decoration: none;
}
.breadcrumb-trail a:hover,
.breadcrumb-trail a:focus-visible {
  text-decoration: underline;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.seo-topic-card {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.seo-topic-card:hover,
.seo-topic-card:focus-visible {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-2px);
  outline: none;
}
.seo-topic-card h3,
.seo-topic-card .seo-topic-card__title {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.seo-topic-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted, #9a9aa8);
  line-height: 1.45;
}

article.seo-article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
article.seo-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}
article.seo-article p,
article.seo-article li {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
article.seo-article ul {
  padding-left: 1.25rem;
}
article.seo-article a {
  color: var(--accent, #c9a227);
}

.conversion-strip {
  margin: 2.5rem auto;
  max-width: 48rem;
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(10, 10, 12, 0.9));
  text-align: center;
}
.conversion-strip p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.conversion-strip .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-microcopy {
  font-size: 0.8rem;
  color: var(--muted, #9a9aa8);
  margin-top: 0.75rem;
  text-align: center;
}
