@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #010012;
  --bg-deep: #00000a;
  --panel: #0a0a1f;
  --panel-2: #15132b;
  --panel-3: #1b1833;
  --text: #ffffff;
  --muted: #c8c6d4;
  --tertiary: #8a879a;
  --accent: #e5348b;
  --accent-deep: #cc3366;
  --accent-soft: #fbcce1;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-magenta: 0 40px 100px -34px rgba(229, 52, 139, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #010012;
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(1, 0, 18, 0.94), rgba(1, 0, 18, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

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

.brand-monogram {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 7px rgba(229, 52, 139, 0.09);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--tertiary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--accent);
  background: rgba(229, 52, 139, 0.09);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 152px 0 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(229, 52, 139, 0.15), transparent 32%),
    linear-gradient(180deg, #010012 0%, #040018 62%, #010012 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 88%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  width: 560px;
  height: 560px;
  top: 17%;
  right: -170px;
  background: radial-gradient(circle, rgba(229, 52, 139, 0.21), transparent 65%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: 20%;
  background: radial-gradient(circle, rgba(93, 63, 211, 0.12), transparent 66%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(229, 52, 139, 0.1), 0 0 22px rgba(229, 52, 139, 0.9);
}

.eyebrow-divider {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--accent);
  font-family: var(--font-accent);
  font-weight: 600;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 20px 50px -20px rgba(229, 52, 139, 0.85);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f23f98;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.proof-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-proof p {
  margin: 0;
  color: var(--tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-proof p span {
  margin: 0 5px;
  color: var(--accent);
}

.hero-media {
  position: relative;
  justify-self: stretch;
  min-height: 580px;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 42px 42px 18px 42px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow), var(--shadow-magenta);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.portrait-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 62%, rgba(1, 0, 18, 0.68) 100%),
    linear-gradient(90deg, rgba(1, 0, 18, 0.16), transparent 42%);
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-caption strong {
  max-width: 210px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(10, 10, 31, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.floating-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--tertiary);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}

.floating-card-top {
  top: 42px;
  left: -34px;
  flex-direction: column;
  align-items: flex-start;
}

.floating-card-bottom {
  right: -30px;
  bottom: 88px;
}

.pulse-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(229, 52, 139, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0 18%, transparent 22%);
  box-shadow: 0 0 24px rgba(229, 52, 139, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}

.metrics {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics article {
  position: relative;
  padding: 25px 24px 22px;
}

.metrics article + article {
  border-left: 1px solid var(--line);
}

.metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metrics strong span {
  color: var(--accent);
  font-size: 0.48em;
}

.metrics p {
  margin: 8px 0 0;
  color: var(--tertiary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  color: var(--tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line-strong);
}

.section-kicker span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 8px;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.58);
}

.overline {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.story {
  background:
    radial-gradient(circle at 92% 20%, rgba(229, 52, 139, 0.07), transparent 28%),
    #050419;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}

.story-heading h2,
.vision-head h2,
.citara-content h2,
.life-copy h2,
.closing-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -0.045em;
}

.story-copy {
  padding-top: 36px;
}

.story-copy p,
.life-copy > p,
.citara-content > p,
.vision-head > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.story-copy .story-intro {
  margin-top: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.manifesto-quote {
  position: relative;
  margin: 112px 0 100px;
  padding: 70px 84px 68px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(229, 52, 139, 0.11), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.manifesto-quote::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  right: -70px;
  border: 1px solid rgba(229, 52, 139, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(229, 52, 139, 0.03), 0 0 0 78px rgba(229, 52, 139, 0.02);
}

.quote-mark {
  position: absolute;
  top: 18px;
  left: 32px;
  color: var(--accent);
  font-family: var(--font-accent);
  font-size: 80px;
  line-height: 1;
  opacity: 0.48;
}

.manifesto-quote p {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.5vw, 46px);
  font-style: italic;
  line-height: 1.24;
}

.manifesto-quote footer {
  margin-top: 34px;
  color: var(--tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  max-width: 970px;
  margin-left: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 109px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line-strong) 35%, var(--line-strong) 80%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 50px 1fr;
  gap: 0 14px;
  min-height: 170px;
}

.timeline-year {
  padding-top: 4px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  margin: 7px auto 0;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 7px rgba(229, 52, 139, 0.06);
}

.timeline-content {
  padding: 0 0 48px 16px;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child .timeline-content {
  border-bottom: 0;
}

.timeline-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

.timeline-content p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--tertiary);
  font-size: 13px;
  line-height: 1.75;
}

.vision {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 80px 80px;
}

.vision-head {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 92px;
  align-items: end;
}

.vision-head > p {
  margin: 0 0 4px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 66px;
}

.principle-card {
  position: relative;
  min-height: 360px;
  padding: 28px 28px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.principle-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(229, 52, 139, 0.2);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.principle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(229, 52, 139, 0.34);
  background: linear-gradient(145deg, rgba(229, 52, 139, 0.08), rgba(255, 255, 255, 0.018));
}

.principle-card:hover::before {
  transform: scale(1.3);
}

.principle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.principle-top span {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
}

.principle-top small {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--tertiary);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle-card h3 {
  max-width: 280px;
  margin: 86px 0 15px;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.principle-card p {
  margin: 0;
  color: var(--tertiary);
  font-size: 12px;
  line-height: 1.75;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--accent);
  font-size: 18px;
}

.capability-panel {
  margin-top: 18px;
  padding: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.capability-copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.capability-copy > p:last-child {
  margin: 20px 0 0;
  color: var(--tertiary);
  font-size: 13px;
  line-height: 1.8;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.capability-item {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.capability-item span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
}

.capability-item strong {
  font-size: 11px;
  font-weight: 600;
}

.citara-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 35%, rgba(229, 52, 139, 0.28), transparent 22%),
    linear-gradient(135deg, #e5348b 0%, #b42262 42%, #5f113b 100%);
}

.citara-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 65%);
}

.citara-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 110px;
  align-items: start;
}

.citara-brand {
  position: sticky;
  top: 130px;
  padding-top: 14px;
}

.citara-brand img {
  width: min(100%, 270px);
  height: auto;
}

.citara-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-accent);
  font-size: 22px;
  font-style: italic;
}

.citara-content h2 {
  max-width: 760px;
}

.citara-content h2 em {
  color: #fff;
}

.citara-content > p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.citara-pillars {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.citara-pillars > div {
  min-height: 150px;
  padding: 24px 20px 22px 0;
  display: flex;
  flex-direction: column;
}

.citara-pillars > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.citara-pillars span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
}

.citara-pillars strong {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.citara-pillars small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.life-section {
  background: #f7f3f6;
  color: #110b16;
}

.life-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.life-media {
  position: relative;
}

.life-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
  border-radius: 34px 34px 10px 34px;
  background: #1a1422;
  box-shadow: 0 35px 70px rgba(35, 18, 32, 0.18);
}

.life-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(1, 0, 18, 0.34));
}

.life-image-wrap > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.life-stamp {
  position: absolute;
  right: -38px;
  bottom: 48px;
  width: 148px;
  height: 148px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 22px 50px rgba(229, 52, 139, 0.34);
  transform: rotate(-8deg);
}

.life-stamp span,
.life-stamp small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.life-stamp strong {
  margin: 3px 0;
  font-family: var(--font-heading);
  font-size: 17px;
}

.life-copy .section-kicker {
  margin-bottom: 48px;
  color: #746b75;
}

.life-copy .section-kicker span {
  border-color: rgba(17, 11, 22, 0.17);
}

.life-copy .section-kicker::after {
  background: rgba(17, 11, 22, 0.17);
}

.life-copy h2 {
  color: #110b16;
  font-size: clamp(38px, 4.1vw, 58px);
}

.life-copy > p {
  color: #5b535c;
}

.life-copy .life-lead {
  margin-top: 30px;
  color: #110b16;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.life-notes {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.life-notes div {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 11, 22, 0.14);
}

.life-notes small {
  display: block;
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.life-notes strong {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.5;
}

.closing {
  background:
    radial-gradient(circle at 50% 100%, rgba(229, 52, 139, 0.12), transparent 33%),
    var(--bg);
}

.closing-panel {
  position: relative;
  padding: 96px 72px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 42px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(229, 52, 139, 0.09), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow-magenta);
}

.closing-panel > *:not(.closing-orbit) {
  position: relative;
  z-index: 2;
}

.closing-panel .overline {
  margin-bottom: 24px;
}

.closing-panel h2 {
  max-width: 960px;
  margin-inline: auto;
}

.closing-panel > p:not(.overline) {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.closing-actions {
  justify-content: center;
}

.closing-orbit {
  position: absolute;
  border: 1px solid rgba(229, 52, 139, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 410px;
  height: 410px;
  left: -230px;
  top: -160px;
}

.orbit-two {
  width: 540px;
  height: 540px;
  right: -330px;
  bottom: -360px;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand img {
  width: auto;
  height: 28px;
}

.footer-identity p {
  margin: 10px 0 0;
  color: var(--tertiary);
  font-size: 9px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-wrap > small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #555263;
  font-size: 8px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(229, 52, 139, 0.35); }
  50% { transform: scale(1.07); box-shadow: 0 0 34px rgba(229, 52, 139, 0.58); }
}

@media (max-width: 1060px) {
  .hero-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
  }

  .hero-media {
    min-height: 520px;
  }

  .floating-card-bottom {
    right: -12px;
  }

  .story-grid,
  .vision-head,
  .life-grid {
    gap: 56px;
  }

  .capability-panel {
    gap: 48px;
  }

  .citara-shell {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 92px 0;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero-media {
    min-height: 610px;
  }

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

  .metrics article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metrics article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .story-grid,
  .vision-head,
  .life-grid,
  .capability-panel,
  .citara-shell {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

  .manifesto-quote {
    padding: 64px 48px 56px;
  }

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

  .principle-card {
    min-height: 310px;
  }

  .principle-card h3 {
    margin-top: 58px;
  }

  .citara-brand {
    position: static;
  }

  .citara-brand img {
    width: 220px;
  }

  .life-media {
    max-width: 560px;
    margin-inline: auto;
  }

  .life-copy {
    max-width: 690px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-copy {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 9px;
  }

  .hero {
    padding-top: 110px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .eyebrow-divider,
  .eyebrow-divider + * {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof p {
    font-size: 7px;
  }

  .hero-media {
    min-height: 470px;
  }

  .portrait-frame {
    border-radius: 28px 28px 12px 28px;
  }

  .floating-card-top {
    left: 12px;
    top: 18px;
  }

  .floating-card-bottom {
    display: none;
  }

  .portrait-caption {
    left: 20px;
    right: 20px;
  }

  .portrait-caption strong {
    max-width: 160px;
    font-size: 11px;
  }

  .metrics {
    margin-top: 42px;
  }

  .metrics article {
    padding: 20px 14px;
  }

  .metrics strong {
    font-size: 24px;
  }

  .metrics p {
    font-size: 7px;
    line-height: 1.45;
  }

  .section-kicker {
    margin-bottom: 42px;
  }

  .story-heading h2,
  .vision-head h2,
  .citara-content h2,
  .life-copy h2,
  .closing-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .story-copy .story-intro {
    font-size: 16px;
  }

  .manifesto-quote {
    margin: 78px 0 76px;
    padding: 58px 26px 42px;
    border-radius: 28px;
  }

  .quote-mark {
    left: 18px;
  }

  .manifesto-quote p {
    font-size: 27px;
  }

  .timeline::before {
    left: 23px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 0 12px;
  }

  .timeline-year {
    grid-column: 2;
    margin-bottom: 10px;
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 7px;
  }

  .timeline-content {
    grid-column: 2;
    padding-left: 0;
  }

  .principle-card {
    padding: 24px;
  }

  .capability-panel {
    padding: 38px 24px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .citara-pillars {
    grid-template-columns: 1fr;
  }

  .citara-pillars > div {
    min-height: auto;
    padding: 20px 0;
  }

  .citara-pillars > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .citara-pillars strong {
    margin-top: 15px;
  }

  .life-stamp {
    right: -4px;
    bottom: 22px;
    width: 118px;
    height: 118px;
    padding: 20px;
  }

  .life-stamp strong {
    font-size: 14px;
  }

  .life-notes {
    grid-template-columns: 1fr;
  }

  .closing-panel {
    padding: 68px 22px;
    border-radius: 30px;
  }

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

  .footer-links {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
