/* ONEX GLOBAL — Public Frontend */
/* Pure White + Blue — Full Polish */
:root {
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-soft: #f8fafc;
  --line: #e6eef6;
  --text: #0f2744;
  --muted: #475569;
  --champagne: #eff6ff;
  --gold: #3b82f6;
  --gold-bright: #60a5fa;
  --gold-deep: #2563eb;
  --ink: #ffffff;
  --danger: #c45c5c;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 14px 36px rgba(15, 39, 68, 0.06);
  --shadow-soft: 0 6px 18px rgba(15, 39, 68, 0.04);
  --shadow-lift: 0 16px 36px rgba(37, 99, 235, 0.12);
  --font-display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --nav-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 5rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border-bottom: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 1px 0 rgba(59, 130, 246, 0.04) inset;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(247, 250, 252, 0.96);
  border-bottom-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 12px 40px rgba(15, 39, 68, 0.1);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.brand:hover {
  color: #2563eb;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 55%, #2563eb 100%);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.35),
    0 8px 20px rgba(59, 130, 246, 0.22);
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "1";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav-links a:hover {
  color: var(--gold-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold-deep);
}

.nav-cta {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 0.55rem 1.05rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.nav-cta .btn-ghost {
  border: 1.5px solid #93c5fd;
  color: var(--text);
  background: #ffffff;
}

.nav-cta .btn-ghost:hover {
  border-color: var(--gold);
  background: #eff6ff;
  color: var(--gold-deep);
}

.nav-cta .btn-primary {
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.28);
}

.nav-cta .btn:hover {
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #93c5fd;
  border-radius: 11px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-btn:hover {
  border-color: var(--gold);
  background: #eff6ff;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3.5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Side drawer exists in DOM; hide off-canvas on desktop */
.nav-drawer,
.nav-overlay {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep, #2563eb));
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep, #2563eb);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-teal,
.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: #2563eb;
}

.btn-teal:hover,
.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.12);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(248, 250, 252, 0.9) 100%),
    radial-gradient(ellipse 70% 60% at 78% 42%, rgba(59, 130, 246, 0.12), transparent 60%),
    #ffffff;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: min(26vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: 10%;
  top: 24%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 72%);
  filter: blur(10px);
  animation: drift 10s ease-in-out infinite alternate;
}

.hero-ring {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem 2.5rem;
  align-items: center;
  padding: 2.5rem 0 3.25rem;
}

.hero-content {
  position: relative;
  padding: 1rem 0;
  max-width: none;
  margin-inline: 0;
  animation: hero-rise 0.9s ease both;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold), transparent);
}

.hero-content > * {
  padding-left: 1.35rem;
}

.hero-kicker {
  margin: 0 0 0.85rem !important;
  color: #2563eb !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: none !important;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: #0f2744;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  text-shadow: none;
  filter: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #0f2744;
  line-height: 1.25;
}

.hero-lead,
.hero p.hero-lead {
  margin: 0 0 1.75rem;
  color: #475569;
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.65;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions .btn {
  min-height: 3rem;
  padding-inline: 1.45rem;
}

.hero-actions .btn-ghost {
  border: 1.5px solid #60a5fa;
  color: #0f2744;
  background: #ffffff;
  font-weight: 700;
}

.hero-actions .btn-ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: #eff6ff;
}

/* Circle + small income modules around it */
.hero-mlm {
  display: flex;
  justify-content: center;
  animation: hero-rise 1s ease 0.1s both;
}

.hero-orbit-board {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
}

.hero-orbit-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit-rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.hero-orbit-rings span:first-child {
  width: 58%;
  height: 58%;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.08);
}

.hero-orbit-rings span:last-child {
  width: 78%;
  height: 78%;
  border-style: dashed;
  border-color: rgba(59, 130, 246, 0.22);
  animation: orbit-spin 28s linear infinite;
}

.hero-orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.1rem;
  border: 1.5px solid #93c5fd;
  background:
    radial-gradient(circle at 35% 30%, rgba(59, 130, 246, 0.14), transparent 55%),
    #ffffff;
  box-shadow:
    0 16px 40px rgba(15, 39, 68, 0.1),
    0 0 0 10px rgba(59, 130, 246, 0.05);
}

.hero-orbit-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.3);
}

.hero-orbit-center strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #0f2744;
  font-weight: 800;
}

.hero-orbit-center em {
  font-style: normal;
  font-size: 0.68rem;
  color: #475569;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.hero-mod {
  position: absolute;
  z-index: 3;
  width: 124px;
  padding: 0.65rem 0.7rem 0.7rem;
  border-radius: 14px;
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.08);
  display: grid;
  gap: 0.12rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-mod:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
}

.hero-mod span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #2563eb;
}

.hero-mod strong {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f2744;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-mod em {
  font-style: normal;
  font-size: 0.7rem;
  color: #475569;
  font-weight: 600;
}

.hero-mod.m1 { top: 2%; left: 50%; translate: -50% 0; }
.hero-mod.m2 { top: 22%; right: 0; }
.hero-mod.m3 { bottom: 18%; right: 4%; }
.hero-mod.m4 { bottom: 4%; left: 50%; translate: -50% 0; }
.hero-mod.m5 { top: 22%; left: 0; }

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .hero-orbit-board {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .brand-hero {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
}

@media (max-width: 780px) {
  .hero-content::before {
    display: none;
  }

  .hero-content > * {
    padding-left: 0;
  }

  .hero-orb {
    width: 140px;
    right: 2%;
    top: 12%;
    opacity: 0.45;
  }

  .hero-mod {
    width: 104px;
    padding: 0.45rem 0.5rem;
  }

  .hero-mod strong {
    font-size: 0.72rem;
  }

  .hero-orbit-center {
    width: 118px;
    height: 118px;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  position: relative;
  margin-bottom: 2.25rem;
  max-width: 40rem;
  padding-left: 0;
}

.section-head::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 0.15rem;
  width: 3px;
  height: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.section-head p,
.page-hero p {
  margin: 0;
  color: #475569;
  font-weight: 500;
}

.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

/* Slabs / income grid */
.slab-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  width: 100%;
}

.slab {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.2rem;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius);
  background: #ffffff;
  min-height: 200px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.05);
}

.slab:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
  background: #eff6ff;
}

.slab-num {
  font-family: var(--font-display);
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.slab h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #0f2744;
  line-height: 1.25;
}

.slab p {
  margin: 0;
  margin-top: auto;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
}

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.path-steps::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 7%;
  right: 7%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #93c5fd, transparent);
  z-index: 0;
}

.path-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.85rem 0.25rem;
  background: transparent;
  border: none;
}

.path-node {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: #ffffff;
  border: 1.5px solid #3b82f6;
  box-shadow: 0 0 0 6px #ffffff, 0 4px 14px rgba(59, 130, 246, 0.18);
}

.path-node span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #2563eb;
}

.path-body {
  width: 100%;
  padding: 1.2rem 1.05rem 1.3rem;
  border-radius: var(--radius);
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.05);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.path-step:hover .path-body {
  border-color: #3b82f6;
  transform: translateY(-3px);
  background: #eff6ff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.path-step:hover .path-node {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  box-shadow: 0 0 0 6px #ffffff, 0 6px 18px rgba(59, 130, 246, 0.3);
}

.path-step:hover .path-node span {
  color: #ffffff;
}

.path-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f2744;
}

.path-step p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
}

th {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: none;
}

/* Package chips (legacy / other pages) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(59, 130, 246, 0.08);
  color: #0f2744;
  font-size: 0.9rem;
}

/* Business ceiling ladder */
.ceiling-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.ceiling-yield {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ceiling-yield-item {
  flex: 1;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1.5px solid #e6eef6;
  background: #ffffff;
}

.ceiling-yield-item.is-top {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.ceiling-yield-rate {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.ceiling-yield-label {
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
}

.ceiling-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.ceiling-tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.05rem;
  border-radius: var(--radius);
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  min-height: 118px;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ceiling-tier:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
  background: #eff6ff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.ceiling-tier.is-peak {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.16);
}

.ceiling-rank {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #2563eb;
  font-weight: 800;
  text-transform: uppercase;
}

.ceiling-tier strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #0f2744;
  font-weight: 800;
}

.ceiling-tier em {
  font-style: normal;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 500;
}

.ceiling-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .ceiling-wrap {
    grid-template-columns: 1fr;
  }

  .ceiling-yield {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ceiling-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .ceiling-yield {
    grid-template-columns: 1fr;
  }

  .ceiling-ladder {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.form-shell {
  max-width: 460px;
  margin: 0 auto 3rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-shell h1 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.35rem;
}

.form-shell > p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

/* Auth pages — premium split screen, no page scroll */
.auth-page {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
}

.auth-page .site-header {
  flex-shrink: 0;
}

.auth-screen {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  overflow: hidden;
}

.auth-aside {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 2.75rem 2.75rem 3rem;
  overflow: hidden;
}

.auth-aside-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.auth-aside-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(1.05) saturate(0.95) contrast(0.98);
  transform: scale(1.04);
}

.auth-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 246, 255, 0.55) 45%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.92) 82%);
}

.auth-aside::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.35), transparent);
  z-index: 1;
}

.auth-aside-copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  padding-left: 1.15rem;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--gold-bright), var(--gold), transparent) 1;
}

.auth-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-aside-copy h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 800;
}

.auth-lead {
  margin: 0 0 1.35rem;
  color: rgba(91, 111, 134, 0.92);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: 24rem;
}

.auth-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(247, 250, 252, 0.55);
  backdrop-filter: blur(10px);
  color: #0f2744;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.auth-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  overflow: hidden;
  background:
    radial-gradient(420px 220px at 90% 8%, rgba(59, 130, 246, 0.1), transparent 65%),
    radial-gradient(320px 200px at 10% 90%, rgba(59, 130, 246, 0.05), transparent 60%),
    linear-gradient(180deg, #f8fafc, #eff6ff);
}

.auth-form {
  position: relative;
  width: min(100%, 420px);
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: 20px;
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 39, 68, 0.1);
}

.auth-form::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #60a5fa, #3b82f6, transparent);
  opacity: 0.9;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  padding: 0.3rem;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #e6eef6;
}

.auth-tabs a {
  text-align: center;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-tabs a:hover {
  color: #0f2744;
}

.auth-tabs a.active {
  color: #ffffff;
  background: linear-gradient(120deg, #60a5fa, #3b82f6);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.28);
}

.auth-form-head {
  margin-bottom: 1rem;
}

.auth-form-head h2 {
  margin: 0 0 0.28rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f2744;
}

.auth-form-head p {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 500;
}

.auth-form .field {
  margin-bottom: 0.8rem;
}

.auth-form .field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f2744;
  margin-bottom: 0.32rem;
}

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.32rem;
}

.auth-label-row label {
  margin-bottom: 0;
}

.auth-label-row a {
  font-size: 0.75rem;
  color: #2563eb;
  font-weight: 700;
}

.auth-label-row a:hover {
  color: #1d4ed8;
}

.auth-form .field input {
  padding: 0.78rem 0.9rem;
  font-size: 0.92rem;
  border-radius: 11px;
  border: 1px solid #e6eef6;
  background: #ffffff;
  color: #0f2744;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-form .field input:hover {
  border-color: #93c5fd;
}

.auth-form .field input:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
  outline: none;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
}

.auth-grid .field {
  margin-bottom: 0;
}

.auth-submit {
  width: 100%;
  margin-top: 0.95rem;
  min-height: 2.9rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.28);
}

.auth-form .form-foot {
  margin-top: 0.95rem;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.82rem;
  color: #475569;
}

.auth-form .form-foot a {
  color: #2563eb;
  font-weight: 700;
}

.auth-form .form-msg {
  margin-top: 0.7rem;
  color: #b42318;
  font-weight: 600;
}

.auth-form .admin-check,
.auth-form .admin-check span {
  color: #0f2744 !important;
  font-weight: 600;
}

@media (max-width: 960px) {
  .auth-page {
    height: auto;
    min-height: 100dvh;
    overflow: auto;
  }

  .auth-screen {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100dvh - var(--nav-h));
  }

  .auth-aside {
    min-height: 240px;
    padding: 1.75rem 1.35rem;
    align-items: end;
  }

  .auth-aside::after {
    display: none;
  }

  .auth-aside-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .auth-chips {
    display: none;
  }

  .auth-panel {
    padding: 1.25rem 1rem 2rem;
    overflow: visible;
  }

  .auth-form {
    width: min(100%, 440px);
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) and (min-width: 961px) {
  .auth-aside {
    padding: 2rem;
  }

  .auth-aside-copy h1 {
    font-size: 2rem;
  }

  .auth-lead {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .auth-form {
    padding: 1.1rem 1.2rem 1.05rem;
  }

  .auth-form .field input {
    padding: 0.62rem 0.8rem;
  }

  .auth-tabs {
    margin-bottom: 0.85rem;
  }

  .auth-form-head {
    margin-bottom: 0.75rem;
  }

  .auth-submit {
    margin-top: 0.7rem;
    min-height: 2.55rem;
  }
}

.form-foot {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-foot a {
  color: #2563eb;
}

.form-msg {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #0f2744;
  font-size: 0.9rem;
}

.form-msg.show {
  display: block;
}

/* News / contact */
.news-grid,
.dual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.news-card,
.info-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-elev);
}

.news-card time {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.news-card h3 {
  margin: 0.45rem 0;
  font-family: var(--font-display);
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid #e6eef6;
  padding: 2.75rem 0 1.75rem;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .brand {
  color: #0f2744;
  font-weight: 800;
}

.site-footer h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #0f2744;
  font-weight: 800;
}

.site-footer a {
  color: #334155;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer p {
  color: #475569;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer a:hover {
  color: #2563eb;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e6eef6;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-30px, 40px, 0) scale(1.08);
  }
}

/* Legal */
.prose {
  max-width: 720px;
  color: var(--muted);
}

.prose h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.6rem 0 0.5rem;
}

.prose p {
  margin: 0 0 0.85rem;
}

/* Mobile */
@media (max-width: 1100px) {
  .slab-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .slab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
  }

  .path-steps::before {
    display: none;
  }

  .dual-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head::before {
    left: 0;
  }

  .section-head {
    padding-left: 0.9rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0.55rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .nav-links a::after {
    left: 0.55rem;
    right: 0.55rem;
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 70;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-drawer,
  .nav-overlay {
    display: flex;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(86vw, 320px);
    height: 100dvh;
    height: 100vh;
    padding: 5.5rem 1.25rem 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    border-left: 1px solid rgba(59, 130, 246, 0.22);
    box-shadow: -24px 0 60px rgba(15, 39, 68, 0.12);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: block;
    background: rgba(15, 39, 68, 0.35);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-drawer .nav-links,
  .nav-drawer .nav-cta {
    display: flex;
    position: static;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    flex: initial;
    justify-content: flex-start;
  }

  .nav-drawer .nav-links a {
    font-size: 0.9rem;
    padding: 0.95rem 0.85rem;
    border-radius: 12px;
    letter-spacing: 0.08em;
  }

  .nav-drawer .nav-links a::after {
    display: none;
  }

  .nav-drawer .nav-links a:hover,
  .nav-drawer .nav-links a.active {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
  }

  .nav-drawer .nav-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.14);
    gap: 0.65rem;
  }

  .nav-drawer .nav-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.85rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-drawer {
    transform: translateX(0);
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .menu-btn span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.nav-open .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-btn span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-header {
    height: var(--nav-h);
  }

  .slab-grid {
    grid-template-columns: 1fr;
  }

  .path-steps {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 2rem;
  }
}

/* Packages page */
.pkg-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.pkg-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.pkg-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.92);
}

.pkg-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(239, 246, 255, 0.7) 100%);
}

.pkg-page-hero-inner {
  max-width: 720px;
}

.pkg-page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pkg-page-hero-inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pkg-activate-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.06);
}

.pkg-price-sm {
  font-size: 2.2rem !important;
  margin: 0.15rem 0 0 !important;
}

/* Packages page — product-focused layout */
.pkg-top {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(59, 130, 246, 0.1), transparent 55%),
    #ffffff;
}

.pkg-top-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.pkg-top-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.pkg-top-copy > p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.7;
}

.pkg-top-copy strong {
  color: #2563eb;
}

.pkg-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pkg-top-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 22px 50px rgba(15, 39, 68, 0.1);
}

.pkg-top-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pkg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pkg-steps article {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: #ffffff;
  min-height: 150px;
}

.pkg-steps span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.pkg-steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.pkg-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pkg-activate-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.pkg-activate-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 20px 48px rgba(15, 39, 68, 0.1);
}

.pkg-activate-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pkg-activate-copy h2 {
  font-family: var(--font-display);
  margin: 0.7rem 0 0.65rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.pkg-activate-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .pkg-top-grid,
  .pkg-steps,
  .pkg-activate-row {
    grid-template-columns: 1fr;
  }
}

.pkg-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    #ffffff;
}

.pkg-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.7rem;
  letter-spacing: -0.02em;
}

.pkg-hero-inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

.pkg-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.75rem;
}

.pkg-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 120px;
}

.pkg-hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #2563eb;
}

.pkg-hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.pkg-activate {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(59, 130, 246, 0.35);
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.12), transparent 45%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.pkg-activate h2 {
  font-family: var(--font-display);
  margin: 0.55rem 0 0.55rem;
  font-size: 1.55rem;
}

.pkg-activate > div > p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.pkg-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.pkg-activate-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(15, 39, 68, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pkg-price-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.pkg-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.pkg-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.pkg-features li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.pkg-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.pkg-yield-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pkg-yield {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.05);
}

.pkg-yield.is-hot {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14);
}

.pkg-yield-band {
  display: inline-block;
  color: #2563eb;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.pkg-yield h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0f2744;
  font-weight: 800;
}

.pkg-yield p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.pkg-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: #ffffff;
  min-height: 280px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pkg-card:hover {
  border-color: rgba(59, 130, 246, 0.65);
  transform: translateY(-4px);
}

.pkg-card.is-featured,
.pkg-card.is-peak {
  border-color: var(--gold);
  background:
    linear-gradient(165deg, rgba(59, 130, 246, 0.16), transparent 45%),
    linear-gradient(180deg, #17140e, #f8fafc);
}

.pkg-card header {
  margin-bottom: 0.85rem;
}

.pkg-tier {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pkg-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.pkg-card .btn {
  margin-top: auto;
  width: 100%;
}

.pkg-note {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: #ffffff;
}

.pkg-note h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.pkg-note p {
  margin: 0;
  color: var(--muted);
}

.pkg-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .pkg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .pkg-activate,
  .pkg-note,
  .pkg-yield-grid {
    grid-template-columns: 1fr;
  }

  .pkg-note-actions {
    justify-content: flex-start;
  }

  .pkg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

/* Income plan page — plan-focused (not home clone) */
.plan-top {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(700px 280px at 88% 8%, rgba(59, 130, 246, 0.1), transparent 55%),
    #ffffff;
}

.plan-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.plan-top-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.plan-top-copy > p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
}

.plan-top-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.35rem;
}

.plan-top-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 88px;
}

.plan-top-stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #2563eb;
}

.plan-top-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.plan-top-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 22px 50px rgba(15, 39, 68, 0.1);
}

.plan-top-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 960px) {
  .plan-top-grid {
    grid-template-columns: 1fr;
  }
}

.plan-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(760px 300px at 85% 10%, rgba(59, 130, 246, 0.15), transparent 60%),
    #ffffff;
}

.plan-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin: 0.35rem 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.plan-hero-inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.plan-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.75rem;
}

.plan-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 110px;
}

.plan-hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #2563eb;
}

.plan-hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.plan-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.plan-jump a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #0f2744;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.plan-jump a:hover {
  border-color: var(--gold);
  color: #2563eb;
  background: rgba(59, 130, 246, 0.08);
}

.plan-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.plan-overview-card {
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: #ffffff;
  min-height: 140px;
}

.plan-overview-card span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.plan-overview-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.plan-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.plan-block {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.06), transparent 40%),
    #ffffff;
}

.plan-block-head {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.plan-block-head h2 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.plan-block-head p {
  margin: 0;
  color: var(--muted);
}

.plan-level-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.7rem;
}

.plan-level-grid article {
  padding: 1rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: #ffffff;
  text-align: center;
}

.plan-level-grid article.is-wide {
  grid-column: span 1;
}

.plan-level-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.plan-level-grid strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #2563eb;
}

.plan-table {
  border-color: rgba(59, 130, 246, 0.22);
}

.plan-table strong {
  color: #2563eb;
  font-weight: 700;
}

.plan-profit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.plan-profit-grid article {
  padding: 1.3rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.08);
  background: #ffffff;
}

.plan-profit-grid article.is-hot {
  border-color: rgba(59, 130, 246, 0.55);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), #ffffff);
}

.plan-band {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.plan-profit-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #2563eb;
}

.plan-profit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-rank-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.plan-rank-grid article {
  padding: 1.1rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: #ffffff;
  min-height: 120px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.plan-rank-grid article:hover {
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
}

.plan-rank-grid article.is-peak {
  border-color: var(--gold);
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.16), #ffffff);
}

.plan-rank-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.plan-rank-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.plan-rank-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-cta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(59, 130, 246, 0.28);
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.12), transparent 50%),
    #ffffff;
}

.plan-cta h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.plan-cta p {
  margin: 0;
  color: var(--muted);
}

.plan-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .plan-overview,
  .plan-rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-level-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .plan-overview,
  .plan-profit-grid,
  .plan-cta {
    grid-template-columns: 1fr;
  }

  .plan-cta-actions {
    justify-content: flex-start;
  }

  .plan-rank-grid,
  .plan-level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .plan-overview,
  .plan-rank-grid,
  .plan-level-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal / short name image banners */
.legal-banner,
.news-banner,
.page-banner {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3.25rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.18);
}

.legal-banner-bg,
.news-banner-bg,
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.legal-banner-bg img,
.news-banner-bg img,
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(1.04) saturate(0.9);
}

.legal-banner::after,
.news-banner::after,
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(239, 246, 255, 0.65) 100%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent 45%);
}

.legal-banner-inner h1,
.news-banner-inner h1,
.page-banner-inner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  color: #2563eb;
}

.legal-body {
  padding: 2.5rem 0 4rem;
  width: 100%;
}

.legal-wrap {
  width: min(100% - 2.5rem, 1100px);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.legal-nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--muted);
  font-size: 0.85rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.legal-nav a:hover,
.legal-nav a.active {
  color: #2563eb;
  border-color: var(--gold);
  background: rgba(59, 130, 246, 0.08);
}

.legal-content {
  width: 100%;
  max-width: none;
  color: var(--muted);
  line-height: 1.75;
}

.legal-updated {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(59, 130, 246, 0.05);
  color: #0f2744;
  font-size: 0.9rem;
}

.legal-content h2 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.55rem;
}

.legal-content p {
  margin: 0 0 0.85rem;
  max-width: none;
}

.legal-content a {
  color: #2563eb;
}

.legal-content a:hover {
  text-decoration: underline;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.news-post {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.news-post:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

.news-post figure {
  margin: 0;
}

.news-post img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-post-body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-post-body time {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-post-body h3 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.news-post-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.news-post-body a {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
}

.news-post-body a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
}

.about-top {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(700px 280px at 88% 8%, rgba(59, 130, 246, 0.1), transparent 55%),
    #ffffff;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-top-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-top-copy > p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.7;
}

.about-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-top-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 22px 50px rgba(15, 39, 68, 0.1);
}

.about-top-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-mission {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
}

.about-mission h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.35rem 0 0.75rem;
}

.about-mission > div > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 36rem;
}

.about-mission-points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-mission-points article {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: #ffffff;
}

.about-mission-points strong {
  display: block;
  color: #2563eb;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.about-mission-points span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-offer {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: #ffffff;
  min-height: 180px;
}

.about-offer span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.about-offer h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.about-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-values-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.about-values-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin: 0.35rem 0 0.75rem;
}

.about-values-row > div > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.about-values-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 20px 48px rgba(15, 39, 68, 0.1);
}

.about-values-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 960px) {
  .about-top-grid,
  .about-mission,
  .about-offer-grid,
  .about-values-row {
    grid-template-columns: 1fr;
  }
}

.contact-top {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(700px 280px at 88% 8%, rgba(59, 130, 246, 0.1), transparent 55%),
    #ffffff;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-top-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.contact-top-copy > p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.7;
}

.contact-top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.contact-top-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 110px;
}

.contact-top-meta strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #2563eb;
}

.contact-top-meta span {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-top-visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 22px 50px rgba(15, 39, 68, 0.1);
}

.contact-top-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

@media (max-width: 960px) {
  .contact-top-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background:
    radial-gradient(680px 260px at 80% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    #ffffff;
}

.contact-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0.35rem 0 0.7rem;
  letter-spacing: -0.02em;
}

.contact-hero-inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(59, 130, 246, 0.22);
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.07), transparent 42%),
    #ffffff;
}

.contact-form-head {
  margin-bottom: 1.35rem;
}

.contact-form-head h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.contact-fields .field {
  margin-bottom: 0;
}

.contact-fields .field-full {
  grid-column: 1 / -1;
}

.contact-fields label span {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.contact-fields select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.contact-fields select:focus {
  border-color: var(--gold);
}

.contact-submit {
  width: 100%;
  margin-top: 1.15rem;
  min-height: 3rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.contact-card-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card .btn {
  width: 100%;
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-links li + li {
  margin-top: 0.55rem;
}

.contact-links a {
  color: #0f2744;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-links a:hover {
  color: #2563eb;
  border-bottom-color: rgba(59, 130, 246, 0.5);
}

@media (max-width: 960px) {
  .contact-layout,
  .contact-fields {
    grid-template-columns: 1fr;
  }
}

/* Home extras: trust, why, voices, faq, cta */
.trust-bar {
  border-block: 1px solid #e6eef6;
  background: #ffffff;
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  text-align: center;
  padding: 0.5rem 0.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: #475569;
  font-size: 0.86rem;
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  min-height: 180px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
  border-color: rgba(59, 130, 246, 0.55);
  transform: translateY(-3px);
}

.why-num {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.voice-card {
  margin: 0;
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  background:
    linear-gradient(160deg, rgba(59, 130, 246, 0.08), transparent 50%),
    #ffffff;
}

.voice-card p {
  margin: 0 0 1.1rem;
  color: #0f2744;
  font-size: 0.98rem;
  line-height: 1.6;
}

.voice-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.voice-card strong {
  color: var(--text);
  font-size: 0.92rem;
}

.voice-card span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: #ffffff;
  padding: 0.15rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-right: 1.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item a {
  color: #2563eb;
}

.home-cta {
  padding: 0 0 4.5rem;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.85rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1.5px solid #bfdbfe;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 39, 68, 0.08);
}

.home-cta-inner h2 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #0f2744;
  font-weight: 800;
}

.home-cta-inner p {
  margin: 0;
  color: #475569;
  font-weight: 500;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.home-cta-actions .btn-ghost {
  border: 1.5px solid #60a5fa;
  color: #0f2744;
  background: #ffffff;
  font-weight: 700;
}

.home-cta-actions .btn-ghost:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

@media (max-width: 960px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid,
  .voice-grid,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Professional home spacing + photo layouts */
.section-spacious {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.04), transparent 40%, rgba(59, 130, 246, 0.03));
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.section-head-center::before {
  left: 50%;
  transform: translateX(-50%);
}

.section-link {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.section-link .btn-ghost {
  border: 1.5px solid #60a5fa;
  color: #0f2744;
  background: #ffffff;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
}

.section-link .btn-ghost:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.media-split-reverse {
  grid-template-columns: 1.05fr 1fr;
}

.media-split-reverse .media-copy {
  order: 2;
}

.media-split-reverse .media-frame {
  order: 1;
}

.media-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0.4rem 0 0.85rem;
  letter-spacing: -0.02em;
  color: #0f2744;
  font-weight: 800;
}

.media-copy > p {
  margin: 0 0 1.25rem;
  color: #475569;
  max-width: 34rem;
  line-height: 1.7;
  font-weight: 500;
}

.media-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.media-points li {
  position: relative;
  padding-left: 1.15rem;
  color: #0f2744;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.media-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.media-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.media-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 24px 60px rgba(15, 39, 68, 0.1);
  background: #ffffff;
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.ceiling-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-yield {
  margin-top: 0.5rem;
}

.why-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.faq-layout .section-head {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
}

.home-cta-photo {
  position: relative;
  isolation: isolate;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) saturate(0.9);
}

.home-cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 55%, rgba(239, 246, 255, 0.72) 100%);
}

.home-cta-photo .home-cta-inner {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(59, 130, 246, 0.22);
  backdrop-filter: blur(8px);
}

/* Photo duo + client feedback */
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.photo-duo-item {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 20px 50px rgba(15, 39, 68, 0.1);
  background: #ffffff;
}

.photo-duo-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-duo-item:hover img {
  transform: scale(1.04);
}

.photo-duo-item figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e6eef6;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.photo-duo-item strong {
  color: #0f2744;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.photo-duo-item span {
  color: #475569;
  font-size: 0.88rem;
  font-weight: 500;
}

.feedback-featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(59, 130, 246, 0.35);
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.12), transparent 45%),
    #ffffff;
}

.feedback-featured-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.feedback-featured-body p {
  margin: 0.85rem 0 1.2rem;
  color: #0f2744;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 40rem;
}

.feedback-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.feedback-person {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feedback-person strong {
  color: var(--text);
  font-size: 1rem;
}

.feedback-person span {
  color: var(--gold);
  font-size: 0.82rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.feedback-card {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: #ffffff;
  min-height: 220px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.feedback-card:hover {
  border-color: rgba(59, 130, 246, 0.55);
  transform: translateY(-4px);
}

.feedback-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.feedback-card-top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, 0.45);
}

.feedback-card-top strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.feedback-card-top span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0.15rem 0 0.25rem;
}

.feedback-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .photo-duo,
  .feedback-featured,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-featured-photo {
    max-width: 220px;
  }
}

@media (max-width: 960px) {
  .media-split,
  .media-split-reverse,
  .faq-layout,
  .ceiling-featured,
  .why-grid-3 {
    grid-template-columns: 1fr;
  }

  .media-split-reverse .media-copy,
  .media-split-reverse .media-frame {
    order: initial;
  }

  .faq-layout .section-head {
    position: static;
  }

  .section-spacious {
    padding: 4rem 0;
  }
}

/* Global mobile polish */
@media (max-width: 780px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .brand {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    gap: 0.55rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-grid {
    padding: 1.5rem 0 2rem;
  }

  .brand-hero {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero h1 {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-orbit-board {
    width: min(100%, 340px);
    max-width: 100%;
  }

  .hero-mod.m1,
  .hero-mod.m2,
  .hero-mod.m3,
  .hero-mod.m4,
  .hero-mod.m5 {
    width: 96px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-spacious {
    padding: 3.25rem 0;
  }

  .section-head h2,
  .section-head-center h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .btn {
    padding: 0.8rem 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    text-align: left;
  }

  .page-banner,
  .news-banner,
  .legal-banner {
    min-height: 160px;
    padding: 2.4rem 0;
  }

  .page-banner-inner h1,
  .news-banner-inner h1,
  .legal-banner-inner h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .pkg-steps,
  .plan-overview,
  .news-cards,
  .about-offer-grid {
    grid-template-columns: 1fr;
  }

  .pkg-note,
  .pkg-activate-row,
  .about-values-row,
  .about-mission,
  .contact-layout,
  .news-featured {
    grid-template-columns: 1fr;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .plan-jump {
    flex-wrap: wrap;
  }

  .legal-wrap {
    width: min(100% - 1.5rem, 1100px);
  }

  .legal-body {
    padding: 1.75rem 0 3rem;
  }

  .auth-card,
  .form-card {
    width: min(100% - 1.5rem, 440px);
    margin-inline: auto;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.15rem, var(--max));
  }

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-orbit-board {
    aspect-ratio: 1 / 1.05;
  }

  .hero-mod {
    font-size: 0.9em;
  }

  .hero-mod.m1 { top: 0; }
  .hero-mod.m4 { bottom: 0; }
  .hero-mod.m2 { right: -2%; }
  .hero-mod.m5 { left: -2%; }

  .nav-cta .btn,
  .hero-actions .btn {
    font-size: 0.8rem;
  }
}







/* ========== FULL POLISH LAYER ========== */
::selection {
  background: rgba(59, 130, 246, 0.18);
  color: var(--text);
}

.site-header {
  border-bottom-color: rgba(59, 130, 246, 0.1);
  box-shadow: 0 10px 30px rgba(15, 39, 68, 0.04);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(15, 39, 68, 0.08);
}

.brand {
  letter-spacing: 0.08em;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep, #2563eb);
  background: rgba(59, 130, 246, 0.06);
}

.btn {
  transition: transform 0.28s var(--ease), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s var(--ease);
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.34);
  filter: brightness(1.03);
}

.section {
  padding: 5rem 0;
}

.section-head h2,
.page-hero h1,
.page-banner-inner h1,
.news-banner-inner h1,
.legal-banner-inner h1 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-weight: 750;
  color: var(--text);
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.hero-kicker {
  letter-spacing: 0.14em;
}

.slab,
.pkg-card,
.plan-overview-card,
.news-card,
.about-offer-card,
.contact-card,
.auth-card,
.form-card,
.voice-card,
.media-card,
.faq-item,
.legal-card,
.rank-card,
.income-card {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.slab:hover,
.pkg-card:hover,
.plan-overview-card:hover,
.news-card:hover,
.about-offer-card:hover,
.contact-card:hover,
.rank-card:hover,
.income-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(59, 130, 246, 0.28);
}

.hero-mod {
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.08);
  border-radius: 16px !important;
  background: #ffffff !important;
}

.hero-mod span {
  color: #2563eb !important;
}

.hero-mod strong {
  color: #0f2744 !important;
}

.hero-mod em {
  color: #475569 !important;
}

.hero-orbit-center {
  box-shadow: var(--shadow-lift) !important;
}

.hero-orbit-center strong {
  color: #0f2744 !important;
}

.brand-hero {
  letter-spacing: -0.04em;
  color: #0f2744 !important;
  -webkit-text-fill-color: #0f2744 !important;
  background: none !important;
}

.hero-lead {
  font-size: 1.05rem;
  color: #475569 !important;
}

.hero-actions .btn-ghost,
.nav-cta .btn-ghost {
  color: #0f2744 !important;
  border-color: #60a5fa !important;
  background: #ffffff !important;
}

input,
select,
textarea {
  border-radius: var(--radius-sm) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-bright) !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.site-footer {
  margin-top: 4rem;
  border-radius: 0;
  box-shadow: none;
  background: #ffffff;
}

.site-footer h4 {
  color: #0f2744 !important;
  font-weight: 800 !important;
}

.site-footer a {
  color: #334155 !important;
  font-weight: 600 !important;
}

.site-footer p,
.footer-bottom {
  color: #475569 !important;
}

.site-footer a:hover {
  color: #2563eb !important;
}

.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.table-wrap,
table {
  border-radius: var(--radius);
  overflow: hidden;
}

thead th {
  background: #eff6ff !important;
  color: var(--gold-deep, #2563eb) !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.auth-shell,
.auth-page,
.login-page {
  min-height: calc(100vh - var(--nav-h));
}

.auth-card,
.form-card {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 1.75rem;
}

.page-banner,
.news-banner,
.legal-banner {
  background: #ffffff !important;
  border-bottom: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Light-theme image polish */
.media-split img,
.photo-duo img,
.pkg-media img,
.about-media img,
.feedback-featured-photo,
.voice-card img {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.08);
  border: 1px solid #e6eef6;
}

.page-banner,
.news-banner,
.legal-banner,
.pkg-page-hero,
.home-cta-photo {
  background: #ffffff;
}

/* Contrast fix: trust + opportunity section */
.trust-item strong { color: #2563eb !important; }
.trust-item span { color: #475569 !important; font-weight: 600; }
.media-copy h2 { color: #0f2744 !important; }
.media-copy > p { color: #475569 !important; }
.media-points li { color: #0f2744 !important; font-weight: 600; }
.media-points li::before { background: #2563eb !important; }
.eyebrow { color: #2563eb !important; font-weight: 800; }

/* Five income slabs contrast */
.section-head-center h2,
.section-head h2 { color: #0f2744 !important; font-weight: 800; }
.section-head-center p,
.section-head p { color: #475569 !important; }
.slab { background: #ffffff !important; border-color: #bfdbfe !important; }
.slab-num { color: #2563eb !important; font-weight: 800 !important; }
.slab h3 { color: #0f2744 !important; font-weight: 800 !important; }
.slab p { color: #475569 !important; font-weight: 500 !important; }
.section-link .btn-ghost {
  color: #0f2744 !important;
  border: 1.5px solid #60a5fa !important;
  background: #ffffff !important;
}

/* Income path contrast */
.path-body { background: #ffffff !important; border-color: #bfdbfe !important; }
.path-step h3 { color: #0f2744 !important; font-weight: 800 !important; }
.path-step p { color: #475569 !important; font-weight: 500 !important; }
.path-node span { color: #2563eb !important; font-weight: 800 !important; }
.path-step:hover .path-node span { color: #ffffff !important; }

/* Photo duo caption contrast */
.photo-duo-item figcaption {
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid #e6eef6 !important;
}
.photo-duo-item strong { color: #0f2744 !important; font-weight: 800 !important; }
.photo-duo-item span { color: #475569 !important; font-weight: 500 !important; }

/* Business ceilings contrast */
.ceiling-tier { background: #ffffff !important; border-color: #bfdbfe !important; }
.ceiling-tier.is-peak { background: #eff6ff !important; border-color: #3b82f6 !important; }
.ceiling-rank { color: #2563eb !important; font-weight: 800 !important; }
.ceiling-tier strong { color: #0f2744 !important; font-weight: 800 !important; }
.ceiling-tier em { color: #475569 !important; }
.pkg-yield { background: #ffffff !important; border-color: #bfdbfe !important; }
.pkg-yield.is-hot { background: #eff6ff !important; border-color: #3b82f6 !important; }
.pkg-yield-band { color: #2563eb !important; font-weight: 800 !important; }
.pkg-yield h3 { color: #0f2744 !important; font-weight: 800 !important; }
.pkg-yield p { color: #475569 !important; }

.site-footer .footer-tagline { margin-top: 0.9rem; color: #475569 !important; font-weight: 500; }
.home-cta-inner h2 { color: #0f2744 !important; }
.home-cta-inner p { color: #475569 !important; }
.home-cta-actions .btn-ghost { color: #0f2744 !important; border-color: #60a5fa !important; }

/* ========== ALL FRONTEND PAGES — same as Home contrast ========== */
body,
.page-banner,
.news-banner,
.legal-banner,
.pkg-page-hero,
.auth-shell,
.auth-page {
  color: #0f2744;
}

h1, h2, h3, h4,
.section-head h2,
.page-banner-inner h1,
.news-banner-inner h1,
.legal-banner-inner h1,
.pkg-page-hero-inner h1,
.contact-top-copy h1,
.contact-hero-inner h1,
.auth-aside-copy h1,
.form-shell h1,
.auth-card h1,
.prose h2 {
  color: #0f2744 !important;
  font-weight: 800;
}

p,
.section-head p,
.page-banner-inner p,
.pkg-page-hero-inner > p,
.contact-top-copy > p,
.contact-hero-inner > p,
.form-shell > p,
.prose,
.prose p,
.why-card p,
.voice-card p,
.news-card p,
.pkg-card p,
.plan-overview-card p,
.about-offer-card p,
.faq-item p,
.auth-lead {
  color: #475569 !important;
  font-weight: 500;
}

.eyebrow,
.pkg-yield-band,
.slab-num,
.ceiling-rank,
.why-num,
.contact-top-meta strong {
  color: #2563eb !important;
  font-weight: 800 !important;
}

.btn-ghost,
.nav-cta .btn-ghost,
.hero-actions .btn-ghost,
.section-link .btn-ghost,
.home-cta-actions .btn-ghost,
.pkg-page-hero .btn-ghost,
.auth-actions .btn-ghost {
  color: #0f2744 !important;
  border: 1.5px solid #60a5fa !important;
  background: #ffffff !important;
  font-weight: 700 !important;
}

.btn-ghost:hover,
.nav-cta .btn-ghost:hover,
.section-link .btn-ghost:hover {
  color: #2563eb !important;
  background: #eff6ff !important;
  border-color: #2563eb !important;
}

.form-shell,
.auth-card,
.form-card,
.why-card,
.voice-card,
.news-card,
.pkg-card,
.plan-overview-card,
.about-offer-card,
.faq-item,
.contact-card,
.legal-card,
.rank-card,
.income-card,
.pkg-yield,
.ceiling-tier,
.slab {
  background: #ffffff !important;
  border: 1.5px solid #bfdbfe !important;
  color: #0f2744;
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.05);
}

.why-card h3,
.voice-card strong,
.news-card h3,
.pkg-card h3,
.plan-overview-card strong,
.about-offer-card h3,
.faq-item summary,
.contact-card h3,
.pkg-yield h3,
.ceiling-tier strong,
.slab h3,
.path-step h3 {
  color: #0f2744 !important;
  font-weight: 800 !important;
}

.field label,
.admin-field label,
.form-shell label {
  color: #0f2744 !important;
  font-weight: 700 !important;
}

input, select, textarea,
.field input, .field select, .field textarea {
  background: #ffffff !important;
  color: #0f2744 !important;
  border-color: #e6eef6 !important;
}

.page-banner-inner,
.news-banner-inner,
.legal-banner-inner,
.pkg-page-hero-inner {
  color: #0f2744;
}

.legal-body,
.prose,
.news-list,
.contact-layout {
  color: #0f2744;
}

.site-footer,
.site-footer * {
  --text: #0f2744;
}

table th {
  background: #eff6ff !important;
  color: #2563eb !important;
}

table td {
  color: #0f2744 !important;
}

.pkg-yield.is-hot,
.ceiling-tier.is-peak,
.plan-profit-grid article.is-hot {
  background: #eff6ff !important;
  border-color: #3b82f6 !important;
}

.faq-item summary,
.faq-item summary::after {
  color: #0f2744 !important;
}

.muted,
.auth-chips span,
.copy-box code {
  color: #475569 !important;
}

.nav-links a {
  color: #334155 !important;
  font-weight: 700 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2563eb !important;
}

.brand {
  color: #0f2744 !important;
}

/* Auth login/register Pure White + Blue */
.auth-form {
  background: #ffffff !important;
  border: 1.5px solid #bfdbfe !important;
  box-shadow: 0 20px 48px rgba(15,39,68,.1) !important;
}
.auth-form-head h2 { color: #0f2744 !important; font-weight: 800 !important; }
.auth-form-head p { color: #475569 !important; }
.auth-form .field label,
.auth-label-row label { color: #0f2744 !important; font-weight: 700 !important; }
.auth-form .field input {
  background: #ffffff !important;
  color: #0f2744 !important;
  border: 1px solid #e6eef6 !important;
}
.auth-form .field input:focus {
  background: #ffffff !important;
  border-color: #3b82f6 !important;
}
.auth-tabs { background: #eff6ff !important; }
.auth-tabs a { color: #475569 !important; }
.auth-tabs a.active { color: #ffffff !important; }
.auth-kicker { color: #2563eb !important; font-weight: 800 !important; }
.auth-aside-copy h1 { color: #0f2744 !important; }
.auth-lead { color: #475569 !important; }
