/* ============================================================
   Toot Social — site styles (dark · bold · loud)
   ============================================================ */

:root {
  /* Brand palette — Tangerine / Leaf Green / Sea Grey on volcanic black.
     Variable names kept as --violet-* for compatibility; values are tangerine. */
  --violet-300: #ffd9a8; /* pale tangerine */
  --violet-500: #ffb968; /* light tangerine — accent text */
  --violet-600: #f9a03f; /* mid tangerine */
  --violet-700: #f58f20; /* brand primary — Tangerine */
  --violet-900: #b45f09; /* deep tangerine */

  --leaf-500: #5fa046;
  --leaf-700: #467434; /* Leaf Green — secondary accent */
  --sea-grey: #363636; /* Sea Grey — surface */

  --bg: #1a1a1a; /* charcoal black (neutral) */
  --bg-soft: #242424; /* charcoal panels */
  --bg-tint: rgba(54, 54, 54, 0.45);
  --ink: #ffffff;
  --ink-soft: #e8e8e8;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --glow: rgba(245, 143, 32, 0.45);

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -28px rgba(245, 143, 32, 0.5);
  --container: 1160px;

  --font-body: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

/* Big display headings get the heavy Archivo Black cut. */
h1,
h2,
.hero__title,
.page-hero__title,
.price-card__name,
.brand__name {
  font-family: "Archivo Black", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--violet-500);
  text-decoration: none;
}

a:hover {
  color: var(--violet-300);
}

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

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

.accent {
  color: var(--violet-500);
}

.center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-500);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--violet-700);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--violet-500);
}

.brand:hover {
  color: var(--violet-500);
}

.brand__mark {
  display: inline-flex;
  color: var(--violet-500);
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--ink);
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.98rem;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a[aria-current="page"] {
  color: var(--violet-500);
}

.nav-social a {
  display: inline-flex;
  color: var(--ink-soft);
}

.nav-social a:hover {
  color: var(--violet-500);
}

.nav-cta {
  background: var(--violet-700);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 0 0 0 var(--glow);
  transition: box-shadow 0.25s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--violet-600);
  box-shadow: 0 8px 26px -8px var(--glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.25s ease;
}

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

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--violet-700);
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--glow);
}

.btn--primary:hover {
  background: var(--violet-600);
  color: #fff;
  box-shadow: 0 16px 40px -12px var(--glow);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--violet-500);
  color: var(--violet-300);
}

.btn + .btn {
  margin-left: 0.6rem;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section--muted {
  background: var(--bg-soft);
}

.section--band {
  padding: 0;
  background: var(--violet-700);
  color: #fff;
  overflow: hidden;
}

.section__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% -5%, rgba(245, 143, 32, 0.38), transparent 70%),
    radial-gradient(600px 400px at 85% 20%, rgba(70, 116, 52, 0.22), transparent 70%);
}

.hero__inner {
  max-width: 920px;
  margin-inline: auto;
}

.hero__title {
  margin: 0.4rem 0 0.6rem;
}

.hero__lead {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__proof {
  margin-top: 1.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Marquee band ---------- */

.marquee {
  display: flex;
  overflow: hidden;
  padding: 1.05rem 0;
  user-select: none;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 0 0 auto;
  padding-right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: #1a1a1a;
  white-space: nowrap;
  animation: marquee-scroll 26s linear infinite;
}

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

.marquee__dot {
  opacity: 0.45;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Grids / cards ---------- */

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

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

.card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--violet-500);
  letter-spacing: 0.1em;
}

.card h3 {
  margin-top: 0.5rem;
  color: #fff;
}

.card p {
  margin: 0;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet-700);
  border-radius: var(--radius);
  padding: 2rem;
}

.value-card h3 {
  color: #fff;
}

.value-card p {
  margin: 0;
}

/* ---------- Showcase / stats ---------- */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.showcase__head h2 {
  margin-bottom: 0.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--violet-500);
  margin-bottom: 0.4rem;
}

.stat__label {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--leaf-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.2rem;
  color: #fff;
}

.step p {
  margin: 0;
}

/* ---------- Pricing teaser (home) ---------- */

.price-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.price-teaser__item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.price-teaser__item--featured {
  border-color: var(--violet-600);
  box-shadow: var(--shadow);
}

.price-teaser__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price-teaser__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
}

.price-teaser__price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Pricing page ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.price-card--featured {
  border-color: var(--violet-600);
  background: linear-gradient(180deg, rgba(245, 143, 32, 0.15), var(--bg-soft));
  box-shadow: var(--shadow);
}

.price-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--leaf-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card__name {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.price-card__tagline {
  color: var(--muted);
  min-height: 3em;
  font-size: 0.98rem;
}

.price-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  color: #fff;
  line-height: 1;
  margin: 0.5rem 0 1.25rem;
}

.price-card__currency {
  font-size: 1.6rem;
  vertical-align: top;
  color: var(--violet-300);
}

.price-card__cadence {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card__features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.price-card__features li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-soft);
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--violet-500);
  font-weight: 800;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 2.5rem auto 0;
  font-size: 0.95rem;
}

/* ---------- Add-ons ---------- */

.addons {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.addons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.addons__list li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-weight: 500;
  color: #fff;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
}

.faq__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq__item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}

.faq__item h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.faq__item p {
  margin: 0;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band .lead {
  color: #fff;
  margin: 0;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--violet-900);
  box-shadow: none;
}

.cta-band .btn--primary:hover {
  background: var(--violet-300);
  color: var(--violet-900);
}

/* ---------- Page hero (interior) ---------- */

.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
  background: radial-gradient(800px 400px at 20% -10%, rgba(245, 143, 32, 0.28), transparent 70%);
}

.page-hero__title {
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  max-width: 680px;
}

/* ---------- Prose ---------- */

.prose {
  max-width: 760px;
}

.prose--narrow {
  max-width: 680px;
}

.prose h2 {
  margin-top: 2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose strong {
  color: #fff;
}

.ticks {
  list-style: none;
  padding-left: 0;
}

.ticks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6rem;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--violet-500);
  font-weight: 800;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.field {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bg-soft);
  color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--violet-600);
  outline-offset: 1px;
  border-color: var(--violet-600);
}

.field select option {
  color: #000;
}

.hidden-field {
  display: none;
}

.contact-aside h2 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  color: #fff;
}

.contact-aside h2:first-child {
  margin-top: 0;
}

/* ---------- Blog ---------- */

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  max-width: 760px;
}

.post-list__item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}

.post-list__item h2 {
  font-size: 1.7rem;
  margin: 0.25rem 0 0.5rem;
}

.post-list__item h2 a {
  color: #fff;
}

.post-list__item h2 a:hover {
  color: var(--violet-300);
}

.post-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.read-more {
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #050409;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .brand__name {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: lowercase;
}

.site-footer__brand p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.social-link svg {
  flex: none;
}

.site-footer__legal {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__legal p {
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero__title {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .showcase,
  .addons,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid--3,
  .pricing-grid,
  .price-teaser {
    grid-template-columns: 1fr;
  }

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

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

  .price-card--featured {
    order: -1;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
  }

  .site-nav li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-social {
    display: none;
  }
}

@media (max-width: 560px) {
  .steps,
  .stats,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .btn + .btn {
    margin-left: 0;
    margin-top: 0.6rem;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ============================================================
   Cinematic layers — WebGL canvas, grain, glass, cursor, reveals
   ============================================================ */

/* Fixed WebGL backdrop. Visible through the transparent hero; JS
   fades it out as solid content scrolls up. */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#bg-canvas.is-ready {
  opacity: 1;
}

/* Keep all real content above the canvas. */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* Film grain overlay. */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(3) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-4%, 2%); }
  66% { transform: translate(3%, -3%); }
  100% { transform: translate(0, 0); }
}

/* Cursor glow follower. */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 143, 32, 0.12), transparent 60%);
  mix-blend-mode: screen;
  will-change: transform;
}

/* Hero becomes a window onto the WebGL scene. */
.hero {
  background: transparent;
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(10, 10, 10, 0.7) 100%);
}

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

.hero__title {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Blend-mode smoke video (optional asset). */
.hero__smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Frosted-glass widget. */
.glass-widget {
  position: relative;
  margin: 1.9rem auto 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.8);
}

.glass-widget strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.1;
}

.glass-widget span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.glass-widget__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5fa046;
  box-shadow: 0 0 0 0 rgba(95, 160, 70, 0.6);
  animation: pulse 2s ease-out infinite;
  flex: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 160, 70, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(95, 160, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 160, 70, 0); }
}

/* Scroll cue. */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--violet-500), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollline {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Reveal-on-scroll (class only added by JS, so no-JS shows everything). */
.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  will-change: transform, opacity;
}

@media (max-width: 700px) {
  .glass-widget {
    position: static;
    margin-top: 1.75rem;
  }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .grain,
  .hero__scroll-line,
  .glass-widget__dot {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Pricing positioning line ---------- */
.pricing-position {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet-300);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

/* ---------- 3D iPhone showcase ---------- */
.phones-section {
  position: relative;
  overflow: hidden;
}

.phones-stage {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 1.5rem auto 0;
  height: clamp(440px, 60vw, 720px);
}

.phones-stage::after {
  /* soft purple glow pooled behind the phones */
  content: "";
  position: absolute;
  inset: 10% 20%;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(245, 143, 32, 0.35), transparent 75%);
  filter: blur(20px);
  pointer-events: none;
}

#phones-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- "Here's the deal" content section ---------- */
.deal-grid {
  max-width: 920px;
  margin-inline: auto;
}

.deal-note {
  max-width: 680px;
  margin: 2rem auto 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

/* ---------- Terms page + legal bits ---------- */
.terms-entity {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.contact-addr {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__legal a {
  color: var(--muted);
}

.site-footer__legal a:hover {
  color: #fff;
}

.pricing-note a {
  color: var(--violet-300);
}

/* ---------- Birds Eye Media parent-brand connection ---------- */
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.site-footer__parent {
  color: var(--violet-300);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.5rem;
}

/* Heritage section */
.heritage__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 143, 32, 0.16), rgba(245, 143, 32, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.heritage__copy .btn {
  margin-top: 1.5rem;
}

.heritage__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.heritage__facts li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.heritage__facts span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
}

.heritage__facts small {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .heritage__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .brand__sub {
    display: none;
  }
}

/* ============================================================
   Additions: pricing extras, shoots, team gallery, sign-up modal
   ============================================================ */

.muted {
  color: var(--muted);
}

.pricing-existing {
  display: inline-block;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Paid-ads rate table ---------------------------------------- */
.rate-table {
  max-width: 720px;
  margin: 2rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-row__label {
  color: var(--ink-soft);
}

.rate-row__value {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

/* Content shoot cards ---------------------------------------- */
.shoot-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.shoot-card__meta {
  color: var(--violet-300);
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.shoot-card__meta strong {
  color: var(--ink);
}

/* Team gallery ----------------------------------------------- */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.team-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.team-shot img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-shot figcaption {
  padding: 0.9rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .team-gallery {
    grid-template-columns: 1fr;
  }
  .team-shot img {
    height: 240px;
  }
}

/* Sign-up + terms acknowledgement modal ---------------------- */
body.modal-open {
  overflow: hidden;
}

.signup-modal[hidden] {
  display: none;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.signup-modal.is-open {
  opacity: 1;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 10, 0.78);
  backdrop-filter: blur(6px);
}

.signup-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.2rem;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.signup-modal.is-open .signup-modal__dialog {
  transform: translateY(0) scale(1);
}

.signup-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  background: none;
  border: 0;
  color: var(--ink-soft);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.signup-modal__close:hover {
  color: var(--ink);
}

.signup-modal__title {
  margin: 0.2rem 0 0.4rem;
}

.signup-modal__plan {
  color: var(--violet-300);
  margin-bottom: 1rem;
}

.signup-modal__lead {
  color: var(--ink-soft);
}

.signup-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.signup-modal__list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-soft);
}

.signup-modal__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--violet-500);
  font-weight: 800;
}

.signup-modal__list strong {
  color: var(--ink);
}

.signup-modal__check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-tint);
  cursor: pointer;
  margin-bottom: 1.2rem;
}

.signup-modal__check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--violet-700);
  flex: 0 0 auto;
}

.signup-modal__continue.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.signup-modal__secure {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 480px) {
  .signup-modal__dialog {
    padding: 1.6rem;
  }
}

/* Testimonials ----------------------------------------------- */
.testimonials {
  margin-top: 2.4rem;
}

.testimonial {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial__tag {
  align-self: flex-start;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--violet-300);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.6;
}

.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
}

.testimonial figcaption strong {
  color: var(--ink);
}

.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================================
   Depth & motion — hero legibility, dimensional surfaces, micro-interactions
   ============================================================ */

/* Hero: dark scrim behind the headline so text pops over the bright scene. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    72% 58% at 50% 44%,
    rgba(16, 16, 16, 0.68),
    rgba(16, 16, 16, 0.3) 58%,
    transparent 82%
  );
}

.hero__title {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.62), 0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero__lead {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}

/* Gradient accent type for depth. */
.accent {
  background: linear-gradient(120deg, var(--violet-500) 0%, var(--violet-700) 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__title .accent {
  filter: drop-shadow(0 0 18px rgba(245, 143, 32, 0.45));
}

/* Dimensional surfaces — gradient sheen + soft shadow + animated hover. */
.card,
.price-card,
.shoot-card,
.stat,
.testimonial,
.value-card {
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 44%);
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.9);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Tangerine gradient hairline that lights up on hover (service + shoot cards). */
.card,
.shoot-card {
  position: relative;
}

.card::after,
.shoot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(245, 143, 32, 0.55), rgba(95, 160, 70, 0.35) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover,
.shoot-card:hover,
.stat:hover,
.testimonial:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--violet-600);
  box-shadow: 0 30px 60px -28px rgba(245, 143, 32, 0.38);
}

.card:hover::after,
.shoot-card:hover::after {
  opacity: 1;
}

/* Buttons — layered gradient + inner highlight for lift. */
.btn--primary {
  background-image: linear-gradient(180deg, var(--violet-600), var(--violet-700));
  box-shadow: 0 12px 30px -12px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 20px 46px -14px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* Gentle float so the hero isn't static. */
@media (prefers-reduced-motion: no-preference) {
  .glass-widget {
    animation: floaty 6s ease-in-out infinite;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   Palette rhythm — deliberate per-section colour themes
   ============================================================
   Default accent is bold tangerine. A section opts into green with
   .section--green. The accent drives eyebrows, accent words, card &
   stat numbers and hover states, so each whole section reads as ONE
   clean colour — an even orange/green rhythm down the page, not a
   random per-item mix. */

:root {
  --accent: #f58f20; /* Tangerine #F58F20 */
  --accent-deep: #d97b10;
}

.section--green {
  --accent: #5d9a3f; /* leaf green (legible on dark) */
  --accent-deep: #467434; /* Leaf Green #467434 */
}

.eyebrow,
.card__num,
.stat__num,
.shoot-card__meta {
  color: var(--accent);
}

.shoot-card__meta strong {
  color: #fff;
}

.accent {
  background: linear-gradient(118deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.value-card {
  border-left-color: var(--accent-deep);
}

.card::after,
.shoot-card::after {
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 60%, transparent), transparent 62%);
}

.card:hover,
.shoot-card:hover,
.stat:hover,
.value-card:hover,
.testimonial:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -28px color-mix(in srgb, var(--accent) 42%, transparent);
}

/* Fixed brand marks that always read green for contrast. */
.step__num,
.price-card__badge {
  background: var(--leaf-700);
}

/* Two-colour marquee band. */
.section--band {
  background: linear-gradient(90deg, var(--violet-700) 0%, var(--leaf-700) 100%);
}

/* ============================================================
   Flat colour-block pass — match the reference palette
   (less dark, no gradients, bold solid blocks of tangerine /
   leaf green / sea grey)
   ============================================================ */

/* Accent: solid text colour vs solid fill colour. */
:root {
  --accent: #f58f20;
  --accent-fill: #f58f20;
  --bg: #2e2e2e;       /* lighter charcoal base */
  --bg-soft: #383838;  /* muted sections (sea grey) */
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);
}
.section--green {
  --accent: #6aa64a;
  --accent-fill: #467434;
}

/* Panels become lighter sea-grey blocks — flat, no gradient sheen. */
.card,
.price-card,
.shoot-card,
.stat,
.value-card,
.testimonial,
.rate-table,
.signup-modal__dialog {
  background: #454545;
  box-shadow: none;
}

/* Flatten accent type — solid colour, no gradient clip. */
.accent {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--accent);
  filter: none;
}

/* Drop the gradient hairline + sheen; clean flat hover. */
.card::after,
.shoot-card::after {
  display: none;
}
.card:hover,
.shoot-card:hover,
.stat:hover,
.value-card:hover,
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px -22px rgba(0, 0, 0, 0.7);
}

/* Solid buttons (no gradient). */
.btn--primary {
  background: var(--violet-700);
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.6);
}
.btn--primary:hover {
  background: #ff9e3a;
}

/* Bold solid colour-block bands, like the reference blocks. */
.section--band {
  background: #f58f20;
}
.section--band .marquee {
  color: #1a1a1a;
}
.cta-band {
  background: var(--accent-fill);
  box-shadow: none;
}
.cta-band .btn--primary {
  background: #fff;
  color: var(--accent-fill);
}
.cta-band .btn--primary:hover {
  background: #f1f1f1;
  color: var(--accent-fill);
}

/* Full solid colour-block sections (generous colour, less black). */
.section--block { color: #fff; }
.section--block .eyebrow { color: rgba(255, 255, 255, 0.85); }
.section--block h2 { color: #fff; }
.section--block .lead,
.section--block .step p { color: rgba(255, 255, 255, 0.92); }

.section--block-green { background: #467434; }

.section--block-green .step__num {
  background: #fff;
  color: #467434;
}
.section--block-green .step h3 { color: #fff; }

/* ============================================================
   Premium pointer interactions — tilt glare + colour-block spotlight
   ============================================================ */

.tilt {
  position: relative;
  transform-style: preserve-3d;
}

.tilt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 46%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.tilt:hover::before {
  opacity: 1;
}

.tilt > * {
  position: relative;
  z-index: 1;
}

.section--block {
  position: relative;
  overflow: hidden;
}

.section--block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(280px circle at var(--sx, 50%) var(--sy, 50%), rgba(255, 255, 255, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.section--block:hover::before {
  opacity: 1;
}

.section--block > .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Page-load intro + split-text headlines
   ============================================================ */

.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  animation: introSafety 0.4s ease 5s forwards; /* fail-safe if JS doesn't run */
}

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

body.intro-lock {
  overflow: hidden;
}

.intro__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.intro__mark {
  display: inline-flex;
  color: var(--violet-700);
}

.intro__words {
  display: flex;
  gap: 0.4rem;
  overflow: hidden;
  font-family: "Archivo Black", var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  text-transform: lowercase;
  letter-spacing: -0.03em;
  color: #fff;
}

.intro__word {
  display: inline-block;
}

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

/* Split-text words */
.word {
  display: inline-block;
  transform-origin: 0% 100%;
  will-change: transform, opacity;
}
.section__head h2,
.page-hero__title {
  perspective: 700px;
}

/* ============================================================
   Green "How it works" — connected journey with depth
   ============================================================ */
.section--block-green .steps {
  position: relative;
}

.section--block-green .step {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 36px -26px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.section--block-green .step:hover {
  transform: translateY(-7px);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 30px 46px -24px rgba(0, 0, 0, 0.75);
}

.section--block-green .step__num {
  width: 54px;
  height: 54px;
  font-size: 1.4rem;
  background: #fff;
  color: #2f5022;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}

/* Dotted connector line that draws in across the number row (desktop). */
@media (min-width: 781px) {
  .section--block-green .steps::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: calc(1.75rem + 27px);
    height: 3px;
    background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.55) 0 14px,
      transparent 14px 28px
    );
    transform: scaleX(var(--line-scale, 0));
    transform-origin: left center;
    z-index: 0;
  }
}

/* ============================================================
   Custom branded cursor ring
   ============================================================ */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid var(--violet-700);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  background: rgba(245, 143, 32, 0.16);
  border-color: var(--violet-500);
}

@media (pointer: coarse) {
  .cursor-ring { display: none; }
}

/* ============================================================
   Blog — index cards + article
   ============================================================ */
.blog-grid {
  margin-top: 1rem;
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #363636;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.post-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-card__cat {
  color: var(--accent);
  font-weight: 700;
}

.post-card__title {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.15;
}

.post-card__title a {
  color: #fff;
}

.post-card__title a:hover {
  color: var(--accent);
}

.post-card__summary {
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.read-more {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
}

/* Article */
.post-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.post-meta {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.post-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.post-cta h3 {
  margin-top: 0;
  color: #fff;
}

/* Prose readability polish */
.prose--narrow {
  max-width: 760px;
}

.prose h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.prose h3 {
  margin-top: 1.8rem;
}

.prose a {
  color: var(--violet-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: #fff;
}
