:root {
  --bg: #ececec;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --ink: #111214;
  --muted: #696d73;
  --soft: #f6f6f4;
  --line: rgba(20, 22, 26, 0.12);
  --line-strong: rgba(20, 22, 26, 0.2);
  --charcoal: #17191d;
  --graphite: #272b31;
  --silver: #c7c9ca;
  --platinum: #e7e5df;
  --pearl: #faf9f6;
  --champagne: #b7a782;
  --accent: #c89968;
  --accent-subtle: rgba(200, 153, 104, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(18, 20, 24, 0.14);
  --shadow-soft: 0 16px 42px rgba(18, 20, 24, 0.08);
  --max-width: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 8% 6%,
      rgba(255, 255, 255, 0.9),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(190, 190, 188, 0.34),
      transparent 30rem
    ),
    linear-gradient(135deg, #f7f7f5 0%, #dedede 48%, #f8f7f3 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(17, 18, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(183, 167, 130, 0.13);
}

.section-pad {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
  position: relative;
}

.hero::before,
.hero::after,
.podcast-card::after,
.journal-shell::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero::before {
  width: 220px;
  height: 220px;
  right: 36%;
  top: 13%;
  border-radius: 999px;
  filter: blur(0.2px);
}

.hero::after {
  width: 130px;
  height: 130px;
  left: 0;
  bottom: 18%;
  transform: rotate(45deg);
  border-radius: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: 68px;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

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

.primary-button,
.secondary-button,
.glass-button,
.contact-form button,
.otp-form button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.primary-button,
.contact-form button,
.otp-form button:not(.ghost-button) {
  border: 1px solid var(--charcoal);
  background: linear-gradient(135deg, #363a40, #111214);
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.18);
}

.primary-button:hover,
.contact-form button:hover,
.otp-form button:not(.ghost-button):hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(17, 18, 20, 0.24);
}

.secondary-button,
.ghost-button {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.secondary-button:hover,
.ghost-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.glass-button {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.glass-button:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(214, 215, 215, 0.54)
    ),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.portrait-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.34) contrast(1.02) saturate(0.86);
}

.portrait-card::before,
.portrait-card::after,
.signature-panel::before,
.signature-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portrait-card::before {
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 30px;
}

.portrait-card::after {
  z-index: 0;
  width: 240px;
  height: 240px;
  right: -88px;
  bottom: -88px;
  border-radius: 999px;
  background: rgba(183, 167, 130, 0.18);
  filter: blur(10px);
}

.signature-panel {
  position: absolute;
  z-index: 3;
  left: -30px;
  bottom: 36px;
  width: min(78%, 330px);
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(246, 246, 244, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(135%);
}

.signature-panel::before {
  width: 86px;
  height: 86px;
  right: -22px;
  top: -24px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 50%;
}

.signature-panel::after {
  width: 90px;
  height: 1px;
  right: 18px;
  bottom: 25px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}

.signature-panel span {
  display: block;
  color: #77705e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.signature-panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.1;
}

.academy-banner,
.podcast-card,
.contact-card,
.journal-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.academy-banner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background:
    radial-gradient(
      circle at 88% 16%,
      rgba(255, 255, 255, 0.12),
      transparent 18rem
    ),
    linear-gradient(135deg, #14161a, #2d3137 58%, #17191d);
  color: #fff;
}

.academy-banner::before,
.podcast-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.academy-banner h2,
.section-heading h2,
.contact-copy h2,
.podcast-copy h2,
.admin-main h1 {
  margin-bottom: 16px;
  font-size: 50px;
}

.academy-banner h2,
.academy-banner p:not(.eyebrow) {
  color: #fff;
}

.academy-banner p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.compact-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.podcast-copy p,
.contact-copy p,
.journal-card p,
.milestone p,
.business-card p,
.admin-login p {
  color: var(--muted);
}

.business-grid,
.brand-grid,
.journal-grid {
  display: grid;
  gap: 18px;
}

.business-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-card,
.milestone,
.journal-card,
.brand-grid article,
.episode-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.business-card {
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business-card::after,
.milestone::after,
.journal-card::after,
.brand-grid article::after,
.episode-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  top: -58px;
  border: 1px solid rgba(183, 167, 130, 0.18);
  border-radius: 50%;
}

.business-card:hover,
.milestone:hover,
.journal-card:hover,
.brand-grid article:hover,
.episode-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 18, 20, 0.2);
  box-shadow: 0 22px 52px rgba(18, 20, 24, 0.12);
}

.business-card.featured-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, #2f3339, #15171b);
  color: #fff;
}

.business-card.featured-card h3,
.business-card.featured-card p {
  color: #fff;
}

.business-card span,
.road-marker span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #dcdddc);
  color: var(--charcoal);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.business-card.featured-card span {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #f8f8f6, #aeb1b3);
}

.business-card h3,
.milestone h3,
.journal-card h3,
.episode-card h3 {
  margin-bottom: 12px;
  font-size: 1.58rem;
}

.business-card a,
.journal-card a {
  width: fit-content;
  margin-top: 24px;
  padding: 10px 15px;
  border: 1px solid rgba(17, 18, 20, 0.14);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.business-card.featured-card a {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.podcast-section {
  padding-top: 42px;
}

.podcast-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(183, 167, 130, 0.16),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.74);
}

.podcast-card::after {
  width: 190px;
  height: 190px;
  right: 8%;
  bottom: -86px;
  border-radius: 50%;
}

.episode-card {
  padding: 30px;
  background: linear-gradient(145deg, #f9f8f5, #e4e4e2);
}

.episode-label,
.journal-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #77705e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Access System */
.access-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5),
    rgba(247, 247, 245, 0.8)
  );
}

.access-container {
  max-width: 900px;
  margin: 0 auto;
}

.access-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(17, 18, 20, 0.8);
}

.access-intro p {
  margin-bottom: 20px;
}

.access-note {
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}

.access-tiers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.access-tier {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 16px rgba(18, 20, 24, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.access-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 167, 130, 0.2);
  box-shadow:
    0 12px 32px rgba(18, 20, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.featured-tier {
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.85);
  position: relative;
}

.featured-tier::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--accent-subtle);
  pointer-events: none;
}

.tier-number {
  font-size: 14px;
  font-weight: 700;
  color: rgba(17, 18, 20, 0.3);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 4px;
}

.tier-content {
  position: relative;
  z-index: 1;
}

.tier-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
}

.tier-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.tier-meta {
  font-size: 14px;
  color: rgba(17, 18, 20, 0.5);
  margin-bottom: 12px;
}

.tier-note {
  font-style: italic;
  color: rgba(17, 18, 20, 0.7);
  margin-top: 12px;
}

.tier-includes {
  font-weight: 600;
  margin: 16px 0 8px;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.tier-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: rgba(17, 18, 20, 0.8);
}

.tier-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.access-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 8px 24px rgba(18, 20, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.cta-content p {
  color: rgba(17, 18, 20, 0.7);
  margin: 0;
}

.brands-section {
  padding-top: 58px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-grid article {
  /* min-height: 140px; */
  display: grid;
  place-items: center;
  /* padding: 32px; */
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 16px rgba(18, 20, 24, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 167, 130, 0.2);
  box-shadow:
    0 12px 32px rgba(18, 20, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.brand-logo img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.story-section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}

.life-graph {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.98),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(245, 245, 243, 0.88)
    );
  box-shadow:
    0 40px 80px rgba(18, 20, 24, 0.06),
    0 8px 24px rgba(18, 20, 24, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.life-graph::before {
  content: "";
  position: absolute;
  left: clamp(60px, 8vw, 100px);
  top: 80px;
  bottom: 80px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(183, 167, 130, 0.15) 8%,
    rgba(183, 167, 130, 0.35) 50%,
    rgba(183, 167, 130, 0.15) 92%,
    transparent
  );
}

.milestone {
  display: grid;
  grid-template-columns: clamp(80px, 10vw, 120px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  z-index: 1;
  min-height: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.milestone:not(:last-child) {
  padding-bottom: 0;
}

.milestone::after {
  display: none;
}

.milestone:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.road-marker {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  padding-top: 8px;
}

.road-marker::before,
.road-marker::after {
  content: "";
  position: absolute;
}

.road-marker::before {
  width: 24px;
  height: 1px;
  right: -12px;
  top: 22px;
  border-radius: 999px;
  background: rgba(183, 167, 130, 0.25);
}

.road-marker::after {
  width: 10px;
  height: 10px;
  left: 50%;
  top: 18px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 6px rgba(183, 167, 130, 0.1),
    0 2px 8px rgba(18, 20, 24, 0.1);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.road-marker span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #f8f8f7);
  box-shadow:
    0 4px 16px rgba(18, 20, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 18, 20, 0.5);
  transition: all 0.3s ease;
}

.milestone-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 8px 32px rgba(18, 20, 24, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

.milestone-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(183, 167, 130, 0.08),
    rgba(183, 167, 130, 0.04)
  );
  border: 1px solid rgba(183, 167, 130, 0.15);
  transition: all 0.3s ease;
}

.milestone-icon svg {
  width: 24px;
  height: 24px;
  color: rgba(119, 112, 94, 0.7);
  transition: all 0.3s ease;
}

.milestone:hover .milestone-icon {
  background: linear-gradient(
    135deg,
    rgba(183, 167, 130, 0.15),
    rgba(183, 167, 130, 0.08)
  );
  border-color: rgba(183, 167, 130, 0.25);
  transform: translateY(-2px);
}

.milestone:hover .milestone-icon svg {
  color: var(--accent);
  transform: scale(1.05);
}

.milestone-copy::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(183, 167, 130, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.milestone:hover .milestone-copy {
  transform: translateY(-4px);
  border-color: rgba(183, 167, 130, 0.2);
  box-shadow:
    0 16px 48px rgba(18, 20, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.milestone:hover .road-marker::after {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow:
    0 0 0 8px rgba(183, 167, 130, 0.15),
    0 4px 16px rgba(18, 20, 24, 0.15);
}

.milestone:hover .road-marker span {
  transform: scale(1.05);
  color: var(--accent);
  box-shadow:
    0 8px 24px rgba(18, 20, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.milestone-label {
  margin-bottom: 12px;
  color: rgba(119, 112, 94, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.milestone-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
  max-width: 760px;
}

.milestone-copy p:last-child {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(17, 18, 20, 0.7);
  max-width: 820px;
  margin-bottom: 0;
}

.journal-section {
  padding-top: 54px;
}

.journal-shell {
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.86),
      rgba(226, 226, 224, 0.66)
    ),
    var(--surface);
}

.journal-shell::before {
  width: 160px;
  height: 160px;
  right: -42px;
  top: -42px;
  border-radius: 44px;
  transform: rotate(22deg);
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card {
  padding: 28px;
}

.journal-card h3 {
  font-size: 1.48rem;
}

.contact-section {
  padding-top: 52px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 44px;
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(255, 255, 255, 0.92),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.78);
}

.admin-token-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea,
.form-control {
  width: 100%;
  border: 1px solid rgba(17, 18, 20, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: 0;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.form-control:focus {
  border-color: rgba(17, 18, 20, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 18, 20, 0.08);
}

.form-label {
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #31513a;
}

.form-status.error {
  color: #7b2923;
}

.otp-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.otp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.62);
  backdrop-filter: blur(12px);
}

.otp-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #e8e8e6);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.otp-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.otp-description,
.otp-hint {
  color: var(--muted);
}

.otp-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}

.otp-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.otp-form input {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.otp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.otp-hint {
  min-height: 26px;
  margin: 0;
  font-weight: 800;
}

.footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  max-width: 980px;
}

.admin-login,
.messages-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.admin-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.admin-stats span {
  display: block;
  color: var(--charcoal);
  font-size: 1.55rem;
  font-weight: 900;
}

.admin-stats p {
  margin: 4px 0 0;
  color: var(--muted);
}

.messages-search {
  margin-bottom: 18px;
}

.admin-token-form {
  max-width: 520px;
  margin-top: 28px;
}

.messages-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.messages-list {
  display: grid;
  gap: 14px;
}

.message-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.message-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.message-card h3 {
  margin-bottom: 2px;
}

.message-card a {
  color: var(--charcoal);
  direction: ltr;
  display: block;
}

.message-card strong {
  display: block;
  margin: 4px 0;
  color: var(--graphite);
}

.message-card time,
.empty-state {
  color: var(--muted);
  font-size: 0.9rem;
}

.verified-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(49, 81, 58, 0.18);
  border-radius: 999px;
  background: rgba(49, 81, 58, 0.08);
  color: #31513a;
  font-size: 0.78rem;
  font-weight: 900;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .contact-card,
  .podcast-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-visual {
    max-width: 560px;
  }

  .business-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .academy-banner,
  .messages-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .section-pad,
  .academy-banner,
  .footer {
    width: min(100% - 28px, var(--max-width));
  }

  .section-pad {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .signature-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-logo img {
    max-height: 60px;
  }

  .life-graph::before {
    left: 32px;
    top: 60px;
    bottom: 60px;
    width: 1px;
  }

  .milestone {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
  }

  .business-card,
  .milestone-copy {
    min-height: auto;
  }

  .road-marker span {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .road-marker::before {
    width: 20px;
    right: -10px;
  }

  .milestone-copy {
    padding: 24px;
    border-radius: 20px;
  }

  .milestone-copy h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .milestone-copy p:last-child {
    font-size: 15px;
    line-height: 1.6;
  }

  .milestone-label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .life-graph {
    padding: 40px 20px;
    gap: 48px;
  }

  .milestone-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

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

  .tier-number {
    font-size: 12px;
  }

  .tier-content h3 {
    font-size: 22px;
    flex-direction: column;
    align-items: start;
  }

  .access-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

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

  .footer,
  .message-card header,
  .otp-actions {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .story-section .reveal,
  .life-graph .reveal,
  .milestone.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
