/* =========================================================
   TURACOZ — Mastering AI in Scientific Publishing
   Editorial-scientific landing page
   ========================================================= */

:root {
  /* Brand colors (from Turacoz brand book) */
  --ink: #0A0203;
  --ink-soft: #1c1815;
  --paper: #F6F2EA;
  --paper-warm: #EFEAE0;
  --bone: #E5DFD3;
  --muted: #8A857B;
  --rule: rgba(10, 2, 3, 0.12);

  --green-light: #98CA3C;
  --green: #65BC46;
  --green-deep: #3EA151;
  --teal: #3E8E8D;
  --blue: #3A57A7;

  --gradient: linear-gradient(110deg, #98CA3C 0%, #3EA151 28%, #3E8E8D 58%, #3A57A7 100%);
  --gradient-soft: linear-gradient(110deg, rgba(152,202,60,0.18), rgba(62,142,141,0.18), rgba(58,87,167,0.20));

  /* Fonts */
  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-body: "Montserrat", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
em { font-family: var(--f-display); font-style: italic; font-weight: 400; }

::selection { background: var(--ink); color: var(--paper); }

/* Screen-reader-only utility: visible to Google + assistive tech, invisible visually */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); width: 100%; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: rgba(246, 242, 234, 0.78);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__brand img { height: 36px; width: auto; }
.nav__links {
  display: flex; gap: 28px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right 0.4s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.nav__cta:hover { background: var(--ink-soft); }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 8px 8px 24px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px -8px rgba(10, 2, 3, 0.4);
}
.btn--primary .btn__price {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}
.btn--primary .btn__price s {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-size: 11.5px;
  opacity: 0.75;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 14px 36px -10px rgba(10, 2, 3, 0.5);
}
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ghost:hover svg { transform: translateY(2px); }

.btn--lg { padding: 10px 10px 10px 28px; font-size: 15px; }
.btn--lg svg { width: 18px; height: 18px; }

.btn--sm { padding: 10px 18px; font-size: 13px; gap: 8px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(60px, 10vw, 120px) 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
}
.hero__mesh {
  position: absolute;
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  background:
    radial-gradient(46% 38% at 12% 18%, rgba(152, 202, 60, 0.30), transparent 70%),
    radial-gradient(38% 32% at 88% 26%, rgba(62, 142, 141, 0.28), transparent 70%),
    radial-gradient(44% 38% at 60% 90%, rgba(58, 87, 167, 0.24), transparent 70%);
  filter: blur(20px);
  animation: meshFloat 22s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%, -3%, 0) scale(1.06); }
}
.hero__grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: rgba(10, 2, 3, 0.10);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.hero__meta {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(101, 188, 70, 0.18);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(101, 188, 70, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(101, 188, 70, 0.05); }
}
.hero__date {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 12.5vw, 196px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroLineIn 1.1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.1s; }
.hero__line:nth-child(2) { animation-delay: 0.28s; }
.hero__line:nth-child(3) { animation-delay: 0.46s; }
.hero__line em { font-style: italic; font-weight: 400; }
.hero__line--accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-family: var(--f-display);
}
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__rule {
  display: flex; align-items: center;
  gap: 18px;
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 40px);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) forwards 0.7s;
}
.hero__rule-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--rule), transparent);
}
.hero__rule-icon { display: inline-flex; }
.hero__rule-icon svg { width: 60px; height: 30px; }

@keyframes fadeIn { to { opacity: 1; } }

.hero__lede {
  max-width: 640px;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: clamp(32px, 4vw, 48px);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) forwards 0.85s;
}
.hero__lede em { color: var(--ink); font-weight: 400; }
.hero__highlight {
  color: var(--ink);
  font-weight: 600;
}

.hero__cta {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 7vw, 96px);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) forwards 1s;
}

.hero__factrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 56px);
  padding-top: 32px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) forwards 1.15s;
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.fact__num span {
  font-family: var(--f-body);
  font-size: 0.34em;
  font-weight: 500;
  margin-left: 6px;
  color: var(--muted);
  vertical-align: top;
}
.fact__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero__factrow { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

.hero__scroll {
  position: absolute;
  bottom: 24px; right: var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) forwards 1.4s;
}
.hero__scroll svg { width: 10px; height: 20px; animation: scrollBob 2s ease-in-out infinite; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(4px); opacity: 0.5; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
  color: var(--paper);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 152s linear infinite;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee__track em {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-family: var(--f-display);
  text-transform: none;
  font-size: 1.4em;
  letter-spacing: -0.01em;
  font-style: italic;
}
.dotsep { color: rgba(246, 242, 234, 0.35); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }

.section-head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head__num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.section-head__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.section-head__title em { font-style: italic; }
.section-head__lede {
  margin-top: 24px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}
.section-head--left .section-head__lede { margin-left: 0; }

/* =========================================================
   BRIEF / PILLARS
   ========================================================= */
.brief { background: var(--paper); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: clamp(28px, 3.5vw, 48px);
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.pillar:hover { background: var(--paper-warm); }
.pillar__no {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 28px;
}
.pillar__title {
  font-family: var(--f-body);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pillar__title em {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pillar--green .pillar__title em { color: var(--green-deep); }
.pillar--teal .pillar__title em { color: var(--teal); }
.pillar--blue .pillar__title em { color: var(--blue); }

.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.pillar__list { list-style: none; }
.pillar__list li {
  position: relative;
  padding: 14px 0 14px 24px;
  font-size: 13.5px;
  line-height: 1.5;
  border-top: 1px solid var(--rule);
}
.pillar__list li::before {
  content: "";
  position: absolute; left: 0; top: 22px;
  width: 12px; height: 1px;
  background: var(--ink);
}
.pillar--green .pillar__list li::before { background: var(--green-deep); }
.pillar--teal .pillar__list li::before { background: var(--teal); }
.pillar--blue .pillar__list li::before { background: var(--blue); }

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

/* =========================================================
   CURRICULUM
   ========================================================= */
.curriculum { background: var(--paper); }

/* =========================================================
   BLOCKER  (Why most research never gets published)
   ========================================================= */
.blocker { background: var(--paper-warm); position: relative; overflow: hidden; }
.blocker::before {
  content: "";
  position: absolute;
  right: -160px; top: 12%;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(58, 87, 167, 0.10), transparent 70%);
  pointer-events: none;
}
.blocker__list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.blocker__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.4s var(--ease-out);
}
.blocker__list li:hover { padding-left: 12px; }
.blocker__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--muted);
  line-height: 1;
}
.blocker__text {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.blocker__text em { font-style: italic; color: var(--blue); }
.blocker__bridge {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.blocker__bridge span {
  display: inline-block;
  margin-left: 6px;
  animation: scrollBob 2s ease-in-out infinite;
}
@media (max-width: 720px) {
  .blocker__list li { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; }
  .blocker__num { font-size: 22px; }
}

.syllabus { list-style: none; }
.class {
  border-top: 1px solid var(--rule);
}
.class:last-child { border-bottom: 1px solid var(--rule); }

.class__head {
  display: grid;
  grid-template-columns: 80px 220px 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: padding 0.4s var(--ease-out);
}
.class__head:hover { padding-left: 12px; }
.class__num {
  font-family: var(--f-display);
  font-size: 44px;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.class__meta { display: flex; flex-direction: column; gap: 4px; }
.class__date {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.class__dur {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}
.class__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.class__toggle {
  justify-self: end;
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.class__toggle::before, .class__toggle::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out);
}
.class__toggle::before { width: 11px; height: 1px; }
.class__toggle::after { width: 1px; height: 11px; }

.class__head[aria-expanded="true"] .class__toggle {
  background: var(--ink);
  border-color: var(--ink);
}
.class__head[aria-expanded="true"] .class__toggle::before { background: var(--paper); }
.class__head[aria-expanded="true"] .class__toggle::after { background: var(--paper); transform: translate(-50%, -50%) rotate(90deg); }

.class__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.class__body.is-open { max-height: 600px; }
.class__body ul {
  list-style: none;
  padding: 8px 0 36px 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  max-width: 1000px;
}
.class__body li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.class__body li b {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  padding-top: 3px;
}

@media (max-width: 880px) {
  .class__head { grid-template-columns: 50px 1fr 32px; gap: 16px; padding: 24px 0; }
  .class__meta { display: none; }
  .class__num { font-size: 32px; }
  .class__title { font-size: 18px; }
  .class__body ul { grid-template-columns: 1fr; padding: 0 0 28px 66px; gap: 12px; }
}

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pullquote {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(62, 142, 141, 0.14), transparent 70%);
  pointer-events: none;
}
.pullquote .container {
  max-width: clamp(800px, 80vw, 1500px);
}
.pullquote figure {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
}
.pullquote blockquote em {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.open-q {
  position: absolute;
  font-family: var(--f-display);
  font-size: 4em;
  left: 50%;
  top: -0.55em;
  transform: translateX(-50%);
  color: rgba(246, 242, 234, 0.14);
  line-height: 1;
  pointer-events: none;
}
.pullquote figcaption {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.55);
}

/* =========================================================
   FACULTY
   ========================================================= */
.faculty { background: var(--paper-warm); position: relative; overflow: hidden; }
.faculty::before {
  content: "";
  position: absolute;
  left: -180px; top: 22%;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(101, 188, 70, 0.12), transparent 70%);
  pointer-events: none;
}

.faculty__stage {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}

/* ---- Featured panel (left) ---- */
.faculty__featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
}
.faculty__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 360px;
}
.faculty__portrait-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.18;
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.faculty__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease-out), transform 1s var(--ease-out);
  z-index: 1;
}
.faculty__photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.faculty__caption {
  position: relative;
  min-height: 280px;
}
.faculty__caption-inner { position: relative; }
.faculty__role {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.faculty__role.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.faculty__role-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding-bottom: 6px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.faculty__name {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 14px;
}
.faculty__name em { font-style: italic; }
.faculty__creds {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 20px;
}
.faculty__bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 420px;
}

/* ---- Selector list (right) ---- */
.faculty__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faculty__list li { border-bottom: 1px solid var(--rule); }
.faculty__btn {
  position: relative;
  display: grid;
  grid-template-columns: 4px 36px 56px 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 18px 14px 18px 0;
  text-align: left;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.faculty__btn:hover { padding-left: 8px; background: rgba(10, 2, 3, 0.02); }
.faculty__btn-bar {
  width: 3px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: height 0.45s var(--ease-out);
}
.faculty__btn.is-active .faculty__btn-bar { height: 48px; }
.faculty__btn-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
  transition: color 0.4s var(--ease-out);
}
.faculty__btn.is-active .faculty__btn-num { color: var(--ink); }
.faculty__btn-thumb {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-warm);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.faculty__btn-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.45);
  transition: filter 0.4s var(--ease-out);
}
.faculty__btn.is-active .faculty__btn-thumb img { filter: grayscale(0); }
.faculty__btn.is-active .faculty__btn-thumb { transform: scale(1.05); }
.faculty__btn-text { display: flex; flex-direction: column; gap: 2px; }
.faculty__btn-name {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.faculty__btn-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .faculty__stage { grid-template-columns: 1fr; gap: 48px; }
  .faculty__featured { grid-template-columns: 1fr; gap: 32px; }
  .faculty__portrait { max-width: 260px; margin: 0 auto; }
  .faculty__caption { min-height: 220px; text-align: center; }
  .faculty__role-tag { margin-left: auto; margin-right: auto; }
  .faculty__bio { margin-left: auto; margin-right: auto; }
  .faculty__btn { grid-template-columns: 3px 28px 48px 1fr; gap: 14px; padding: 14px 10px 14px 0; }
  .faculty__btn-thumb { width: 48px; height: 48px; }
  .faculty__btn-num { font-size: 18px; }
  .faculty__btn-name { font-size: 13.5px; }
}

/* =========================================================
   WHO IT'S FOR
   ========================================================= */
.who { background: var(--paper); }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.who__list { list-style: none; }
.who__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: padding-left 0.4s var(--ease-out), color 0.3s var(--ease-out);
}
.who__list li:hover { padding-left: 12px; }
.who__list li:last-child { border-bottom: 1px solid var(--rule); }
.who__list li span {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .who__grid { grid-template-columns: 1fr; }
  .who__list li { grid-template-columns: 40px 1fr; gap: 14px; }
}

/* =========================================================
   INSIDE
   ========================================================= */
.inside { background: var(--paper-warm); }
.inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.inside__card {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  gap: 16px;
  transition: background 0.4s var(--ease-out);
  min-height: 220px;
}
.inside__card:hover { background: var(--paper-warm); }
.inside__icon {
  width: 36px; height: 36px;
  color: var(--ink);
  margin-bottom: 8px;
}
.inside__icon svg { width: 100%; height: 100%; }
.inside__card h3 {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.inside__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .inside__grid { grid-template-columns: 1fr; }
}

/* ---- Featured inside card (internship) ---- */
.inside__card--feature {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  row-gap: 8px;
  padding: clamp(32px, 4vw, 48px);
  min-height: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.inside__card--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(62, 142, 141, 0.25), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(58, 87, 167, 0.22), transparent 60%);
  z-index: -1;
}
.inside__card--feature:hover { background: var(--ink); }
.inside__feature-mark {
  grid-row: 1 / span 3;
  width: 52px; height: 52px;
  align-self: start;
  color: var(--green-light);
}
.inside__feature-mark svg { width: 100%; height: 100%; }
.inside__feature-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
}
.inside__feature-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.inside__feature-title em {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.inside__card--feature .inside__feature-copy {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
  color: rgba(246, 242, 234, 0.78);
  max-width: 720px;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .inside__card--feature { grid-template-columns: 1fr; }
  .inside__feature-mark { grid-row: auto; }
}

/* =========================================================
   CLOSING TAGLINE
   ========================================================= */
.closing-line {
  background: var(--paper);
  padding: clamp(80px, 12vw, 140px) 0 0;
  text-align: center;
}
.closing-line p {
  font-family: var(--f-display);
  font-size: clamp(28px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}
.closing-line em {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}


/* =========================================================
   ABOUT TURACOZ
   ========================================================= */
.about { background: var(--paper); position: relative; overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  right: -200px; top: 30%;
  width: 600px; height: 300px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  position: relative;
}
.about__copy p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about__stats {
  display: flex; flex-direction: column;
  gap: 32px;
  padding: 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.about__stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 100% 0%, rgba(62, 142, 141, 0.25), transparent 60%);
}
.stat {
  position: relative;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(246, 242, 234, 0.12);
}
.stat:last-child { border-bottom: 0; padding-bottom: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat__num span {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  margin-left: 2px;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.68);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper-warm); }
.faq__list { list-style: none; max-width: 920px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--rule);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  transition: padding-left 0.3s var(--ease-out);
}
.faq__q:hover { padding-left: 12px; }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out);
}
.faq__icon::before { width: 10px; height: 1px; }
.faq__icon::after { width: 1px; height: 10px; }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--ink); border-color: var(--ink); }
.faq__q[aria-expanded="true"] .faq__icon::before { background: var(--paper); }
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--paper); transform: translate(-50%, -50%) rotate(90deg); }

.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq__a.is-open { max-height: 240px; }
.faq__a p {
  padding: 0 60px 32px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq__followup {
  max-width: 720px;
  margin: clamp(72px, 9vw, 120px) auto 0;
  text-align: center;
}
.faq__followup-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.faq__followup-body {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}
.faq__followup-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.3s var(--ease-out);
}
.faq__followup-body a:hover {
  border-color: var(--ink);
}

/* =========================================================
   FINAL CTA CARD
   ========================================================= */
.cta { background: var(--paper); padding-bottom: clamp(100px, 12vw, 160px); }
.cta__card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.cta__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: 8px;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.4;
}
.cta__card::after {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(50% 30% at 50% 50%, rgba(62, 142, 141, 0.3), transparent 70%);
  pointer-events: none;
}
.cta__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.15; mix-blend-mode: overlay;
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 860px; }
.cta__meta { margin-bottom: 28px; }
.cta__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(246, 242, 234, 0.2);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
}
.cta__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 24px;
}
.cta__title em {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
}
.cta__lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(246, 242, 234, 0.78);
  margin-bottom: 40px;
  max-width: 620px;
}
.cta__row {
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(246, 242, 234, 0.14);
  margin-bottom: 24px;
}
.cta__price { display: flex; flex-direction: column; gap: 8px; }
.cta__price-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
}
.cta__price-row {
  display: flex; align-items: baseline; gap: 22px;
}
.cta__price-strike {
  display: inline-block;
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(246, 242, 234, 0.55);
  text-decoration: line-through;
  text-decoration-color: var(--green-light);
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
}
.cta__price-amount {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 60px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta__price-note {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: rgba(246, 242, 234, 0.55);
}
.cta__card .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.cta__card .btn--primary:hover {
  background: var(--paper);
  transform: translateY(-2px) scale(1.02);
}
.cta__assurance {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(246, 242, 234, 0.6);
}
.cta__assurance span { white-space: nowrap; }

/* ---- INR / UPI secondary option ---- */
.cta__alt {
  display: flex; align-items: center; gap: 16px;
  margin: 36px 0 18px;
}
.cta__alt-rule {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(246, 242, 234, 0.18), transparent);
}
.cta__alt-or {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.5);
  white-space: nowrap;
}
.btn--upi {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(246, 242, 234, 0.22);
  border-radius: 100px;
  color: var(--paper);
  background: transparent;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.btn--upi:hover {
  background: rgba(246, 242, 234, 0.06);
  border-color: rgba(246, 242, 234, 0.4);
  transform: translateY(-1px);
}
.btn--upi:hover svg { transform: translateX(3px); }
.btn--upi__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--ink);
  font-family: var(--f-body);
  font-style: normal;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-bottom: 1px;
}
.btn--upi__copy {
  display: flex; flex-direction: column; gap: 2px;
  text-align: left;
}
.btn--upi__title { font-weight: 500; }
.btn--upi__note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(246, 242, 234, 0.5);
}
.btn--upi svg {
  width: 14px; height: 14px;
  margin-left: 4px;
  color: rgba(246, 242, 234, 0.7);
  transition: transform 0.3s var(--ease-out);
}

@media (max-width: 540px) {
  .btn--upi {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    padding: 11px 14px 11px 10px;
    font-size: 12.5px;
  }
  .btn--upi__title { line-height: 1.25; }
  .btn--upi__note { display: none; }
  .btn--upi svg { margin-left: auto; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 64px 0 120px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.footer__brand img { height: 44px; width: auto; margin-bottom: 22px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid var(--rule);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.footer__social a svg {
  width: 14px;
  height: 14px;
}
.footer__social a:hover {
  color: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  background: rgba(101, 188, 70, 0.06);
}
.footer__brand p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--ink); }
.footer__link {
  display: inline-flex; align-items: center; gap: 10px;
}
.footer__ico {
  width: 15px; height: 15px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.footer__link:hover .footer__ico {
  color: var(--green-deep);
  transform: translateY(-1px);
}
.footer__col--legal {
  text-align: right;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--muted);
  display: flex; flex-direction: column;
  gap: 4px;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--legal { grid-column: 1 / -1; text-align: left; margin-top: 16px; }
}

/* =========================================================
   STICKY CTA (mobile)
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 90;
  display: none;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 40px -10px rgba(10, 2, 3, 0.5);
}
.sticky-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 8px 8px 20px;
  gap: 12px;
}
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__price {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
}
.sticky-cta__price s {
  font-size: 14px;
  color: rgba(246, 242, 234, 0.5);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.sticky-cta__sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(246, 242, 234, 0.65);
}
.sticky-cta .btn--primary { background: var(--paper); color: var(--ink); }

.sticky-cta__actions {
  display: inline-flex; align-items: center; gap: 8px;
}
.sticky-cta__upi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(246, 242, 234, 0.08);
  border: 1px solid rgba(246, 242, 234, 0.22);
  color: var(--paper);
  font-family: var(--f-body);
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-bottom: 1px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.sticky-cta__upi:hover {
  background: rgba(246, 242, 234, 0.16);
  border-color: rgba(246, 242, 234, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 720px) { .sticky-cta { display: block; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
