/* =========================================================
   siteyourstory.com — "Aura" theme
   Dark · cinematic · glassy. Homepage only.
   (case-studies.html / templates.html still use style.css)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- Reset / base ---------- */
:root {
  --brand: #3d81e3;
  --bg: #0c0c0c;
  --line: rgba(255, 255, 255, 0.1);
  --wrap: 72rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: rgba(61, 129, 227, 0.3);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

/* ---------- Fixed background video + veil ---------- */
.bg-media {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* readability veil over the video for the long content page */
.bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(12, 12, 12, 0.2), rgba(12, 12, 12, 0.78) 60%, rgba(12, 12, 12, 0.95) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.35) 0%, rgba(12, 12, 12, 0.75) 55%, rgba(12, 12, 12, 0.92) 100%);
}

/* vertical guide lines at the container edges */
.guide {
  display: none;
}

@media (min-width: 768px) {
  .guide {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
    pointer-events: none;
  }
  .guide-l {
    left: 50%;
    transform: translateX(calc(-50% - 36rem));
  }
  .guide-r {
    left: 50%;
    transform: translateX(calc(-50% + 36rem));
  }
}

.page {
  position: relative;
  z-index: 10;
}

/* visually-hidden svg filter host */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Shiny gradient headline ---------- */
.shiny {
  background-image: linear-gradient(
    to right,
    #091020 0%,
    #0b2551 12.5%,
    #a4f4fd 32.5%,
    #00d2ff 50%,
    #0b2551 67.5%,
    #091020 87.5%,
    #091020 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: url(#c3-noise);
}

.animate-shiny {
  animation: shiny 6s linear infinite;
}

@keyframes shiny {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ---------- Liquid-glass utility ---------- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- Buttons (AppleButton-style pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.btn-pill {
  background: #fff;
  color: #000;
}
.btn-pill:hover {
  background: rgba(255, 255, 255, 0.9);
}
.btn-pill:active {
  transform: scale(0.98);
}
.btn-pill .chev {
  transition: transform 0.25s ease;
}
.btn-pill:hover .chev {
  transform: translateX(1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

/* ---------- Section eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #fff;
  flex: none;
}
.eyebrow .tag {
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d='1'] {
  transition-delay: 0.08s;
}
.reveal[data-d='2'] {
  transition-delay: 0.16s;
}
.reveal[data-d='3'] {
  transition-delay: 0.24s;
}
.reveal[data-d='4'] {
  transition-delay: 0.32s;
}
.reveal[data-d='5'] {
  transition-delay: 0.4s;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: relative;
  z-index: 40;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand .logomark {
  width: 30px;
  height: 30px;
  flex: none;
}
.brand b {
  font-weight: 800;
}
.brand .b-faint {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #fff;
}

.nav-right {
  display: none;
}
.nav-burger {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.nav-burger svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-right {
    display: block;
  }
  .nav-burger {
    display: none;
  }
}

/* mobile sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}
.sheet-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sheet-panel {
  position: absolute;
  inset: 12px 12px auto 12px;
  top: auto;
  bottom: 12px;
  border-radius: 22px;
  padding: 24px;
  background: rgba(14, 16, 20, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
body.menu-open .sheet {
  pointer-events: auto;
}
body.menu-open .sheet-scrim {
  opacity: 1;
}
body.menu-open .sheet-panel {
  transform: translateY(0);
}
.sheet-panel .sheet-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.sheet-panel .sheet-links a {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 88px;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.hero h1 .l2 {
  display: block;
  margin-top: 0.08em;
}
.hero p.lead {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30rem;
  font-size: 16px;
  line-height: 1.55;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-actions .row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   MAC MENU BAR STRIP
   ========================================================= */
.menubar {
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menubar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.menubar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.menubar-left .mb-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.menubar-left .mb-brand svg {
  width: 14px;
  height: 14px;
}
.menubar-menu {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.menubar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.menubar-right svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .menubar-menu .m-4 {
    display: none;
  }
}
@media (max-width: 640px) {
  .menubar-menu .m-3,
  .menubar-menu .m-4 {
    display: none;
  }
}
/* very small screens: drop the decorative menu items entirely so the
   brand + clock never collide on the 40px bar */
@media (max-width: 480px) {
  .menubar-menu {
    display: none;
  }
  .menubar-right .mb-search {
    display: none;
  }
}

/* =========================================================
   BROWSER WINDOW + BEFORE/AFTER
   ========================================================= */
.showcase {
  padding-top: 64px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .showcase {
    padding-top: 96px;
  }
}
.window {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(14, 16, 20, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.lights {
  display: flex;
  gap: 8px;
}
.lights span {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
}
.url {
  flex: 1;
  display: flex;
  justify-content: center;
}
.url span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 14px;
  max-width: 320px;
}
.url span svg {
  width: 12px;
  height: 12px;
}

/* before/after */
.ba {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #0b0d11;
}
@media (max-width: 640px) {
  .ba {
    height: 340px;
  }
}
.ba-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before {
  width: 50%;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.ba-inner {
  position: absolute;
  inset: 0;
  width: 100%;
}
.ba-tag {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ba-tag.before {
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ba-tag.after {
  right: 14px;
  background: rgba(61, 129, 227, 0.9);
  color: #fff;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 5;
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: #fff;
  color: #0c0c0c;
  display: grid;
  place-items: center;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.ba-knob svg {
  width: 18px;
  height: 18px;
}

/* mock mini-sites inside the slider */
.mock {
  width: 100%;
  height: 100%;
  padding: 26px 30px;
  font-size: 12px;
}
.mock-after {
  background: linear-gradient(160deg, #f7f2ea 0%, #efe6d6 100%);
  color: #241f1b;
}
.mock-after .m-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-after .m-top b {
  font-size: 14px;
  letter-spacing: -0.01em;
}
.mock-after .m-nav {
  display: flex;
  gap: 8px;
}
.mock-after .m-nav i {
  width: 22px;
  height: 6px;
  border-radius: 4px;
  background: rgba(36, 31, 27, 0.18);
}
.mock-after .m-hero {
  margin-top: 34px;
}
.mock-after .m-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c0573b;
  font-weight: 600;
}
.mock-after .m-h {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
  max-width: 16ch;
}
.mock-after .m-pill {
  display: inline-block;
  background: #c0573b;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 9999px;
}
.mock-after .m-cards {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.mock-after .m-card {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  background: rgba(36, 31, 27, 0.1);
  border: 1px solid rgba(36, 31, 27, 0.08);
}

.mock-before {
  background: #d9d9d6;
  color: #1b1b1b;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}
.mock-before .m-top {
  border-bottom: 2px solid #8a8a86;
  padding-bottom: 8px;
  color: #2a3f9e;
  text-decoration: underline;
}
.mock-before .m-hero b {
  display: block;
  margin-top: 26px;
  font-size: clamp(18px, 3.6vw, 26px);
  font-weight: 700;
  color: #b11;
  letter-spacing: 0.01em;
}
.mock-before .m-body {
  margin-top: 22px;
  text-align: left;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.mock-before .m-line {
  height: 8px;
  background: #b7b7b3;
  border-radius: 2px;
  margin-bottom: 9px;
}
.mock-before .m-line.s {
  width: 80%;
}
.mock-before .m-line.t {
  width: 60%;
}
.mock-before .m-btn {
  margin-top: 16px;
  width: 120px;
  height: 26px;
  background: linear-gradient(#fdfdfd, #c9c9c4);
  border: 1px solid #8a8a86;
  border-radius: 3px;
}

.showcase-cap {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   BUILT-FOR MARQUEE (logo cloud)
   ========================================================= */
.builtfor {
  padding: 40px 0 8px;
  text-align: center;
}
.builtfor .kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
}
.marquee {
  margin-top: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  padding-right: 56px;
}
.marquee-item {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.45);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   STATS
   ========================================================= */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  border-radius: 16px;
  padding: 26px 22px;
}
.stat .num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat .num .suf {
  font-size: 0.5em;
  color: var(--brand);
  font-weight: 600;
}
.stat .lbl {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.section-head p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.6;
  max-width: 30rem;
}

/* =========================================================
   PROCESS (FeatureTriage two-column)
   ========================================================= */
.process-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.process-chips {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.triage {
  border-radius: 18px;
  padding: 20px;
}
.triage-eyebrow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  padding: 0 4px;
}
.triage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tri-card {
  border-radius: 12px;
  padding: 14px 16px;
}
.tri-card .tri-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tri-card .tri-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.tri-card .tri-num {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #0c0c0c;
}
.tri-card .tri-items {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   CASE STUDIES
   ========================================================= */
.cases-grid {
  margin-top: 56px;
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case {
  border-radius: 18px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.case .case-idx {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}
.case .case-cat {
  margin-top: 14px;
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}
.case h3 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.case p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.case .case-results {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  gap: 28px;
}
.case .r .rv {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.case .r .rv .suf {
  color: var(--brand);
  font-size: 0.6em;
}
.case .r .rl {
  margin-top: 2px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tributes-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .tributes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tribute {
  border-radius: 18px;
  padding: 26px 24px;
}
.tribute blockquote {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.tribute figcaption {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tribute .t-name {
  font-size: 14px;
  font-weight: 600;
}
.tribute .t-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.tribute .t-co {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

/* =========================================================
   PRICING (c3-* — reproduced from spec, adapted copy)
   ========================================================= */
.c3-pricing-section {
  position: relative;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.c3-watermark-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  margin-top: 40px;
  z-index: 2;
}
.c3-watermark-main {
  font-size: 9rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  filter: url(#c3-noise-pricing);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c3-watermark-line-1 {
  color: #fff;
}
.c3-watermark-line-2 {
  background: linear-gradient(to right, #091020 0%, #0b2551 25%, #a4f4fd 65%, #00d2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.c3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-top: 60px;
  transform: translateX(20px);
  position: relative;
  z-index: 3;
}
.c3-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  -webkit-backdrop-filter: blur(14px) brightness(0.91);
  backdrop-filter: blur(14px) brightness(0.91);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 44px;
  padding: 50px 24px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  position: relative;
}
.c3-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}
.c3-card:hover {
  background: rgba(15, 15, 15, 0.6);
  border-color: rgba(34, 211, 238, 0.7);
  transform: translateY(-12px) scale(1.01);
}
.c3-card-pro {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
}
.c3-tier-small {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.c3-tier-large {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 8px;
}
.c3-care {
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 600;
  margin-top: 6px;
  min-height: 1.2em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c3-care.show {
  opacity: 1;
}
.c3-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  min-height: 3.2em;
  margin-top: 16px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.c3-list {
  margin-bottom: 28px;
}
.c3-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  line-height: 1.4;
}
.c3-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c3-check svg {
  width: 14px;
  height: 14px;
}
.c3-btn {
  background: #fff;
  color: #000;
  padding: 10px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: auto;
  border: none;
  cursor: pointer;
  align-self: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.c3-btn:hover {
  background: #f5f5f5;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.c3-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  margin-top: 32px;
  padding-right: 20px;
  position: relative;
  z-index: 3;
}
.c3-toggle-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.c3-toggle {
  width: 52px;
  height: 28px;
  background: #fff;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.c3-toggle-knob {
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c3-toggle.active {
  background: rgba(255, 255, 255, 0.2);
}
.c3-toggle.active .c3-toggle-knob {
  transform: translateX(24px);
  background: #fff;
}

@media (max-width: 1024px) {
  .c3-watermark-main {
    font-size: 3.5rem;
    filter: none;
  }
  .c3-watermark-line-2 {
    background: none;
    -webkit-text-fill-color: #00d2ff;
    color: #00d2ff;
  }
  .c3-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none;
    width: 100vw;
    padding: 0 20px;
    gap: 16px;
    scrollbar-width: none;
  }
  .c3-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
  }
  .c3-grid::-webkit-scrollbar {
    display: none;
  }
  .c3-toggle-wrap {
    justify-content: center;
    padding-right: 0;
  }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .final-cta-wrap {
    padding: 96px 32px;
  }
}
.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.final-cta-wrap h2 {
  position: relative;
  font-size: clamp(2.4rem, 6vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.final-cta-wrap p {
  position: relative;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30rem;
  font-size: 14px;
  line-height: 1.6;
}
.final-cta-actions {
  position: relative;
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .animate-shiny,
  .marquee-track {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
