/* === CELEBRATE BAR === */
.celebrate-bar {
  background: radial-gradient(
      circle at 14% 50%,
      rgba(255, 255, 255, 0.28),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 50%,
      rgba(255, 255, 255, 0.18),
      transparent 22%
    ),
    linear-gradient(90deg, #0f172a 0%, #1d4ed8 48%, #7c3aed 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.celebrate-inner {
  width: min(1220px, calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.celebrate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.celebrate-title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.celebrate-desc {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.celebrate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.18s ease;
}

.celebrate-link:hover {
  transform: translateY(-1px);
  color: #0f172a;
}

/* === HERO === */
.hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
      circle at 18% 8%,
      rgba(37, 99, 235, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  animation: heroFade 0.45s ease both;
}

.hero-slide.active {
  display: block;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.hero-dot {
  width: 28px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot.active {
  width: 42px;
  background: var(--text);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -3.4px;
  font-weight: 850;
  color: var(--text);
  margin-bottom: 24px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 30px;
}

.hero p strong {
  color: var(--text);
  font-weight: 750;
}

.hero .hero-actions {
  margin-bottom: 30px;
  align-items: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta span:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* === APP WINDOW / CONSOLE === */
.app-window {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-top {
  height: 46px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: var(--line-dark);
}

.window-dots i:nth-child(1) {
  background: #ef4444;
}

.window-dots i:nth-child(2) {
  background: #f59e0b;
}

.window-dots i:nth-child(3) {
  background: #22c55e;
}

.window-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.console-layout {
  display: grid;
  grid-template-columns: 178px 1fr;
  min-height: 440px;
}

.sidebar {
  background: #f8fafc;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
}

.side-title {
  padding: 0 10px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.side-item.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.console-main {
  padding: 22px;
}

.console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.console-head h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 5px;
}

.console-head p {
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.upload-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
}

.upload-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.file-type {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.upload-row strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.upload-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.progress {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: inherit;
  background: var(--primary);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.metric strong {
  font-size: 20px;
  line-height: 1;
  color: var(--text);
}

.table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
  background: #fff;
}

.table-row:first-child {
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row b {
  color: var(--green);
  font-weight: 800;
}

/* === MATRIX === */
.matrix {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.matrix-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-cell {
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
}

.matrix-cell:last-child {
  border-right: 0;
}

.matrix-head .matrix-cell {
  background: #f8fafc;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.matrix-cell:first-child {
  color: var(--text);
  font-weight: 800;
}

/* === SPLIT OVERRIDE (different column ratio from common.css) === */
.split {
  grid-template-columns: 0.88fr 1.12fr;
}

/* === NODE PANEL (CDN visual) === */
.node-panel {
  min-height: 360px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #bfdbfe, #e2e8f0) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.node-panel:before {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid #dbeafe;
  box-shadow: 0 0 0 50px rgba(219, 234, 254, 0.45),
    0 0 0 100px rgba(219, 234, 254, 0.28);
}

.node-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background: var(--text);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow);
}

.node-center strong {
  font-size: 27px;
  line-height: 1;
}

.node-center span {
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
  margin-top: 5px;
}

.node {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.node:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 7px;
}

.node.cn {
  left: 12%;
  top: 35%;
}

.node.asia {
  right: 12%;
  top: 26%;
}

.node.na {
  right: 10%;
  bottom: 25%;
}

.node.eu {
  left: 14%;
  bottom: 22%;
}

/* === WORKFLOW === */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  color: var(--text);
}

.step-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* === SCENARIO GRID === */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scenario {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.scenario h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.scenario p {
  color: var(--muted);
  font-size: 14px;
}

/* === PRODUCT ROW === */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-list span {
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  color: var(--text-soft);
}

/* === MINI GRID === */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.mini h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.mini p {
  color: var(--muted);
  font-size: 14px;
}

/* === SECURITY === */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.security-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.security-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.security-item {
  padding: 15px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.security-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.security-item span {
  color: var(--muted);
  font-size: 13px;
}

.status-board {
  background: #0f172a;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
}

.status-board h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
}

.status-line:last-child {
  border-bottom: 0;
}

.status-line b {
  color: #86efac;
  font-size: 13px;
}

/* === PRICING === */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-card.featured {
  border-color: var(--text);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.amount {
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -1.6px;
  margin-bottom: 8px;
}

.period {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.price-card li {
  display: flex;
  gap: 9px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
}

.price-card li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

/* === FAQ === */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq:last-child {
  border-bottom: 0;
}

.faq button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 20px 22px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  font-size: 14.5px;
  transition: 0.22s ease;
}

.faq-answer.open {
  max-height: 260px;
  padding: 0 22px 20px;
}

/* === RESPONSIVE: 1060px === */
@media (max-width: 1060px) {
  /* Override mobile menu top for celebrate bar height (68px nav + 42px bar) */
  .nav-links.mobile-open {
    top: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .security-grid,
  .product-row {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .matrix-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .matrix-cell:last-child {
    border-bottom: 0;
  }
}

/* === RESPONSIVE: 720px === */
@media (max-width: 720px) {
  .celebrate-inner {
    width: min(100% - 24px, 1180px);
    min-height: auto;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 12px;
    line-height: 1.45;
  }

  .celebrate-desc {
    width: 100%;
  }

  .celebrate-link {
    display: none;
  }

  .hero {
    padding: 58px 0 56px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-dots {
    margin-top: 22px;
  }

  .console-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .side-title {
    grid-column: 1 / -1;
  }

  .metrics,
  .mini-grid,
  .scenario-grid,
  .security-items {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

  .node-panel {
    min-height: 330px;
  }

  .node-center {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .node {
    font-size: 12px;
    padding: 7px 9px;
  }

  .node.cn {
    left: 4%;
    top: 34%;
  }

  .node.asia {
    right: 5%;
    top: 22%;
  }

  .node.na {
    right: 5%;
    bottom: 22%;
  }

  .node.eu {
    left: 7%;
    bottom: 18%;
  }
}

/* ===================================================================
   ANNIVERSARY PAGE (indexNew.html)
   Scoped under .pg-anniversary to avoid conflicts with regular index
   =================================================================== */

/* --- Background Effects --- */
.pg-anniversary .page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(
      circle at 12% 10%,
      rgba(37, 99, 235, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(124, 58, 237, 0.07),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 56%, #ffffff 100%);
}

.pg-anniversary .grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.pg-anniversary .noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  pointer-events: none;
  background-image: repeating-radial-gradient(
    circle at 0 0,
    rgba(15, 23, 42, 0.025) 0 1px,
    transparent 1px 4px
  );
}

/* --- Container Override --- */
.pg-anniversary .container {
  width: min(1200px, calc(100% - 42px));
  margin: 0 auto;
}

/* --- Nav Overrides --- */
.pg-anniversary .nav {
  height: 74px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.pg-anniversary .nav-inner {
  width: min(1240px, calc(100% - 42px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pg-anniversary .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.pg-anniversary .brand span:last-child {
  font-size: 18px;
  letter-spacing: -0.35px;
}

.pg-anniversary .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.pg-anniversary .nav-links a {
  opacity: 0.82;
  transition: 0.18s ease;
}

.pg-anniversary .nav-links a:hover {
  opacity: 1;
  color: var(--text);
}

/* --- Button Overrides (pill-shaped) --- */
.pg-anniversary .btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.pg-anniversary .btn:hover {
  transform: translateY(-1px);
}

.pg-anniversary .btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.pg-anniversary .btn-primary:hover {
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.pg-anniversary .btn-outline {
  color: var(--text-soft);
  border-color: var(--line);
  background: #fff;
}

.pg-anniversary .btn-outline:hover {
  background: var(--bg-soft);
  color: var(--text);
  border-color: var(--line-dark);
}

.pg-anniversary .menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

/* --- Hero Section --- */
.pg-anniversary .hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 76px 0 94px;
  overflow: hidden;
  background: transparent;
  border-bottom: 0;
}

.pg-anniversary .orbit {
  position: absolute;
  right: -160px;
  top: 50%;
  width: 720px;
  height: 720px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.14);
  opacity: 0.88;
  pointer-events: none;
}

.pg-anniversary .orbit::before,
.pg-anniversary .orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.pg-anniversary .orbit::before {
  inset: 84px;
}

.pg-anniversary .orbit::after {
  inset: 170px;
}

.pg-anniversary .planet {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.45);
}

.pg-anniversary .planet.p1 {
  left: 112px;
  top: 74px;
}
.pg-anniversary .planet.p2 {
  right: 58px;
  top: 254px;
  width: 14px;
  height: 14px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(22, 163, 74, 0.45);
}
.pg-anniversary .planet.p3 {
  left: 210px;
  bottom: 72px;
  width: 12px;
  height: 12px;
  background: var(--pink);
  box-shadow: 0 0 22px rgba(219, 39, 119, 0.45);
}

.pg-anniversary .hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  width: 100%;
}

.pg-anniversary .hero-copy {
  padding-top: 12px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* --- Launch Pill --- */
.pg-anniversary .launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px 0 7px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.pg-anniversary .launch-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 58px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  font-size: 13px;
  font-weight: 1000;
}

/* --- Hero Title --- */
.pg-anniversary .hero-title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -5px;
  font-weight: 1000;
  margin-bottom: 26px;
  color: var(--text);
  max-width: none;
}

.pg-anniversary .hero-title span {
  display: block;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 52%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pg-anniversary .hero-desc {
  max-width: 680px;
  color: #334155;
  font-size: 18px;
  line-height: 1.95;
  font-weight: 650;
  margin: 0 auto 32px;
}

.pg-anniversary .hero-desc strong {
  color: #0f172a;
  font-weight: 900;
}

.pg-anniversary .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

/* --- Launch Meta --- */
.pg-anniversary .launch-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.pg-anniversary .meta-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.pg-anniversary .meta-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 4px;
}

.pg-anniversary .meta-card strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* --- Release Stage (Phone Mockup) --- */
.pg-anniversary .release-stage {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-anniversary .phone-wrap {
  position: relative;
  width: min(360px, 100%);
  z-index: 2;
  transform: rotate(3deg);
}

.pg-anniversary .phone {
  position: relative;
  aspect-ratio: 9 / 18.6;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pg-anniversary .phone-screen {
  height: 100%;
  border-radius: 34px;
  background: radial-gradient(
      circle at 30% 12%,
      rgba(37, 99, 235, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--line);
  padding: 18px;
  overflow: hidden;
}

.pg-anniversary .screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.pg-anniversary .signal {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.pg-anniversary .signal i {
  width: 4px;
  border-radius: 999px;
  background: var(--text);
  opacity: 0.85;
}

.pg-anniversary .signal i:nth-child(1) {
  height: 7px;
}
.pg-anniversary .signal i:nth-child(2) {
  height: 10px;
}
.pg-anniversary .signal i:nth-child(3) {
  height: 13px;
}
.pg-anniversary .signal i:nth-child(4) {
  height: 16px;
}

.pg-anniversary .battery {
  width: 28px;
  height: 13px;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.4);
  position: relative;
}

.pg-anniversary .battery::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  width: 16px;
  border-radius: 2px;
  background: var(--green);
}

.pg-anniversary .battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 4px;
  width: 3px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: rgba(15, 23, 42, 0.4);
}

.pg-anniversary .screen-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid #bfdbfe;
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 14px;
}

.pg-anniversary .phone-screen h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin-bottom: 10px;
  color: var(--text);
}

.pg-anniversary .phone-screen p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 650;
  margin-bottom: 18px;
}

.pg-anniversary .screen-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.pg-anniversary .screen-stat {
  min-height: 82px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
}

.pg-anniversary .screen-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 6px;
}

.pg-anniversary .screen-stat strong {
  color: var(--text);
  font-size: 22px;
  letter-spacing: -0.8px;
}

.pg-anniversary .deploy-card {
  padding: 13px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.pg-anniversary .deploy-card h3 {
  font-size: 14px;
  margin-bottom: 9px;
  color: var(--text);
}

.pg-anniversary .deploy-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-muted);
  overflow: hidden;
}

.pg-anniversary .deploy-progress i {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--purple),
    var(--pink)
  );
  border-radius: inherit;
}

.pg-anniversary .screen-list {
  display: grid;
  gap: 9px;
}

.pg-anniversary .screen-row {
  min-height: 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 9px;
  padding: 7px;
}

.pg-anniversary .row-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

.pg-anniversary .row-line strong {
  display: block;
  width: 72%;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 5px;
}

.pg-anniversary .row-line span {
  display: block;
  width: 48%;
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
}

/* --- Glass Cards --- */
.pg-anniversary .glass-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 3;
}

.pg-anniversary .glass-card.card-a {
  left: 0;
  top: 78px;
  width: 210px;
}

.pg-anniversary .glass-card.card-b {
  right: 52px;
  bottom: 102px;
  width: 226px;
}

.pg-anniversary .glass-card.card-c {
  left: 42px;
  bottom: 26px;
  width: 190px;
}

.pg-anniversary .glass-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.pg-anniversary .glass-card strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.pg-anniversary .glass-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 650;
}

/* --- Section Overrides --- */
.pg-anniversary .section {
  padding: 96px 0;
  position: relative;
}

.pg-anniversary .section-head {
  max-width: 820px;
  margin-bottom: 40px;
}

.pg-anniversary .section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pg-anniversary .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 14px;
  box-shadow: none;
}

.pg-anniversary .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.45);
}

.pg-anniversary .section-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  font-weight: 1000;
  margin-bottom: 16px;
  color: var(--text);
}

.pg-anniversary .section-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 650;
}

/* --- Upgrade Board --- */
.pg-anniversary .upgrade-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.pg-anniversary .big-card,
.pg-anniversary .stack-card,
.pg-anniversary .timeline-card,
.pg-anniversary .cta-panel {
  border: 1px solid var(--line);
  background: #fff;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.pg-anniversary .big-card {
  min-height: 482px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.pg-anniversary .big-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 62%);
  z-index: 1;
}

.pg-anniversary .big-card h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.8px;
  margin-bottom: 14px;
  color: var(--text);
}

.pg-anniversary .big-card p {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 650;
  margin-bottom: 28px;
}

/* --- Code Panel --- */
.pg-anniversary .code-panel {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  border: 1px solid #1e293b;
  background: #0f172a;
  overflow: hidden;
}

.pg-anniversary .code-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.pg-anniversary .code-dots {
  display: flex;
  gap: 6px;
}

.pg-anniversary .code-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #64748b;
}

.pg-anniversary .code-dots i:nth-child(1) {
  background: #ef4444;
}
.pg-anniversary .code-dots i:nth-child(2) {
  background: #f59e0b;
}
.pg-anniversary .code-dots i:nth-child(3) {
  background: #22c55e;
}

.pg-anniversary .code-lines {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.pg-anniversary .code-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.pg-anniversary .code-line.w1 {
  width: 72%;
  background: rgba(56, 189, 248, 0.45);
}
.pg-anniversary .code-line.w2 {
  width: 54%;
}
.pg-anniversary .code-line.w3 {
  width: 86%;
  background: rgba(167, 139, 250, 0.38);
}
.pg-anniversary .code-line.w4 {
  width: 42%;
}
.pg-anniversary .code-line.w5 {
  width: 68%;
  background: rgba(52, 211, 153, 0.36);
}

/* --- Stack Cards --- */
.pg-anniversary .stack {
  display: grid;
  gap: 18px;
}

.pg-anniversary .stack-card {
  min-height: 148px;
  padding: 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.pg-anniversary .stack-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

.pg-anniversary .stack-card h3 {
  font-size: 21px;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
  color: var(--text);
}

.pg-anniversary .stack-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 650;
}

/* --- Feature Strip --- */
.pg-anniversary .feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.pg-anniversary .feature-item {
  min-height: 190px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.pg-anniversary .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.pg-anniversary .feature-item .num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 20px;
}

.pg-anniversary .feature-item .num::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
}

.pg-anniversary .feature-item h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  color: var(--text);
}

.pg-anniversary .feature-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
  font-weight: 650;
}

/* --- Timeline --- */
.pg-anniversary .timeline-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.pg-anniversary .timeline-card::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 88px;
  bottom: 58px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--purple),
    var(--pink)
  );
  opacity: 0.72;
}

.pg-anniversary .milestone-list {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.pg-anniversary .milestone {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: flex-start;
}

.pg-anniversary .milestone-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  position: relative;
  z-index: 3;
}

.pg-anniversary .milestone-dot span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pg-anniversary .milestone h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: var(--text);
}

.pg-anniversary .milestone p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 650;
}

/* --- CTA Section --- */
.pg-anniversary .cta-section {
  padding: 84px 0 110px;
}

.pg-anniversary .cta-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: radial-gradient(
      circle at 88% 16%,
      rgba(219, 39, 119, 0.08),
      transparent 26%
    ),
    radial-gradient(circle at 16% 90%, rgba(37, 99, 235, 0.08), transparent 30%),
    #fff;
}

.pg-anniversary .cta-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.pg-anniversary .cta-content {
  position: relative;
  z-index: 2;
}

.pg-anniversary .cta-content h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 1000;
  margin-bottom: 16px;
  color: var(--text);
}

.pg-anniversary .cta-content p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 650;
}

.pg-anniversary .cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  min-width: 220px;
}

/* --- Footer Overrides --- */
.pg-anniversary .footer {
  border-top: 1px solid var(--line);
  background: #020617;
  color: #94a3b8;
  padding: 28px 0;
  font-size: 14px;
}

.pg-anniversary .footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.pg-anniversary .footer-line a {
  color: #94a3b8;
  transition: 0.18s ease;
}

.pg-anniversary .footer-line a:hover {
  color: #fff;
}

.pg-anniversary .site-name {
  color: #fff;
  font-weight: 900;
}

.pg-anniversary .site-url {
  color: #bfdbfe;
  font-weight: 950;
}

/* --- Anniversary Slogan --- */
.pg-anniversary .anniversary-slogan {
  max-width: 620px;
  margin: 16px auto 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
  text-align: center;
}

.pg-anniversary .anniversary-slogan strong {
  color: #0f172a;
  font-weight: 950;
}

/* ===================================================================
   ANNIVERSARY PAGE — RESPONSIVE
   =================================================================== */

@media (max-width: 1060px) {
  .pg-anniversary .nav-links,
  .pg-anniversary .nav-actions .btn {
    display: none;
  }

  .pg-anniversary .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pg-anniversary .nav-links.mobile-open {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    z-index: 101;
  }

  .pg-anniversary .nav-links.mobile-open a {
    /* display: block; */
    padding: 8px 12px;
    border-radius: 12px;
    color: var(--text-soft);
  }

  .pg-anniversary .nav-links.mobile-open a:hover {
    background: var(--bg-soft);
    color: var(--text);
  }

  .pg-anniversary .hero {
    min-height: auto;
  }

  .pg-anniversary .hero-inner,
  .pg-anniversary .upgrade-board,
  .pg-anniversary .cta-panel {
    grid-template-columns: 1fr;
  }

  .pg-anniversary .release-stage {
    min-height: 600px;
  }

  .pg-anniversary .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-anniversary .cta-actions {
    min-width: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-anniversary .orbit {
    opacity: 0.36;
  }
}

@media (max-width: 720px) {
  .pg-anniversary .container,
  .pg-anniversary .nav-inner {
    width: min(100% - 30px, 1200px);
  }

  .pg-anniversary .nav {
    height: 66px;
  }

  .pg-anniversary .brand span:last-child {
    font-size: 16px;
  }

  .pg-anniversary .nav-actions .btn-primary {
    display: none;
  }

  .pg-anniversary .nav-links.mobile-open {
    top: 66px;
    left: 15px;
    right: 15px;
  }

  .pg-anniversary .hero {
    padding: 54px 0 58px;
  }

  .pg-anniversary .hero-title {
    letter-spacing: -2.8px;
  }

  .pg-anniversary .hero-desc {
    font-size: 16px;
  }

  .pg-anniversary .hero-actions,
  .pg-anniversary .cta-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .pg-anniversary .btn {
    width: 100%;
  }

  .pg-anniversary .launch-meta {
    grid-template-columns: 1fr;
  }

  .pg-anniversary .release-stage {
    min-height: auto;
    display: block;
    padding-top: 18px;
  }

  .pg-anniversary .phone-wrap {
    width: min(300px, 92%);
    margin: 0 auto;
    transform: none;
  }

  .pg-anniversary .glass-card {
    position: static !important;
    width: 100% !important;
    margin-top: 12px;
  }

  .pg-anniversary .glass-card.card-a,
  .pg-anniversary .glass-card.card-b,
  .pg-anniversary .glass-card.card-c {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .pg-anniversary .section {
    padding: 66px 0;
  }

  .pg-anniversary .section-title {
    letter-spacing: -1.6px;
  }

  .pg-anniversary .upgrade-board {
    gap: 14px;
  }

  .pg-anniversary .big-card,
  .pg-anniversary .stack-card,
  .pg-anniversary .timeline-card,
  .pg-anniversary .cta-panel {
    border-radius: 24px;
  }

  .pg-anniversary .big-card,
  .pg-anniversary .timeline-card,
  .pg-anniversary .cta-panel {
    padding: 22px;
  }

  .pg-anniversary .stack-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pg-anniversary .feature-strip {
    grid-template-columns: 1fr;
  }

  .pg-anniversary .milestone {
    gap: 14px;
  }

  .pg-anniversary .timeline-card::before {
    left: 43px;
  }

  .pg-anniversary .cta-section {
    padding: 42px 0 72px;
  }

  .pg-anniversary .cta-content h2 {
    letter-spacing: -1.8px;
  }

  .pg-anniversary .footer-line {
    justify-content: flex-start;
    text-align: left;
  }

  .pg-anniversary .hero-copy {
    text-align: center;
  }

  .pg-anniversary .launch-pill {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 12px;
    line-height: 1.45;
  }

  .pg-anniversary .nav-links,
  .pg-anniversary .nav-links li {
    list-style: none;
  }
}
