/* ============================================================
   CII India Design Tag & Rating 2026 — Stylesheet
   Palette: Ivory paper, deep ink, CII red accent
   Type:    Cormorant Garamond (display) + Manrope (body)
   ============================================================ */

:root {
  --white: #FFFFFF;
  --paper: #FAF8F3;
  --paper-2: #F2EFE8;
  --cream: #F6F1E6;
  --ink: #0E0F12;
  --ink-2: #1E2026;
  --ink-3: #41454F;
  --muted: #6B6F78;
  --muted-2: #8A8E97;

  --red: #B11B1F;
  --red-2: #C8161A;
  --red-deep: #7A0F12;
  --red-soft: #E04B4F;
  --red-tint: #FCEDED;

  --line: rgba(14, 15, 18, 0.10);
  --line-strong: rgba(14, 15, 18, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.92);

  --serif: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1440px;
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-lift: 0 30px 80px -30px rgba(14, 15, 18, 0.18);
  --shadow-red: 0 18px 50px -10px rgba(177, 27, 31, 0.35);
  --shadow-card: 0 1px 2px rgba(14, 15, 18, 0.04), 0 12px 40px -20px rgba(14, 15, 18, 0.10);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------- reset / base ------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* Page-level layered background — soft warm paper with subtle red glow */
/* body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(900px 600px at 12% 8%, rgba(177, 27, 31, 0.06), transparent 60%),
    radial-gradient(700px 500px at 88% 22%, rgba(177, 27, 31, 0.04), transparent 65%),
    radial-gradient(1200px 800px at 50% 110%, rgba(122, 15, 18, 0.05), transparent 70%);
} */

/* body::after {
  background-image:
    linear-gradient(rgba(14, 15, 18, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 15, 18, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.6;
} */

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* ------- container ------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------- typography ------- */
.serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 16px 0 16px;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 7.2vw, 72px);
}

h2 {
  font-size: clamp(36px, 4.8vw, 48px);
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
}

p {
  text-wrap: pretty;
}

.section-head {
  max-width: 760px;
  margin-bottom: 0px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

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

.italic-serif {
  font-family: var(--serif);
  font-style: normal;
  color: var(--red);
  font-weight: 500;
}

/* ------- buttons ------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  border: none;
}

.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(177, 27, 31, 0.5);
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(177, 27, 31, 0.65);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--white);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
}

.btn-link {
  padding: 0;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.4s var(--ease);
  background-color: white;
}

.nav.scrolled {
  padding: 14px 0;
  /* background: rgba(255, 255, 255, 0.86); */
  background-color: white;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(14, 15, 18, 0.02);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.4s var(--ease);
}

/* .nav.scrolled .brand-logo {
  filter: brightness(0);
} */

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand-text small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(0, 0, 0);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.open span {
  background: transparent;
}

.menu-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Nav over dark hero — light text when not scrolled */
.nav:not(.scrolled) .brand-text strong {
  color: var(--white);
}

.nav:not(.scrolled) .brand-text small {
  color: rgba(255, 255, 255, 0.65);
}

.nav:not(.scrolled) .nav-links a {
  color: rgb(23, 23, 23);
}

.nav:not(.scrolled) .nav-links a:hover {
  color: rgb(23, 23, 23);
}

.nav:not(.scrolled) .btn-ghost {
  border-color: rgba(62, 62, 62, 0.35);
  /* color: var(--white); */
color: black;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.nav:not(.scrolled) .btn-ghost:hover {
   border-color: rgba(17, 17, 17, 0.35);
  /* color: var(--white); */
color: black;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.nav:not(.scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.nav:not(.scrolled) .menu-toggle span,
.nav:not(.scrolled) .menu-toggle span::before,
.nav:not(.scrolled) .menu-toggle span::after {
  background: var(--white);
}

/* ============================================================
   HERO — full-bleed image with left-aligned text overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.85);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(90deg, rgba(14, 15, 18, 0.85) 0%, rgba(14, 15, 18, 0.7) 35%, rgba(14, 15, 18, 0.35) 70%, rgba(14, 15, 18, 0.1) 100%),
    linear-gradient(180deg, rgba(14, 15, 18, 0.4) 0%, transparent 30%, rgba(14, 15, 18, 0.4) 100%),
    linear-gradient(135deg, rgba(177, 27, 31, 0.25) 0%, transparent 50%); */
}

/* Red brand strip — decorative band along the top edge of hero */
.hero-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}

/* Vertical accent strip on the right */
.hero-side-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--red-deep), var(--red) 40%, var(--red-deep));
  z-index: 2;
}

.hero-side-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: 600px 100%;
  background-position: right center;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 640px;
}

/* Hero right — floating brand badge over the image */
.hero-badge {
  position: relative;
  justify-self: end;
  align-self: center;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, var(--red-soft), var(--red) 50%, var(--red-deep));
  box-shadow:
    inset 0 -12px 30px rgba(0, 0, 0, 0.3),
    inset 0 12px 22px rgba(255, 255, 255, 0.15),
    0 30px 60px -20px rgba(177, 27, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  animation: spin 40s linear infinite reverse;
}

.hero-badge::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge .core {
  text-align: center;
  color: var(--white);
  z-index: 1;
  padding: 14px;
}

.hero-badge .core .yr {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
}

.hero-badge .core .lbl {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.9;
}

.hero-badge .core .crest {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.hero-badge .orbit {
  position: absolute;
  inset: -16px;
  pointer-events: none;
  animation: spin 40s linear infinite;
}

.hero-badge .orbit text {
  font-family: var(--sans);
  font-size: 6px;
  letter-spacing: 0.4em;
  fill: var(--white);
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero h1 {
  margin-bottom: 18px;
  color: black;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  line-height: 1.1;
  font-size: 48px;
  font-weight: 600ddd;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgb(0, 0, 0);
  max-width: 540px;
  margin-bottom: 14px;
}

.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red-soft);
  font-size: 22px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  /* margin-bottom: 64px; */
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 560px;
}

.hero-stats .stat-num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stats .stat-num sup {
  color: var(--red-soft);
  font-size: 22px;
  margin-left: 2px;
}

.hero-stats .stat-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero visual: layered medallion in red on cream */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.medallion {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.medallion.ring-1 {
  border: 1px solid rgba(177, 27, 31, 0.22);
  animation: spin 60s linear infinite;
}

.medallion.ring-2 {
  inset: 8%;
  border: 1px dashed rgba(177, 27, 31, 0.3);
  animation: spin 40s linear infinite reverse;
}

.medallion.ring-3 {
  inset: 18%;
  border: 1px solid rgba(14, 15, 18, 0.06);
  background:
    radial-gradient(circle at 35% 30%, var(--cream), var(--paper) 80%);
  box-shadow:
    inset 0 0 60px rgba(177, 27, 31, 0.05),
    0 30px 80px -30px rgba(14, 15, 18, 0.18);
}

/* Inner red disc */
.medallion.ring-4 {
  inset: 30%;
  background:
    radial-gradient(circle at 30% 25%, var(--red-soft), var(--red) 50%, var(--red-deep));
  box-shadow:
    inset 0 -10px 30px rgba(0, 0, 0, 0.25),
    inset 0 10px 20px rgba(255, 255, 255, 0.15),
    0 20px 50px -20px rgba(177, 27, 31, 0.55);
}

.medallion-core {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  color: var(--white);
}

.medallion-core .year {
  font-family: var(--serif);
  font-size: clamp(64px, 7.5vw, 108px);
  color: var(--white);
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.medallion-core .label {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.medallion-core .crest {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-bottom: 6px;
}

.orbit-text {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: spin 50s linear infinite;
}

.orbit-text text {
  font-family: var(--sans);
  font-size: 6.5px;
  letter-spacing: 0.5em;
  fill: var(--red);
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(177, 27, 31, 0.4);
  opacity: 0;
  animation: float 14s var(--ease) infinite;
}

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

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  50% {
    transform: translate(20px, -40px);
    opacity: 0.25;
  }

  90% {
    opacity: 0.4;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--white) 50%, transparent);
  background-size: 100% 200%;
  animation: scrolly 2.4s ease-in-out infinite;
}

@keyframes scrolly {
  0% {
    background-position: 0 -100%;
  }

  100% {
    background-position: 0 100%;
  }
}

/* ============================================================
   SECTIONS — general
   ============================================================ */
section {
  position: relative;
  padding: 60px 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 0 auto;
  max-width: 1100px;
}

/* ============================================================
   ALT SECTION BACKGROUND — dummy image w/ paper overlay
   Used on every other section for visual rhythm.
   ============================================================ */
section.section-image {
  background-color: var(--paper);
  isolation: isolate;
}

section.section-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 1;
  z-index: -2;
  filter: saturate(0.8) contrast(1.05);
}

section.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.65) 100%);
  z-index: -1;
}

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

section.section-image h2,
section.section-image h3,
section.section-image p,
section.section-image .eyebrow,
section.section-image .lead,
section.section-image .lead-quote,
section.section-image .body,
section.section-image strong,
section.section-image span,
section.section-image .marker {
  color: rgba(255, 255, 255, 0.92);
}

section.section-image .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

section.section-image em {
  color: rgba(255, 255, 255, 0.92);
}

/* Dark variant for image sections that want a moody feel */
section.section-image-dark {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  isolation: isolate;
}

section.section-image-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.35;
  z-index: -2;
  filter: saturate(0.7) brightness(0.7);
}

section.section-image-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(14, 15, 18, 0.78) 18%, rgba(14, 15, 18, 0.78) 82%, var(--ink) 100%);
  z-index: -1;
}

section.section-image-dark .container {
  position: relative;
  z-index: 1;
}

section.section-image-dark h2,
section.section-image-dark h3,
section.section-image-dark h4 {
  color: var(--white);
}

section.section-image-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

/* Decorative red brand band — used as section transition */
.brand-band {
  position: relative;
  height: 56px;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.brand-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.15));
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 3/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--cream), var(--paper-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.about-visual .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.9);
  z-index: 0;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 15, 18, 0) 30%, rgba(14, 15, 18, 0.55) 100%),
    linear-gradient(135deg, rgba(177, 27, 31, 0.18), transparent 55%);
  z-index: 1;
}

.about-visual>* {
  position: relative;
  z-index: 2;
}

.about-visual svg.pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
  mix-blend-mode: screen;
}

/* .about-visual .red-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background:
    linear-gradient(135deg, transparent 50%, var(--red) 50%);
} */

/* .about-visual .red-corner::after {
  content: "★";
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  font-size: 20px;
} */

.about-visual .badge-stack {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.about-visual .seal {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-red);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-visual .meta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-visual .meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0;
  color: var(--white);
  text-transform: none;
  margin-top: 6px;
}

/* Symbol stage — replaces placeholder photo in about visual */
.sym-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    background: linear-gradient(160deg, var(--ink) 0%, #1A1C22 60%, var(--red-deep) 130%);
  gap: 28px;
  overflow: hidden;
  z-index: 2;
}

.sym-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(177, 27, 31, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 27, 31, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
}

.sym-glow {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 27, 31, 0.45) 0%, rgba(177, 27, 31, 0.15) 45%, transparent 70%);
  pointer-events: none;
  animation: symGlowPulse 5s ease-in-out infinite;
}

@keyframes symGlowPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

.sym-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sym-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  aspect-ratio: 1;
}

.sym-ring.r1 {
  width: 78%;
  border-color: rgba(177, 27, 31, 0.10);
  animation: symRingRotate 28s linear infinite;
}

.sym-ring.r1::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.6;
  transform: translateX(-50%);
}

.sym-ring.r2 {
  width: 57%;
  border-color: rgba(177, 27, 31, 0.18);
  animation: symRingRotate 18s linear infinite reverse;
}

.sym-ring.r3 {
  width: 36%;
  border-color: rgba(177, 27, 31, 0.28);
  animation: symRingRotate 35s linear infinite;
}

@keyframes symRingRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sym-figure {
  position: relative;
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: symFloat 7s ease-in-out infinite;
}

.sym-figure img {
  width: clamp(140px, 52%, 270px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 28px rgba(177, 27, 31, 0.55))
    drop-shadow(0 12px 48px rgba(177, 27, 31, 0.30))
    brightness(1.06);
}

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

.sym-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.sym-dash {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(177, 27, 31, 0.45);
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.about-stats .item .num {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 6px;
  font-weight: 500;
}

.about-stats .item .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   VISION & PURPOSE
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.duo-card {
  position: relative;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: var(--shadow-card);
}

.duo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(177, 27, 31, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.duo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.duo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 27, 31, 0.3);
  box-shadow: 0 30px 60px -20px rgba(14, 15, 18, 0.12);
}

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

.duo-card:hover::after {
  transform: scaleX(1);
}

.duo-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--red-tint);
  border: 1px solid rgba(177, 27, 31, 0.18);
  margin-bottom: 28px;
  color: var(--red);
}

.duo-card .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 600;
}

.duo-card h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  margin-bottom: 20px;
}

.duo-card p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
}

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

.cat-card {
  position: relative;
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-card);
}

.cat-card .cat-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* .cat-card .cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 15, 18, 0) 50%, rgba(255, 255, 255, 0.95) 100%),
    linear-gradient(135deg, rgba(177, 27, 31, 0.18), transparent 60%);
} */

.cat-card .cat-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
  position: relative;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--red), transparent 40%, transparent 60%, var(--red-deep));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(177, 27, 31, 0.18);
}

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

.cat-card:hover .cat-img {
  filter: brightness(1.05);
}

.cat-num {
  position: absolute;
  top: -22px;
  left: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px -6px rgba(177, 27, 31, 0.6);
}

.cat-icon {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red);
  transition: transform 0.5s var(--ease);
  box-shadow: var(--shadow-card);
}

.cat-card:hover .cat-icon {
  transform: rotate(-8deg) scale(1.08);
}

.cat-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cat-card .meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-card .corner {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 22px;
  height: 22px;
  color: var(--muted-2);
  transition: color 0.3s, transform 0.4s var(--ease);
}

.cat-card:hover .corner {
  color: var(--red);
  transform: translate(2px, -2px);
}

.cat-card.featured .cat-img::after {
  background:
    linear-gradient(180deg, rgba(177, 27, 31, 0.3) 0%, rgba(177, 27, 31, 0.6) 100%);
}

.cat-card.featured {
  border-color: rgba(177, 27, 31, 0.25);
}

.cat-card.featured h3 {
  color: var(--red);
}

/* ============================================================
   ELIGIBILITY (checklist)
   ============================================================ */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.elig-item {
  display: flex;
  gap: 22px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-card);
}

.elig-item:hover {
  border-color: rgba(177, 27, 31, 0.3);
  transform: translateX(4px);
  box-shadow: 0 18px 40px -20px rgba(177, 27, 31, 0.18);
}

.elig-tick {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 8px 16px -8px rgba(177, 27, 31, 0.55);
}

.elig-item .body strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}

.elig-item .body span {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ============================================================
   EVALUATION TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
  opacity: 0.4;
}

.tl-step {
  text-align: center;
  position: relative;
}

.tl-dot {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-family: var(--serif);
  font-size: 28px;
  color: var(--red);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-card);
}

.tl-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(177, 27, 31, 0.3);
  animation: spin 20s linear infinite;
}

.tl-step:hover .tl-dot {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.tl-card {
      padding: 11px 24px;
    border-radius: var(--radius);
    /* background: var(--white); */
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    background: linear-gradient(117deg, var(--ink) 0%, #1A1C22 28%, var(--red-deep) 96%);
}

.tl-card .stage {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-weight: 600;
}

.tl-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: white;
}

.tl-card .date {
  font-family: var(--serif);
  font-style: italic;
  color: white;
  font-size: 14px;
}

/* ============================================================
   JURY QUOTE
   ============================================================ */
.jury {
  position: relative;
  text-align: center;
  padding: 100px 0;
}

.jury-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--ink) 0%, #1A1C22 60%, var(--red-deep) 130%);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.jury-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: 1400px 100%;
  background-position: right;
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.jury-inner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  bottom: -140px;
  right: -80px;
  background: rgba(177, 27, 31, 0.45);
  pointer-events: none;
}

.jury-mark {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--red-soft);
  opacity: 0.6;
  margin-bottom: 24px;
}

.jury-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
}

.jury-quote em {
  color: var(--red-soft);
  font-style: italic;
  font-weight: 500;
}

.jury-foot {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.jury-foot .bar {
  width: 32px;
  height: 1px;
  background: var(--red-soft);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(177, 27, 31, 0.3);
  box-shadow: 0 24px 50px -20px rgba(14, 15, 18, 0.14);
}

.benefit-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--red-tint);
  border: 1px solid rgba(177, 27, 31, 0.18);
  color: var(--red);
  margin-bottom: 22px;
  transition: all 0.4s var(--ease);
}

.benefit-card:hover .ico {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08);
  border-color: var(--red);
}

.benefit-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}

.benefit-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ============================================================
   PROCESS & FEE STRUCTURE — combined section
   ============================================================ */
.pf-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pf-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 27, 31, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── col-6 / col-6 split ── */
.pf-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 56px;
  margin-top: 60px;
  align-items: start;
}

.pf-vr {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent 0%, var(--line-strong) 15%, var(--line-strong) 85%, transparent 100%);
  margin-top: 8px;
}

/* Column label (eyebrow with icon) */
.pf-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.pf-col-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.pf-col-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 420px;
}

/* ── Vertical steps ── */
.pf-steps {
  display: flex;
  flex-direction: column;
}

.pf-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pf-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pf-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--red);
  box-shadow: var(--shadow-card);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  flex-shrink: 0;
}

.pf-step:hover .pf-step-num {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.pf-step-line {
  width: 1px;
  flex: 1;
  min-height: 32px;
  margin: 6px 0;
  background: linear-gradient(180deg, var(--red) 0%, rgba(177,27,31,0.15) 100%);
  opacity: 0.35;
}

.pf-step-body {
  padding: 14px 22px;
  margin-bottom: 44px;
  border-radius: var(--radius);
  background: linear-gradient(117deg, var(--ink) 0%, #1A1C22 28%, var(--red-deep) 96%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  flex: 1;
}

.pf-step-stage {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 5px;
}

.pf-step-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 5px;
}

.pf-step-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Registration fee banner ── */
.pf-reg-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--red-tint);
  border: 1px solid rgba(177, 27, 31, 0.2);
}

.pf-reg-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-deep);
}

.pf-reg-value .pf-price {
  color: var(--red-deep);
}

/* ── Fee table ── */
.pf-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.pf-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--sans);
}

.pf-table thead tr {
  background: linear-gradient(135deg, var(--ink) 0%, #1A1C22 100%);
}

.pf-table thead th {
  padding: 30px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.pf-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}

.pf-table tbody tr:last-child {
  border-bottom: none;
}

.pf-table tbody tr:not(.pf-tr-featured):hover {
  background: var(--paper);
}

.pf-table td {
  padding: 17px 24px;
  font-size: 16px;
  color: var(--ink-2);
  vertical-align: middle;
}

.pf-td-entries {
  font-weight: 500;
  color: var(--ink);
}

/* Three-column variant (MSME / Large Industries side by side) */
.pf-table-3col th,
.pf-table-3col td {
  padding: 16px 14px;
}

.pf-table-3col th:first-child,
.pf-table-3col td:first-child {
  padding-left: 20px;
}

.pf-table-3col thead th {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.pf-table-3col td {
  font-size: 14px;
}

.pf-table-3col .pf-price {
  font-size: 16px;
  white-space: nowrap;
}

/* Featured row — three entries */
.pf-tr-featured {
  background: linear-gradient(90deg, rgba(177,27,31,0.055) 0%, rgba(177,27,31,0.02) 100%);
  border-left: 3px solid var(--red) !important;
  border-bottom: 1px solid rgba(177,27,31,0.15) !important;
}

.pf-tr-featured:hover {
  background: linear-gradient(90deg, rgba(177,27,31,0.09) 0%, rgba(177,27,31,0.04) 100%) !important;
}

.pf-tr-featured .pf-td-entries {
  color: var(--red-deep);
}

.pf-badge {
  display: inline-block;
  margin-left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  border: 1px solid rgba(177,27,31,0.2);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}

.pf-price {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-right: 6px;
}

.pf-tr-featured .pf-price {
  color: var(--red-deep);
}

.pf-per {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-right: 6px;
}

.pf-gst {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.pf-table-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pf-table-note em {
  color: var(--red);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .pf-split {
    grid-template-columns: 1fr;
    gap: 52px 0;
  }
  .pf-vr {
    display: none;
  }
  .pf-col-lead {
    max-width: 100%;
  }
}

/* ============================================================
   FEES
   ============================================================ */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fee-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-card);
}

.fee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(177, 27, 31, 0.3);
  box-shadow: 0 30px 60px -20px rgba(14, 15, 18, 0.16);
}

.fee-card.featured {
  background:
    linear-gradient(170deg, var(--ink) 0%, #1A1C22 80%);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.fee-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: cover;
  background-position: right;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.fee-tag {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.fee-card .entries {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.fee-card.featured .entries {
  color: var(--red-soft);
}

.fee-card .price {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.fee-card.featured .price {
  color: var(--white);
}

.fee-card .price .cur {
  font-size: 18px;
  color: var(--red);
  margin-right: 4px;
  vertical-align: top;
  line-height: 1.4;
}

.fee-card.featured .price .cur {
  color: var(--red-soft);
}

.fee-card .gst {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.fee-card.featured .gst {
  color: rgba(255, 255, 255, 0.55);
}

.fee-card .desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 28px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.fee-card.featured .desc {
  color: rgba(255, 255, 255, 0.75);
}

.fee-card .savings {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.fee-card.featured .savings {
  color: var(--red-soft);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.fee-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.fee-note em {
  color: var(--red);
  font-family: var(--serif);
  font-size: 15px;
}

/* Fee table */
.fee-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--sans);
}

.fee-table thead tr {
  background: linear-gradient(170deg, var(--ink) 0%, #1A1C22 100%);
  color: var(--white);
}

.fee-table thead th {
  padding: 18px 28px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fee-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.fee-table tbody tr:last-child {
  border-bottom: none;
}

.fee-table tbody tr:hover {
  background: #fafafa;
}

.fee-table tbody tr.ft-featured {
  background: #fff8f8;
  border-left: 3px solid var(--red);
}

.fee-table tbody tr.ft-featured:hover {
  background: #fff0f0;
}

.fee-table tbody td {
  padding: 22px 28px;
  vertical-align: middle;
}

.ft-entries {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ft-badge {
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
}

.ft-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ft-featured .ft-price {
  color: var(--red);
}

.ft-per {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--sans);
  margin-left: 4px;
}

.ft-gst {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

.ft-note {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 380px;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  text-align: left;
  color: var(--ink);
  transition: color 0.3s;
}

.acc-trigger:hover {
  color: var(--red);
}

.acc-trigger .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--red);
  font-size: 16px;
  width: 40px;
  flex-shrink: 0;
}

.acc-trigger .title {
  flex: 1;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.acc-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
  color: var(--ink);
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transition: 0.4s var(--ease);
}

.acc-icon::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.acc-icon::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.acc-item.open .acc-icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.acc-item.open .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.acc-content-inner {
  padding: 0 8px 32px 56px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* ============================================================
   ABOUT CII
   ============================================================ */
.cii {
  position: relative;
  overflow: hidden;
}

.cii::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 15, 18, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  opacity: 0.4;
}

.cii-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.cii-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 18px;
}

.cii-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.cii-stats .cell {
  padding: 24px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease);
}

.cii-stats .cell:hover {
  border-color: rgba(177, 27, 31, 0.3);
  transform: translateY(-3px);
}

.cii-stats .cell .n {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}

.cii-stats .cell .l {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cii-network {
  position: relative;
  aspect-ratio: 1 / 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  padding-top: 32px;
  background: #ffffff;
  color: rgba(0, 0, 0, 0.65);
  /* margin-top: 40px;
  border-top: 4px solid var(--red); */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 1;
}

.footer-cta {
  position: relative;
  margin-bottom: 32px;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, var(--red-deep) 130%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  color: var(--white);
  box-shadow: 0 30px 80px -30px rgba(177, 27, 31, 0.6);
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg,#7A0F12 0%,#B11B1F 18%,#C8161A 35%,#B11B1F 52%,#C8161A 68%,#B11B1F 84%,#7A0F12 100%);
  background-size: 1400px 100%;
  background-position: right center;
  opacity: 0.45;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.footer-cta .eyebrow {
  color: var(--white);
}

.footer-cta .eyebrow::before,
.footer-cta .eyebrow.center::after {
  background: var(--white);
}

.footer-cta h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  margin: 0 0 14px;
  position: relative;
  color: var(--white);
}

.footer-cta h2 em {
  color: var(--white);
  font-style: italic;
}

.footer-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
}

.footer-cta .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}

.footer-cta .actions .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
}

.footer-cta .actions .btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}

.footer-cta .actions .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.footer-cta .actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin: 0 0 12px;
}

.footer-col .brand-text strong {
  color: var(--ink);
}

.footer-col .brand-text small {
  color: rgba(0, 0, 0, 0.5);
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.newsletter {
  display: flex;
  margin-top: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.newsletter input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.newsletter input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter button {
  padding: 0 22px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.newsletter button:hover {
  background: var(--red-soft);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.55);
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 11px;
     color: rgb(2 2 2 / 90%);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-enseur {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-enseur a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.enseur-logo {
  height: 16px;
  width: auto;
  filter: brightness(0);
  vertical-align: middle;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -10px rgba(177, 27, 31, 0.7);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 90;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: var(--red-deep);
  transform: translateY(-4px);
}

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

.reveal[data-delay="5"] {
  transition-delay: 0.40s;
}

.reveal[data-delay="6"] {
  transition-delay: 0.48s;
}

.reveal[data-delay="7"] {
  transition-delay: 0.56s;
}

.reveal[data-delay="8"] {
  transition-delay: 0.64s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .hero-grid,
  .about-grid,
  .cii-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-badge {
    justify-self: start;
    width: 180px;
    height: 180px;
  }

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

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

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

  .footer-cta {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .footer-cta .actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .duo,
  .elig-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .cat-grid,
  .benefit-grid,
  .fee-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-base {
    flex-direction: column;
    text-align: center;
  }

  .jury-inner {
    padding: 60px 28px;
  }

  .about-visual .badge-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
  }

  .footer-cta {
    padding: 36px 28px;
    gap: 32px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  /* mobile nav drawer */
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px -10px rgba(14, 15, 18, 0.1);
  }

  .nav-links.mobile-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink);
  }

  .nav-links.mobile-open a:hover {
    color: var(--red);
  }

  .nav-links.mobile-open a:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   VISION SPREAD — magazine-style manifesto + numbered panels
   ============================================================ */
.vision-spread {
  position: relative;
}

.vision-manifesto {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.vision-manifesto .lead-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

.vision-manifesto .lead-quote em {
  color: var(--red);
  font-style: italic;
}

.vision-manifesto .signature {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

.vision-manifesto .signature .ruled {
  width: 56px;
  height: 1px;
  background: var(--red);
}

.vision-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

.vision-pair::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgb(255 255 255 / 66%);
  z-index: 0;
}

.vision-pair::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 8px 4px;
  color: var(--red);
  font-size: 18px;
  z-index: 1;
}

.vision-panel {
  position: relative;
  padding: 56px 48px 48px;
  background: transparent;
  z-index: 1;
}

.vision-panel .marker {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 0.8;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.vision-panel .marker .slash {
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #f90200;
  text-transform: uppercase;
  /* font-family: var(--sans); */
  font-style: normal;
  font-weight: 600;
  align-self: center;
}

.vision-panel h3 {
  font-size: clamp(28px, 2vw, 38px);
  margin-bottom: 22px;
  text-wrap: balance;
}

.vision-panel h3 em {
  color: var(--red);
  font-style: italic;
}

.vision-panel .body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 28px;
}

.vision-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vision-pillars .chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.vision-pillars .chip::before {
  content: "·";
  color: var(--red);
  margin-right: 6px;
  font-size: 16px;
  vertical-align: middle;
}

.vision-pillars .chip:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ============================================================
   BENEFITS BENTO — asymmetric premium layout
   ============================================================ */
.benefits-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

.b-card {
  position: relative;
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.b-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 27, 31, 0.3);
  box-shadow: 0 28px 50px -22px rgba(14, 15, 18, 0.15);
}

.b-card .b-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.b-card .b-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--red-tint);
  border: 1px solid rgba(177, 27, 31, 0.18);
  color: var(--red);
  margin-bottom: 18px;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}

.b-card:hover .b-ico {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.b-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  text-wrap: balance;
}

.b-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Featured benefit: large image-backed hero card */
.b-feature {
  grid-column: span 6;
  grid-row: span 2;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  min-height: 380px;
}

.b-feature .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.b-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 15, 18, 0.15) 0%, rgba(14, 15, 18, 0.8) 60%, rgba(14, 15, 18, 0.95) 100%),
    linear-gradient(135deg, rgba(177, 27, 31, 0.4) 0%, transparent 50%);
  z-index: -1;
}

.b-feature .content {
  margin-top: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b-feature .tag {
  display: inline-flex;
  align-self: flex-start;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: var(--red);
  border-radius: 999px;
  color: var(--white);
  margin-bottom: 8px;
}

.b-feature .tag::before {
  content: "★";
  font-size: 11px;
}

.b-feature h4 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  color: var(--white);
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}

.b-feature p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 6px 0 8px;
  max-width: 480px;
}

.b-feature .feature-meta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.b-feature .feature-meta .col .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.b-feature .feature-meta .col .val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  font-style: italic;
}

.b-feature:hover {
  transform: none;
}

/* Stat-style card with big number */
.b-stat {
  grid-column: span 3;
  grid-row: span 1;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.b-stat:hover {
  border-color: var(--red);
}

.b-stat .big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--red-soft);
  margin-bottom: 6px;
  font-weight: 500;
}

.b-stat h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.b-stat p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.b-tall {
  grid-column: span 3;
  grid-row: span 2;
}

.b-wide {
  grid-column: span 6;
}

.b-med {
  grid-column: span 3;
}

.b-sm {
  grid-column: span 3;
}

/* ============================================================
   BENEFITS BENTO — section-image text override fixes
   The section uses a dark overlay; cards are white/dark panels
   so we must restore correct text colours inside each card type.
   ============================================================ */
section.section-image .b-card:not(.b-stat):not(.b-feature) p {
  color: var(--ink-3);
}

section.section-image .b-card:not(.b-stat):not(.b-feature) h4 {
  color: var(--ink);
}

section.section-image .b-stat p {
  color: rgba(255, 255, 255, 0.65);
}

section.section-image .b-stat h4 {
  color: var(--white);
}

section.section-image .b-feature p {
  color: rgba(255, 255, 255, 0.82);
}

section.section-image .b-feature h4 {
  color: var(--white);
}

/* Bento grid spacing in this section */
.benefits-bento {
  margin-top: 56px;
}

/* ============================================================
   BENEFITS SLIDER
   ============================================================ */
.bs-wrap {
  position: relative;
  padding: 0 60px;
  margin-top: 56px;
}

.bs-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.bs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.bs-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.bs-card {
  position: relative;
  border-radius: var(--radius);
  height: 230px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 24px -8px rgba(14, 15, 18, 0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  isolation: isolate;
}

/* Dark gradient overlay */
.bs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 15, 18, 0.08) 0%,
    rgba(14, 15, 18, 0.52) 42%,
    rgba(14, 15, 18, 0.93) 100%
  );
  z-index: 0;
  transition: opacity 0.45s var(--ease);
}

/* Red accent bar — slides in from left on hover */
.bs-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
  z-index: 3;
}

.bs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -16px rgba(14, 15, 18, 0.38);
}

.bs-card:hover::after {
  transform: scaleX(1);
}

/* Number badge — top left */
.bs-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  z-index: 2;
}

/* Icon badge — top right, frosted glass */
.bs-ico {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  flex-shrink: 0;
}

.bs-card:hover .bs-ico {
  background: var(--red);
  border-color: var(--red);
}

/* Content block anchored to bottom */
.bs-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  line-height: 1.25;
  text-wrap: balance;
}

.bs-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}

.bs-arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.bs-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.bs-prev { left: 0; }
.bs-next { right: 0; }

.bs-dots-row {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.bs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(177, 27, 31, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}

.bs-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .bs-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .bs-wrap {
    padding: 0 48px;
  }
  .bs-slide {
    flex: 0 0 100%;
  }
  .bs-card {
    height: 240px;
  }
}

/* ============================================================
   TERMS SPLIT — sticky intro + accordion
   ============================================================ */
.terms-split {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.terms-aside {
  position: sticky;
  top: 100px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.terms-aside .eyebrow {
  margin-bottom: 18px;
}

.terms-aside h2 {
  font-size: clamp(28px, 2.4vw, 38px);
  margin-bottom: 18px;
}

.terms-aside p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 0 24px;
}

.terms-aside .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.terms-aside .meta-row strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
}

.terms-aside .pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.terms-aside .pdf-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
}

.terms-list .accordion {
  margin: 0;
  max-width: none;
  border-top: 0;
}

.terms-list .acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.terms-list .acc-item:hover {
  border-color: rgba(177, 27, 31, 0.25);
}

.terms-list .acc-item.open {
  border-color: rgba(177, 27, 31, 0.45);
  box-shadow: 0 18px 40px -20px rgba(14, 15, 18, 0.15);
}

.terms-list .acc-trigger {
  padding: 24px 28px;
  gap: 20px;
}

.terms-list .acc-trigger .ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--red-tint);
  color: var(--red);
  border: 1px solid rgba(177, 27, 31, 0.18);
  transition: all 0.3s var(--ease);
}

.terms-list .acc-item.open .ico {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.terms-list .acc-trigger .title-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-list .acc-trigger .title-stack .num {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.terms-list .acc-trigger .title-stack .title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.terms-list .acc-content-inner {
  padding: 0 28px 26px 92px;
  font-size: 15.5px;
  color: var(--ink-3);
}

/* ============================================================
   RESPONSIVE (new sections)
   ============================================================ */
@media (max-width: 1024px) {
  .vision-manifesto {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vision-pair {
    grid-template-columns: 1fr;
  }

  .vision-pair::before {
    display: none;
  }

  .vision-pair::after {
    display: none;
  }

  .vision-panel {
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-panel:last-child {
    border-bottom: 0;
  }

  .benefits-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
  }

  .b-feature {
    grid-column: span 6;
    grid-row: auto;
    min-height: 360px;
  }

  .b-stat,
  .b-tall,
  .b-wide,
  .b-med,
  .b-sm {
    grid-column: span 3;
    grid-row: auto;
  }

  .terms-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .terms-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .benefits-bento {
    grid-template-columns: 1fr;
  }

  .b-feature,
  .b-stat,
  .b-tall,
  .b-wide,
  .b-med,
  .b-sm {
    grid-column: span 1;
  }

  .b-feature .content {
    padding: 28px;
  }

  .vision-panel {
    padding: 28px 0;
  }

  .vision-panel .marker {
    font-size: 72px;
  }

  .terms-list .acc-trigger {
    padding: 18px 20px;
    gap: 14px;
  }

  .terms-list .acc-content-inner {
    padding: 0 20px 22px 78px;
  }
}

/* ============================================================
   EXTRA SMALL (< 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-text {
    display: none;
  }

  .nav-cta .btn-primary {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats .item .num {
    font-size: 34px;
  }

  .footer-cta {
    padding: 28px 20px;
    gap: 24px;
  }

  .footer-cta h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .footer-cta .actions {
    flex-direction: column;
  }

  .footer-cta .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fee-card {
    padding: 28px 22px;
  }

  .fee-card .price {
    font-size: 36px;
  }

  .jury-inner {
    padding: 40px 20px;
  }

  .jury-mark {
    font-size: 80px;
  }

  .acc-trigger .title {
    font-size: 18px;
  }

  .terms-list .acc-trigger .title-stack .title {
    font-size: 16px;
  }

  .terms-list .acc-content-inner {
    padding: 0 16px 20px 16px;
  }

  .tl-dot {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .tl-card h3 {
    font-size: 20px;
  }

  .cii-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
  }
}

/* ============================================================
   INNER-PAGE HERO  (login · registration · categories · etc.)
   ============================================================ */
.reg-hero {
  position: relative;
  padding: 130px 0 64px;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ink);
}

.reg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 15, 18, 0.88) 0%, rgba(14, 15, 18, 0.68) 55%, rgba(177, 27, 31, 0.38) 100%);
  z-index: 0;
}

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

.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.reg-hero h1,
.reg-hero h2 {
  color: var(--white) !important;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 14px !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  line-height: 1.05;
}

.reg-hero p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
  max-width: 560px;
}

/* ============================================================
   REG WRAP — page content area
   ============================================================ */
.reg-wrap {
  padding: 60px 0 80px;
  background: #fefefe;
  min-height: 50vh;
}

/* ============================================================
   REG CARD — form container
   ============================================================ */
.reg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Dark header strip inside card */
.reg-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--ink) 0%, #1A1C22 58%, var(--red-deep) 130%);
  color: var(--white);
  border-bottom: none;
}

.reg-section-header h5 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.reg-sec-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card body */
.reg-section-body {
  padding: 32px 28px;
}

/* Submit / actions bar */
.reg-submit-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    flex-wrap: wrap;
}

.reg-note {
    margin: 0;
}

.reg-buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Divider */
.reg-divider {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* Form labels */
.reg-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

/* Required asterisk */
.req {
  color: var(--red);
}

/* Note / hint text */
.reg-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.reg-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.reg-note a:hover {
  opacity: 0.75;
}

/* ============================================================
   SUBMIT BUTTON
   ============================================================ */
.btn-reg-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 28px -8px rgba(177, 27, 31, 0.55);
  font-family: var(--sans);
  line-height: 1.4;
}

.btn-reg-submit:hover:not(:disabled) {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(177, 27, 31, 0.7);
  color: var(--white) !important;
}

.btn-reg-submit:disabled,
.btn-reg-submit[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   PASSWORD FIELD
   ============================================================ */
.pw-wrap {
  position: relative;
}

.pw-wrap .form-control {
  padding-right: 50px;
}

.toggle-pw {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-2);
  cursor: pointer;
  padding: 4px;
  font-size: 15px;
  transition: color 0.2s;
  line-height: 1;
}

.toggle-pw:hover {
  color: var(--red);
}

/* ============================================================
   FORM CONTROLS — override Bootstrap to match design
   ============================================================ */
.reg-card .form-control,
.reg-card .form-select {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  line-height: 1.5;
}

.reg-card .form-control:focus,
.reg-card .form-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(177, 27, 31, 0.10);
}

.reg-card .form-control.error,
.reg-card .form-control.is-invalid,
.reg-card .form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: none;
}

.reg-card .form-control::placeholder {
  color: var(--muted-2);
}

.reg-card textarea.form-control {
  resize: vertical;
  min-height: 96px;
}

/* Alert overrides */
.reg-card .alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}

.reg-card .alert-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.reg-card .alert-danger {
  background: var(--red-tint);
  border-color: rgba(177, 27, 31, 0.22);
  color: var(--red-deep);
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

/* ============================================================
   POLICY / LEGAL PAGES
   ============================================================ */
.policy-body {
  padding: 60px 0 80px;
  background: var(--paper);
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 52px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-intro {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-3);
  margin-bottom: 12px;
  padding-bottom: 0;
}

.policy-intro:last-of-type {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-subsection-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  margin: 20px 0 10px;
}

.policy-text {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-3);
  margin: 0 0 12px;
}

.policy-list {
  padding-left: 22px;
  margin: 0 0 16px;
}

.policy-list li {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-3);
  margin-bottom: 4px;
}

.policy-link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(177, 27, 31, 0.35);
  transition: opacity 0.2s;
}

.policy-link:hover {
  opacity: 0.75;
}

.policy-contact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-top: 12px;
}

.policy-contact-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 6px;
}

.policy-consent-box {
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink) 0%, #1A1C22 60%, var(--red-deep) 130%);
  color: var(--white);
}

.policy-consent-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
}

.policy-consent-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.policy-card h2 {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  margin: 40px 0 14px;
}

.policy-card h3 {
  font-size: 18px;
  color: var(--red);
  margin: 28px 0 12px;
}

.policy-card p,
.policy-card li {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--ink-3);
}

.policy-card ul,
.policy-card ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.policy-card a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(177, 27, 31, 0.3);
}

/* ============================================================
   THANK-YOU / SUCCESS STATE
   ============================================================ */
.reg-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.30);
  font-size: 36px;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 860px) {
  .policy-card {
    padding: 36px 28px;
  }
}

@media (max-width: 720px) {
  .reg-hero {
    padding: 110px 0 50px;
  }

  .reg-section-body {
    padding: 24px 20px;
  }

  .reg-submit-wrap {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .reg-submit-wrap .btn-reg-submit {
    width: 100%;
    justify-content: center;
  }

  .reg-section-header {
    padding: 18px 20px;
  }

  .policy-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .reg-wrap {
    padding: 40px 0 60px;
  }

  .reg-section-body {
    padding: 20px 16px;
  }

  .reg-submit-wrap {
    padding: 14px 16px;
  }
}