:root {
  --paper: #FFFFFF;
  --paper-dim: #F7F7F9;
  --ink: #14141A;
  --muted: #6B6B76;
  --accent: #FF5A36;
  --accent-dim: #FFEDE7;
  --line: #E7E6EA;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
}

.mono {
  font-family: 'Space Mono', monospace;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

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

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

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .01em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  align-items: center;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.nav-links .mobile-cta {
  display: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: background-color .2s ease;
  z-index: 60;
}

.nav-toggle:hover {
  background-color: var(--paper-dim);
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2.2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  border: 2px solid var(--ink);
  white-space: nowrap;
  cursor: pointer;
}

.btn-solid {
  background: var(--ink);
  color: #fff;
}

.btn-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  filter: brightness(0.92);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--paper-dim);
}

@media (max-width:820px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(20, 20, 26, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
    font-weight: 600;
    display: block;
    color: var(--ink);
  }

  .nav-links a:hover {
    background-color: var(--paper-dim);
  }

  .nav-links a.active {
    background-color: var(--accent-dim);
    color: var(--accent);
    border-bottom: none;
    padding-bottom: 12px;
  }

  .nav-links .mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    color: #fff;
  }

  .nav>.btn {
    font-size: 13px;
    padding: 9px 16px;
  }
}

@media (max-width:480px) {
  .nav {
    padding: 12px 16px;
  }

  .brand img {
    height: 36px;
  }

  .nav>.btn {
    display: none;
  }
}

/* HERO */
.hero {
  padding: 64px 24px 0;
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 20px auto 30px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* STAT BAR */
.stat-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 30px 12px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat .num {
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--accent);
}

.stat .lbl {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
  font-weight: 600;
}

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

  .stat {
    border-bottom: 1px solid var(--line);
  }
}

/* SECTIONS */
section {
  padding: 76px 0;
}

.sec-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.sec-head.left {
  text-align: left;
  margin: 0 0 40px;
}

.sec-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.sec-head p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 12px;
  line-height: 1.6;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}

/* SERVICES GRID (home) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.service-card {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  background: var(--paper);
  transition: border-color .2s, transform .2s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-card .icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 16.5px;
}

.service-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.5;
}

.service-card .tag {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Space Mono';
  font-size: 11px;
  color: var(--accent);
}

/* CHECKLIST */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}

.checklist .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ABOUT split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.split-panel {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--paper-dim);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.process-step {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  background: var(--paper);
}

.process-step .icon {
  font-size: 26px;
}

.process-step .no {
  font-family: 'Space Mono';
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 10px;
}

.process-step h3 {
  font-size: 16px;
  margin-top: 6px;
}

.process-step p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.5;
}

/* WHY (numbered) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.why-item {
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
}

.why-item .no {
  font-family: 'Space Mono';
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
}

.why-item .t {
  font-weight: 700;
  margin-top: 8px;
  font-size: 15px;
}

.why-item p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}

/* TICKET PRICING CARDS */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width:900px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.ticket {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(20, 20, 26, .04);
  display: flex;
  flex-direction: column;
}

.ticket.popular {
  border-color: var(--ink);
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(20, 20, 26, .12);
}

.stamp {
  position: absolute;
  top: -15px;
  right: 22px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .05em;
  padding: 6px 13px;
  border-radius: 100px;
}

.ticket-head {
  padding: 28px 26px 20px;
}

.ticket-head h3 {
  font-size: 22px;
}

.ticket-head .price {
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: 32px;
  margin-top: 14px;
  color: var(--ink);
}

.ticket-head .price sup {
  font-size: 15px;
  font-weight: 400;
  margin-right: 2px;
  color: var(--muted);
}

.ticket-head .per {
  font-family: 'Space Mono';
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tear {
  position: relative;
  height: 0;
  border-top: 1.5px dashed var(--line);
}

.tear::before,
.tear::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper-dim);
  border: 1.5px solid var(--line);
}

.tear::before {
  left: -11px;
}

.tear::after {
  right: -11px;
}

.ticket-body {
  padding: 22px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.feat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13.5px;
  gap: 10px;
}

.feat .k {
  color: var(--muted);
  font-weight: 500;
}

.feat .v {
  font-family: 'Space Mono';
  font-weight: 700;
  text-align: right;
}

.check {
  color: var(--accent);
}

.cross {
  color: var(--muted);
  opacity: .45;
}

.ticket-foot {
  padding: 0 26px 28px;
}

.ticket-foot .btn {
  width: 100%;
  justify-content: center;
}

/* ADS */
.ads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.ads-table {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.ads-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.ads-row:last-child {
  border-bottom: none;
}

.ads-row .name {
  font-weight: 600;
}

.ads-row .amt {
  font-family: 'Space Mono';
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.incl-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.incl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
}

.incl-item .dot {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.note {
  font-family: 'Space Mono';
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.6;
}

/* REELS */
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:900px) {
  .reels {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.reel-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reel-card h3 {
  font-size: 19px;
}

.reel-card .price {
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
}

.reel-card .deliv {
  font-family: 'Space Mono';
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  padding-top: 34px;
  border-top: 1.5px dashed var(--line);
}

.tag {
  font-family: 'Space Mono';
  font-size: 11.5px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 12px;
}

/* ADDONS / PRINTING GRID */
.addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.addon {
  background: var(--paper);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.addon .name {
  font-weight: 600;
  font-size: 15px;
}

.addon .price {
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

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

.print-card {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  background: var(--paper);
  text-align: center;
}

.print-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.print-card h3 {
  font-size: 15px;
}

.print-card p {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 6px;
  line-height: 1.5;
}

/* EVENT PACKAGE TABLE */
.event-table-wrap {
  overflow-x: auto;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}

table.event-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--paper);
}

table.event-table th,
table.event-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

table.event-table th {
  background: var(--ink);
  color: #fff;
  font-family: 'Space Mono';
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
}

table.event-table td:first-child,
table.event-table th:first-child {
  text-align: left;
  font-weight: 600;
}

table.event-table tr:last-child td {
  border-bottom: none;
}

table.event-table .price-row td {
  background: var(--accent-dim);
  font-family: 'Space Mono';
  font-weight: 700;
  color: var(--ink);
}

table.event-table .sr {
  color: var(--muted);
  font-family: 'Space Mono';
  font-size: 12.5px;
}

table.event-table td.dash {
  color: var(--muted);
}

.terms-box {
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  background: var(--paper-dim);
  margin-top: 30px;
}

.terms-box h3 {
  font-size: 15px;
  margin-bottom: 14px;
}

.terms-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* COMBOS */
.combos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

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

.combo {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--paper);
}

.combo.premium {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.combo .flag {
  font-size: 26px;
}

.combo h3 {
  font-size: 23px;
  margin-top: 10px;
}

.combo .price {
  font-family: 'Space Mono';
  font-weight: 700;
  font-size: 29px;
  color: var(--accent);
  margin: 14px 0 20px;
}

.combo.premium .price {
  color: #FF8A6E;
}

.combo ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.combo li {
  font-size: 14.5px;
  padding-left: 22px;
  position: relative;
}

.combo li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* SERVICE DETAIL ROWS (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: none;
}

@media (max-width:760px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

.service-detail.reverse {
  grid-template-columns: 1fr 320px;
}

@media (max-width:760px) {
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
}

.service-detail.reverse .service-icon-panel {
  order: 2;
}

.service-icon-panel {
  background: var(--paper-dim);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  overflow: hidden;
  padding: 0;
}

.service-icon-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1.5px);
}

.service-detail-body .no {
  font-family: 'Space Mono';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.service-detail-body h2 {
  font-size: 23px;
  margin-top: 8px;
}

.service-detail-body p.desc {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
}

.service-detail-body .tag-row {
  border-top: none;
  padding-top: 0;
  margin-top: 16px;
}

.service-detail-body .cta-link {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent);
  gap: 6px;
  align-items: center;
}

.service-detail-body .cta-link:hover {
  text-decoration: underline;
}

/* PORTFOLIO */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: 'Space Mono';
  font-size: 12.5px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

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

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

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

.p-card {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}

.p-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #fff;
}

.p-body {
  padding: 18px 20px;
}

.p-body .cat {
  font-family: 'Space Mono';
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.p-body h3 {
  font-size: 16px;
  margin-top: 8px;
}

.p-body p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}

/* TICKER */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  font-family: 'Space Mono';
  font-size: 13px;
  letter-spacing: .08em;
  color: #fff;
  white-space: nowrap;
  padding-right: 14px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion:reduce) {
  .ticker-track {
    animation: none;
  }
}

/* FINAL CTA + FOOTER */
.cta-final {
  text-align: center;
  padding: 80px 24px;
}

.cta-final h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

.cta-final p {
  color: var(--muted);
  margin: 14px 0 30px;
}

.cta-final .btn {
  font-size: 16px;
  padding: 14px 30px;
}

footer {
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.foot-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.foot-logo img {
  height: 28px;
}

.foot-meta {
  font-family: 'Space Mono';
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.social-row a:hover {
  color: var(--accent);
}

/* PAGE LOADER OVERLAY */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--paper);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.loader-spinner {
  width: 52px;
  height: 52px;
  border: 3.5px solid var(--accent-dim);
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: loader-spin 0.75s linear infinite;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.loader-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  animation: loader-pulse 1.2s ease-in-out infinite alternate;
}

.loader-subtext {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loader-pulse {
  0% { opacity: 0.6; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1.02); }
}