:root {
  --ink: #08111f;
  --ink-2: #101f35;
  --ink-3: #172a45;
  --navy-glass: rgba(7, 17, 36, 0.72);
  --white-glass: rgba(255, 255, 255, 0.09);
  --paper: #fffaf0;
  --cream: #f6eddd;
  --card: #ffffff;
  --text: #172033;
  --muted: #667085;
  --gold: #c79b3c;
  --gold-soft: #efd38d;
  --line: rgba(23, 32, 51, 0.12);
  --line-gold: rgba(199, 155, 60, 0.32);
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.12);
  --shadow-strong: 0 34px 100px rgba(8, 17, 31, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 155, 60, 0.12), transparent 26%),
    linear-gradient(180deg, var(--paper), #fffaf0 44%, var(--cream));
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--ink);
  background: var(--gold-soft);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section-num,
.badge,
.menu-card span,
.menu-card strong,
.tutorial-card span,
.resource-card span,
.resource-card strong,
.video-link-card span,
.video-link-card strong,
.mcd-service-card span,
.mcd-service-card strong,
.domain-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold,
.btn-card {
  color: #071124;
  border-color: rgba(240, 210, 138, 0.54);
  background: linear-gradient(135deg, #f5df9c, #c79b3c 54%, #a97820);
  box-shadow: 0 18px 44px rgba(199, 155, 60, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-soft {
  color: var(--ink);
  border-color: var(--line-gold);
  background: rgba(255, 255, 255, 0.86);
}

.btn-outline {
  color: var(--gold-soft);
  border-color: rgba(240, 210, 138, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover,
.btn-soft:hover {
  border-color: rgba(240, 210, 138, 0.7);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

/* Home */
.menu-home {
  background: var(--ink);
}

.menu-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 17% 10%, rgba(240, 210, 138, 0.17), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(72, 105, 160, 0.18), transparent 34%),
    linear-gradient(135deg, #03050a, #071124 58%, #101f3b);
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 95%);
}

.menu-section-home {
  padding: 2.4rem 0;
  min-height: auto;
}

/* Gravity hero banner */
.gravity-banner {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vh, 520px);
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 210, 138, 0.14);
  background: #03050a;
}

.gravity-banner canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.gravity-banner__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(240, 210, 138, 0.1), transparent 42%),
    linear-gradient(to bottom, transparent 55%, rgba(3, 5, 10, 0.85));
}

.gravity-banner__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 2rem 0 2.4rem;
}

.gravity-banner__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gravity-banner__brand img {
  width: clamp(72px, 10vw, 88px);
  height: clamp(72px, 10vw, 88px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 210, 138, 0.45);
  box-shadow:
    0 0 0 8px rgba(240, 210, 138, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.35);
}

.gravity-banner__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.gravity-banner__name {
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.gravity-banner__jargon {
  margin-top: 0.65rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-style: italic;
  letter-spacing: 0.06em;
}

.menu-home .menu-section {
  min-height: auto;
}

.premium-shell {
  position: relative;
  z-index: 1;
}

.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.35rem;
}

.menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.52rem 0.9rem 0.52rem 0.58rem;
  border: 1px solid rgba(240, 210, 138, 0.24);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.menu-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.portal-status {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.56rem 0.9rem;
  border: 1px solid rgba(240, 210, 138, 0.24);
  border-radius: 999px;
  color: #dbe7f7;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: clamp(1.6rem, 3vw, 2.3rem);
}

.portal-copy {
  max-width: 820px;
}

.portal-copy h1 {
  max-width: 780px;
  margin: 0.9rem 0 1rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
}

.portal-copy p {
  max-width: 720px;
  color: #cbd7e8;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.portal-actions,
.tutorial-actions,
.gateway-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.portal-actions,
.contact-buttons {
  margin-top: 1.55rem;
}

.portal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.45rem;
}

.portal-chips span {
  padding: 0.56rem 0.82rem;
  border: 1px solid rgba(240, 210, 138, 0.22);
  border-radius: 999px;
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.82rem;
  font-weight: 760;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.trust-strip div {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(240, 210, 138, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-strip strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.trust-strip span {
  display: block;
  margin-top: 0.32rem;
  color: #aebcd0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.portal-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border: 1px solid rgba(240, 210, 138, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 0%, rgba(240, 210, 138, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.portal-panel h2 {
  margin: 0.8rem 0 0.7rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.16;
}

.portal-panel p {
  color: #c1ccdc;
  font-size: 0.95rem;
}

.portal-panel__note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 210, 138, 0.16);
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 800;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  position: relative;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border: 1px solid rgba(240, 210, 138, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(240, 210, 138, 0.06), transparent 52%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-card::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -54px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(240, 210, 138, 0.1);
}

.menu-card h3 {
  position: relative;
  margin: 0.85rem 0 0.65rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.15;
}

.menu-card p {
  position: relative;
  color: #cbd7e8;
  font-size: 0.94rem;
  line-height: 1.62;
}

.menu-card strong,
.menu-card span {
  position: relative;
  color: var(--gold-soft);
}

/* Shared page layout */
.content-page .page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 3.8rem 0 3.35rem;
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 210, 138, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(71, 104, 158, 0.18), transparent 32%),
    linear-gradient(135deg, #03050a, #071124 56%, #101f3b);
}

.content-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
}

.page-hero .container {
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(240, 210, 138, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.86rem;
  font-weight: 800;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0.85rem 0 0.9rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 760px;
  color: #cbd7e8;
  font-size: 1.03rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.portal-cta-bottom {
  margin-top: 2rem;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(240, 210, 138, 0.22);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.portal-cta-bottom h2 {
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.portal-cta-bottom p {
  max-width: 620px;
  margin: 0 auto 1.35rem;
  color: #c7d3e6;
  font-size: 0.98rem;
}

.page-section {
  padding: 4.8rem 0;
}

.cream-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 155, 60, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf5e8, #f4ead8);
}

.dark-section,
.domain-section,
.contact-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 210, 138, 0.16), transparent 30%),
    linear-gradient(135deg, #040810, #0a1730 58%, #13284a);
  color: #ffffff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 2.35rem;
  text-align: center;
}

.section-head h2 {
  margin: 0.75rem 0 0.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.dark-section .section-head h2,
.dark-section .section-head p,
.domain-section .section-num,
.domain-section h2,
.domain-section p,
.contact-section .section-head h2,
.contact-section .section-head p {
  color: #ffffff;
}

.dark-section .section-head p,
.domain-section p,
.contact-section .section-head p {
  color: #cbd7e8;
}

/* Grids and cards */
.service-grid,
.process-grid,
.tutorial-grid,
.resource-grid,
.mcd-service-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid-cards,
.pricing-grid,
.contact-layout,
.domain-layout,
.tutorial-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.gateway-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.gateway-layout,
.domain-layout,
.contact-layout {
  gap: 1.35rem;
}

.pricing-grid {
  align-items: stretch;
  gap: 1.35rem;
}

.domain-layout,
.contact-layout {
  align-items: start;
}

.tutorial-card,
.resource-card,
.video-link-card,
.mcd-service-card,
.service-card,
.process-grid > div,
.showcase-grid article,
.pricing-card,
.contact-panel,
.tutorial-detail-grid details {
  position: relative;
  min-height: 190px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.tutorial-card::after,
.resource-card::after,
.video-link-card::after,
.mcd-service-card::after,
.service-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(199, 155, 60, 0.1);
}

.tutorial-card:hover,
.resource-card:hover,
.video-link-card:hover,
.mcd-service-card:hover,
.service-card:hover,
.process-grid > div:hover,
.showcase-grid article:hover,
.pricing-card:hover,
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-strong);
}

.tutorial-card h3,
.resource-card h3,
.video-link-card h3,
.mcd-service-card h3,
.service-card h3,
.process-grid h3,
.showcase-grid strong,
.pricing-card h3,
.contact-panel h2,
.contact-panel h3 {
  position: relative;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.tutorial-card h3,
.resource-card h3,
.video-link-card h3,
.mcd-service-card h3,
.service-card h3 {
  margin: 0.75rem 0 0.55rem;
  font-size: 1.2rem;
}

.pricing-card h3 {
  margin-top: 1rem;
  font-size: 1.55rem;
}

.tutorial-card p,
.resource-card p,
.video-link-card p,
.mcd-service-card p,
.service-card p,
.process-grid p,
.showcase-grid span,
.pricing-card li,
.card-desc,
.tutorial-detail-grid p {
  position: relative;
  color: var(--muted);
}

.service-card span,
.process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, #f2d889, #c69834);
  font-weight: 850;
}

.tutorial-actions {
  justify-content: center;
  margin-top: 1.4rem;
}

.resource-section,
.video-section {
  margin-top: 3rem;
}

.compact-head {
  margin-bottom: 1.6rem;
}

.tutorial-detail-grid {
  margin-top: 1.5rem;
}

.tutorial-detail-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 800;
}

.tutorial-detail-grid p {
  margin-top: 0.75rem;
}

.tutorial-detail-grid a {
  color: var(--gold);
  font-weight: 800;
}

/* Website page */
.domain-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.domain-points div,
.domain-card,
.gateway-card,
.info-item {
  border: 1px solid rgba(240, 210, 138, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.domain-points div {
  padding: 1.2rem;
}

.domain-points strong,
.domain-card span,
.info-item strong {
  display: block;
  color: var(--gold-soft);
  font-weight: 850;
  font-size: 0.92rem;
  line-height: 1.35;
}

.domain-points span,
.domain-card p,
.domain-card small,
.info-item span {
  display: block;
  margin-top: 0.5rem;
  color: #cbd7e8;
  font-size: 0.88rem;
  line-height: 1.58;
}

.domain-card,
.gateway-card {
  padding: 1.65rem;
}

.domain-card h3,
.gateway-card h3 {
  margin: 0.85rem 0 0.65rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card .card-desc {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  color: var(--ink);
  background: #ecdfbe;
}

.amount {
  margin: 0.25rem 0 0.85rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 800;
}

.pricing-card ul {
  list-style: none;
  flex: 1;
  margin: 0;
}

.pricing-card li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-card .btn,
.btn-card {
  width: 100%;
  margin-top: 1.35rem;
}

.pricing-card.featured {
  border-color: rgba(199, 155, 60, 0.42);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.24);
}

/* Payment and contact */
.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 1.25rem 1.3rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 138, 0.38);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

@media (min-width: 960px) {
  .info-list {
    align-items: stretch;
  }

  .info-item {
    min-height: 100%;
  }
}

.gateway-layout .gateway-card {
  display: flex;
  flex-direction: column;
}

.gateway-layout .gateway-actions {
  margin-top: 0.25rem;
}

.gateway-card p {
  color: #cbd7e8;
}

.contact-section {
  min-height: 0;
}

.contact-layout h2,
.contact-layout h3,
.contact-layout p {
  color: #ffffff;
}

.contact-panel {
  border-color: rgba(240, 210, 138, 0.24);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.contact-panel:not(.muted) {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.85rem, 3vw, 2.25rem) clamp(1.65rem, 3vw, 2rem);
}

.contact-panel:not(.muted) h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.contact-panel p {
  color: #cbd7e8;
  line-height: 1.75;
  max-width: 52ch;
}

.contact-panel.muted {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.85rem, 3vw, 2.25rem) clamp(1.65rem, 3vw, 2rem);
}

.contact-panel.muted h3 {
  margin: 0 0 0.35rem;
}

.contact-panel.muted a {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 210, 138, 0.2);
  border-radius: 16px;
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 760;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.contact-panel.muted a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 138, 0.52);
}

/* Redirect pages */
.content-page .tutorial-actions .btn {
  margin-top: 0.5rem;
}

@media (max-width: 1180px) {
  .portal-hero-grid,
  .gateway-layout,
  .domain-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
  }

  .info-item {
    min-height: 0;
  }

  .menu-grid,
  .service-grid,
  .process-grid,
  .tutorial-grid,
  .resource-grid,
  .mcd-service-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 1.5rem, 1160px);
  }

  .portal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-status {
    width: 100%;
    justify-content: center;
    font-size: 0.7rem;
  }

  .menu-section-home {
    padding: 1.35rem 0 2rem;
  }

  .gravity-banner {
    height: clamp(300px, 46vh, 420px);
  }

  .info-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portal-copy h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    line-height: 1.14;
  }

  .portal-chips span {
    width: 100%;
    text-align: center;
  }

  .page-hero {
    padding: 3rem 0 2.5rem;
  }

  .page-section {
    padding: 3.8rem 0;
  }

  .menu-grid,
  .service-grid,
  .process-grid,
  .tutorial-grid,
  .resource-grid,
  .video-grid-cards,
  .mcd-service-grid,
  .pricing-grid,
  .showcase-grid,
  .domain-points,
  .tutorial-detail-grid {
    grid-template-columns: 1fr;
  }

  .portal-actions,
  .tutorial-actions,
  .gateway-actions,
  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Elegant dark-light harmony */
:root {
  --navy: #071124;
  --navy-2: #0d1b31;
  --navy-3: #132642;
  --ivory: #fff8ea;
  --ivory-2: #f8edd9;
  --ivory-3: #f0dfc1;
  --card-ivory: rgba(255, 252, 245, 0.94);
  --soft-border: rgba(30, 42, 65, 0.1);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 155, 60, 0.12), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy) 18rem, var(--ivory) 18rem, var(--ivory-2) 100%);
}

.menu-section,
.content-page .page-hero {
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 210, 138, 0.2), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(122, 151, 197, 0.16), transparent 34%),
    linear-gradient(135deg, #050912 0%, var(--navy) 52%, var(--navy-2) 100%);
}

.menu-section::after,
.content-page .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0), var(--ivory));
}

.menu-section .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.menu-section-home {
  align-items: flex-start;
  padding: 2.2rem 0 4.4rem;
}

.portal-topbar {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.portal-hero-grid {
  align-items: center;
  margin-bottom: clamp(1.7rem, 3vw, 2.7rem);
}

.portal-copy h1,
.page-hero h1 {
  text-wrap: balance;
}

.portal-panel,
.menu-card {
  border-color: rgba(240, 210, 138, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(240, 210, 138, 0.06), transparent 50%);
}

.page-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(199, 155, 60, 0.08), transparent 30%),
    linear-gradient(180deg, var(--ivory), var(--ivory-2));
}

.page-section + .page-section {
  border-top: 1px solid rgba(30, 42, 65, 0.06);
}

.cream-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 155, 60, 0.1), transparent 30%),
    linear-gradient(180deg, var(--ivory-2), var(--ivory-3));
}

.dark-section,
.domain-section,
.contact-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 210, 138, 0.18), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(122, 151, 197, 0.14), transparent 34%),
    linear-gradient(135deg, #050912, var(--navy) 55%, var(--navy-3));
}

.dark-section + .page-section,
.domain-section + .page-section,
.contact-section + .page-section {
  border-top: 0;
}

.section-head {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.page-section .section-head {
  padding-left: clamp(0rem, 1.5vw, 0.8rem);
  border-left: 3px solid rgba(199, 155, 60, 0.56);
}

.menu-card,
.tutorial-card,
.resource-card,
.video-link-card,
.mcd-service-card,
.service-card,
.process-grid > div,
.showcase-grid article,
.pricing-card,
.contact-panel,
.tutorial-detail-grid details {
  border-color: var(--soft-border);
  background:
    linear-gradient(180deg, var(--card-ivory), rgba(255, 247, 232, 0.9)),
    radial-gradient(circle at 92% 4%, rgba(199, 155, 60, 0.14), transparent 28%);
}

.menu-section .menu-card {
  border-color: rgba(240, 210, 138, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.065)),
    linear-gradient(135deg, rgba(240, 210, 138, 0.06), transparent 50%);
}

.menu-section .menu-card h3 {
  color: #ffffff;
}

.menu-section .menu-card p {
  color: #cbd7e8;
}

.menu-section .menu-card strong,
.menu-section .menu-card span {
  color: var(--gold-soft);
}

.dark-section .gateway-card,
.dark-section .info-item,
.domain-section .domain-card,
.domain-section .domain-points div,
.contact-section .contact-panel {
  border-color: rgba(240, 210, 138, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(240, 210, 138, 0.06), rgba(255, 255, 255, 0.02));
}

.section-head h2,
.tutorial-card h3,
.resource-card h3,
.video-link-card h3,
.mcd-service-card h3,
.service-card h3,
.process-grid h3,
.showcase-grid strong,
.pricing-card h3,
.contact-panel h2,
.contact-panel h3 {
  color: #0a1424;
}

.dark-section .section-head h2,
.dark-section .gateway-card h3,
.domain-section h2,
.domain-section h3,
.contact-section .contact-panel h2,
.contact-section .contact-panel h3 {
  color: #ffffff;
}

.resource-section,
.video-section,
.tutorial-detail-grid {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

@media (min-width: 1181px) {
  .menu-section-home .premium-shell {
    width: min(1160px, 88vw);
  }

  .page-hero .container,
  .page-section .container {
    width: min(1160px, 88vw);
  }
}

@media (max-width: 820px) {
  body {
    background:
      linear-gradient(180deg, var(--navy) 0%, var(--navy) 13rem, var(--ivory) 13rem, var(--ivory-2) 100%);
  }

  .menu-section::after,
  .content-page .page-hero::after {
    height: 70px;
  }

  .section-head {
    text-align: left;
  }

  .page-section .section-head {
    padding-left: 0.9rem;
  }
}

/* Balanced typography scale */
.portal-copy h1 {
  max-width: 680px;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.85rem, 2.8vw, 2.7rem);
  line-height: 1.09;
  letter-spacing: -0.032em;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  line-height: 1.12;
}

.portal-panel h2 {
  font-size: 1.2rem;
  line-height: 1.22;
}

@media (max-width: 820px) {
  .portal-copy h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    line-height: 1.14;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.1;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }
}

/* Footer + page closing */
.menu-home {
  background: var(--navy);
}

.menu-section::after {
  display: none;
}

.menu-section-home {
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
}

.site-footer {
  position: relative;
  color: #cbd7e8;
  border-top: 1px solid rgba(240, 210, 138, 0.18);
  background:
    radial-gradient(circle at 16% 0%, rgba(240, 210, 138, 0.14), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(122, 151, 197, 0.12), transparent 38%),
    linear-gradient(180deg, #050912, #071124 60%, #0b1830);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(2.8rem, 5vw, 3.6rem) 0 2.4rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 210, 138, 0.3);
}

.footer-jargon {
  margin: 0.95rem 0 0.6rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-desc {
  max-width: 340px;
  color: #9fb0c6;
  font-size: 0.92rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 0.62rem;
  color: #aebcd0;
  font-size: 0.93rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #8595ac;
}

.footer-bottom-jargon {
  color: var(--gold-soft);
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Unified dark navy theme */
body,
.menu-home {
  color: #cbd7e8;
  background:
    radial-gradient(circle at 14% -2%, rgba(199, 155, 60, 0.1), transparent 30%),
    radial-gradient(circle at 86% 0%, rgba(122, 151, 197, 0.1), transparent 34%),
    linear-gradient(180deg, #050912 0%, #071124 45%, #081832 100%);
  background-attachment: fixed;
}

.page-section,
.cream-section,
.dark-section,
.domain-section,
.contact-section {
  background: transparent;
}

.cream-section,
.dark-section,
.domain-section,
.contact-section,
.page-section + .page-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-section,
.content-page .page-hero {
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 210, 138, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(122, 151, 197, 0.16), transparent 34%),
    linear-gradient(135deg, #050912, #071124 60%, #0a1a36);
}

.menu-section::after,
.content-page .page-hero::after {
  display: none;
}

.menu-card,
.tutorial-card,
.resource-card,
.video-link-card,
.mcd-service-card,
.service-card,
.process-grid > div,
.showcase-grid article,
.pricing-card,
.contact-panel,
.tutorial-detail-grid details,
.domain-points div,
.domain-card,
.gateway-card,
.info-item,
.portal-panel {
  border: 1px solid rgba(240, 210, 138, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 92% 4%, rgba(199, 155, 60, 0.1), transparent 30%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.menu-card:hover,
.tutorial-card:hover,
.resource-card:hover,
.video-link-card:hover,
.mcd-service-card:hover,
.service-card:hover,
.process-grid > div:hover,
.showcase-grid article:hover,
.pricing-card:hover {
  border-color: rgba(240, 210, 138, 0.4);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}

.section-head h2,
.tutorial-card h3,
.resource-card h3,
.video-link-card h3,
.mcd-service-card h3,
.service-card h3,
.process-grid h3,
.showcase-grid strong,
.pricing-card h3,
.contact-panel h2,
.contact-panel h3,
.domain-card h3,
.gateway-card h3,
.menu-card h3,
.tutorial-detail-grid summary {
  color: #ffffff;
}

.section-head p,
.tutorial-card p,
.resource-card p,
.video-link-card p,
.mcd-service-card p,
.service-card p,
.process-grid p,
.showcase-grid span,
.pricing-card li,
.card-desc,
.tutorial-detail-grid p,
.menu-card p,
.gateway-card p,
.info-item span,
.domain-card p,
.domain-points span,
.contact-panel p {
  color: #aebcd0;
}

.pricing-card li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-section .section-head {
  border-left-color: rgba(199, 155, 60, 0.6);
}

.tutorial-detail-grid a {
  color: var(--gold-soft);
}

.btn-soft {
  color: var(--gold-soft);
  border-color: rgba(240, 210, 138, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.badge {
  color: #071124;
  background: linear-gradient(135deg, #f2d889, #c69834);
}

.contact-panel.muted a {
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.05);
}

.portal-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.82rem;
  border: 1px solid rgba(240, 210, 138, 0.22);
  border-radius: 999px;
  color: #eef4ff;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.82rem;
  font-weight: 760;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.portal-chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 138, 0.5);
  color: var(--gold-soft);
}

/* Homepage polish */
.menu-home .gravity-banner {
  height: clamp(300px, 46vh, 460px);
}

.menu-home .portal-copy h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.04;
}

.menu-home .portal-copy p {
  max-width: 720px;
}

.menu-home .portal-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.menu-home .premium-menu-grid {
  gap: 1.15rem;
}

.menu-home .menu-card {
  min-height: 238px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.menu-home .portal-cta-bottom {
  background:
    radial-gradient(circle at 20% 0%, rgba(240, 210, 138, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.052));
}

.menu-home .footer-top {
  align-items: start;
}

/* Card icons */
.menu-card .card-ico,
.service-card .card-ico,
.mcd-service-card .card-ico,
.showcase-grid .card-ico,
.tutorial-card .card-ico,
.resource-card .card-ico,
.video-link-card .card-ico {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.15rem;
  border: 1px solid rgba(240, 210, 138, 0.32);
  border-radius: 16px;
  color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(240, 210, 138, 0.18), rgba(240, 210, 138, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-ico svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-card:hover .card-ico,
.service-card:hover .card-ico,
.mcd-service-card:hover .card-ico,
.showcase-grid article:hover .card-ico,
.tutorial-card:hover .card-ico,
.resource-card:hover .card-ico,
.video-link-card:hover .card-ico {
  border-color: rgba(240, 210, 138, 0.55);
  color: #f6e4b4;
}

.showcase-grid article {
  display: flex;
  flex-direction: column;
}

/* Uniform section rhythm */
:root {
  --section-pad: clamp(3.6rem, 6vw, 5.6rem);
}

.page-section {
  padding: var(--section-pad) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 2.6rem);
}

/* Scroll reveal */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 820px) {
  .menu-home .gravity-banner {
    height: clamp(240px, 38vh, 330px);
  }

  .menu-home .portal-copy h1 {
    font-size: clamp(1.78rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    padding: 0.85rem;
  }

  .menu-home .premium-menu-grid {
    gap: 0.85rem;
  }
}

/* Accordion: compact when closed, no forced empty height */
.tutorial-detail-grid {
  align-items: start;
}

.tutorial-detail-grid details {
  min-height: 0;
  padding: 1.15rem 1.4rem;
}

.tutorial-detail-grid details[open] {
  padding-bottom: 1.45rem;
}

.tutorial-detail-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  list-style: none;
}

.tutorial-detail-grid summary::-webkit-details-marker {
  display: none;
}

.tutorial-detail-grid summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.tutorial-detail-grid details[open] summary::after {
  content: "\2212";
}

/* Premium subpage upgrade */
.content-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 155, 60, 0.12), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(16, 31, 53, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #f7eddd 42%, #f3e6d3 100%);
}

.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section):not(.cream-section) {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 155, 60, 0.09), transparent 24%),
    linear-gradient(180deg, #fffaf0, #f7eddd);
}

.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section) .section-head h2 {
  color: var(--ink);
}

.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section) .section-head p {
  color: #58667d;
}

.content-page .page-hero {
  min-height: clamp(420px, 58vh, 620px);
  display: flex;
  align-items: center;
  padding: clamp(3.4rem, 7vw, 6.4rem) 0 clamp(3rem, 6vw, 5.5rem);
  isolation: isolate;
}

.content-page .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 250, 240, 0), #fffaf0);
}

.content-page .page-hero .container {
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  text-wrap: balance;
}

.page-hero p {
  max-width: 780px;
  line-height: 1.75;
}

.page-hero-actions {
  align-items: center;
}

.page-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin-top: 1.45rem;
}

.page-proof-strip div {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(240, 210, 138, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 0%, rgba(240, 210, 138, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-proof-strip strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.2;
}

.page-proof-strip span {
  display: block;
  margin-top: 0.32rem;
  color: #d7e0ed;
  font-size: 0.8rem;
  line-height: 1.46;
}

.page-visual-card {
  position: absolute;
  right: 0;
  bottom: clamp(2rem, 5vw, 4rem);
  width: min(360px, 34vw);
  padding: 1rem;
  border: 1px solid rgba(240, 213, 140, 0.25);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 0%, rgba(240, 213, 140, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

@media (min-width: 821px) {
  .content-page .page-hero .container {
    padding-right: min(390px, 36vw);
  }
}

.page-visual-card > span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-visual-card > strong {
  display: block;
  margin: 0.48rem 0 0.95rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.08;
}

.visual-window,
.visual-terminal,
.visual-steps,
.visual-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(6, 12, 24, 0.72);
}

.visual-window {
  min-height: 180px;
  padding: 1rem;
}

.visual-window i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: rgba(240, 213, 140, 0.6);
}

.visual-line {
  width: 58%;
  height: 12px;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-line.wide {
  width: 84%;
  height: 18px;
  margin-top: 1.35rem;
  background: rgba(240, 213, 140, 0.26);
}

.visual-grid-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.visual-grid-mini b {
  display: block;
  min-height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.visual-terminal,
.visual-steps,
.visual-list {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
}

.visual-terminal code,
.visual-steps b,
.visual-list b {
  display: block;
  padding: 0.62rem 0.75rem;
  border-radius: 14px;
  color: #dfe8f5;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.visual-terminal code:last-child,
.visual-steps b:last-child,
.visual-list b:first-child {
  color: #071124;
  background: linear-gradient(135deg, #f4dda0, #c79b3c);
}

.premium-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(199, 155, 60, 0.22);
  border-radius: 20px;
  color: #31405a;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.page-section > .container > .premium-note {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.premium-note strong {
  color: var(--ink);
}

.dark-section .premium-note,
.contact-section .premium-note,
.gateway-card .premium-note {
  color: #cbd7e8;
  border-color: rgba(240, 210, 138, 0.2);
  background: rgba(255, 255, 255, 0.065);
}

.dark-section .premium-note strong,
.contact-section .premium-note strong,
.gateway-card .premium-note strong {
  color: #ffffff;
}

.service-card,
.tutorial-card,
.resource-card,
.video-link-card,
.mcd-service-card,
.process-grid > div,
.showcase-grid article,
.pricing-card,
.contact-panel,
.tutorial-detail-grid details {
  backdrop-filter: blur(10px);
}

.pricing-card.featured::before {
  content: "Paling lengkap";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  color: #071124;
  background: linear-gradient(135deg, #f5df9c, #c79b3c);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.domain-copy h2,
.contact-panel h2 {
  text-wrap: balance;
}

.gateway-card {
  min-height: 280px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.info-item {
  min-height: 150px;
  padding: 1.15rem;
}

.contact-panel.muted a {
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.contact-panel.muted a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 138, 0.55);
  color: var(--gold-soft);
}

.site-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .content-page .page-hero {
    min-height: auto;
    padding: 3rem 0 2.6rem;
  }

  .page-proof-strip {
    grid-template-columns: 1fr;
  }

  .page-proof-strip div {
    padding: 0.85rem;
  }

  .page-visual-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .page-hero-actions .btn {
    width: 100%;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured::before {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    width: max-content;
    margin-bottom: 0.8rem;
  }
}

/* Redesign V2: premium digital agency */
.menu-home {
  --v2-navy: #050914;
  --v2-navy-2: #0a1428;
  --v2-ivory: #fbf3e3;
  --v2-ivory-2: #f3e6d0;
  --v2-gold: #d4aa52;
  --v2-gold-2: #f0d58c;
  --v2-text-soft: #c8d4e4;
  background: var(--v2-navy);
}

.v2-home {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 170, 82, 0.18), transparent 26%),
    radial-gradient(circle at 82% 4%, rgba(76, 111, 174, 0.16), transparent 28%),
    linear-gradient(180deg, #03050b 0%, #071124 38%, #0b172d 100%);
}

.v2-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(240, 213, 140, 0.22);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.v2-brand,
.v2-nav-links,
.v2-nav-cta {
  display: inline-flex;
  align-items: center;
}

.v2-brand {
  gap: 0.72rem;
  padding-right: 0.7rem;
  color: var(--v2-gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.v2-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.v2-nav-links {
  gap: 0.18rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.v2-nav-links a,
.v2-nav-cta {
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: #eaf0fb;
  font-size: 0.83rem;
  font-weight: 800;
}

.v2-nav-links a:hover {
  color: var(--v2-gold-2);
  background: rgba(255, 255, 255, 0.07);
}

.v2-nav-cta {
  color: #071124;
  background: linear-gradient(135deg, #f4dda0, #c79b3c);
}

.v2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.2rem 0 5rem;
  overflow: hidden;
}

.v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 88%);
}

.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
}

.v2-kicker,
.v2-section-head span,
.v2-final-cta span {
  color: var(--v2-gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.v2-hero h1 {
  max-width: 810px;
  margin: 1rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.v2-hero p {
  max-width: 690px;
  color: var(--v2-text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.78;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.v2-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.v2-metrics div {
  padding: 1rem;
  border: 1px solid rgba(240, 213, 140, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-metrics strong,
.v2-metrics span {
  display: block;
}

.v2-metrics strong {
  color: #ffffff;
  font-size: 1rem;
}

.v2-metrics span {
  margin-top: 0.25rem;
  color: #aebbd0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.v2-showcase {
  position: relative;
  padding: 1.1rem;
  border: 1px solid rgba(240, 213, 140, 0.25);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 213, 140, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.v2-showcase-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.2rem 0 1rem;
  color: #dbe7f7;
  font-size: 0.78rem;
}

.v2-showcase-top span {
  color: var(--v2-gold-2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: #08101f;
}

.v2-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #8da0ba;
  font-size: 0.72rem;
}

.v2-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(240, 213, 140, 0.58);
}

.v2-browser-bar em {
  margin-left: auto;
  font-style: normal;
}

.v2-browser-body {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.v2-preview-card,
.v2-preview-grid div,
.v2-floating-card {
  border: 1px solid rgba(240, 213, 140, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(240, 213, 140, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.v2-preview-card {
  min-height: 220px;
  padding: 1.25rem;
}

.v2-preview-card small,
.v2-preview-grid small,
.v2-floating-card span,
.v2-floating-card small {
  display: block;
  color: #9fb0c8;
  font-size: 0.74rem;
}

.v2-preview-card strong,
.v2-preview-grid strong,
.v2-floating-card strong {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.08;
}

.v2-preview-card p {
  margin-top: 0.8rem;
  color: #b7c4d7;
  font-size: 0.9rem;
}

.v2-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.v2-preview-grid div {
  min-height: 112px;
  padding: 1rem;
}

.v2-floating-card {
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 220px;
  padding: 1rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.v2-section {
  padding: clamp(4.6rem, 8vw, 7rem) 0;
  background: var(--v2-navy);
}

.v2-ivory {
  color: #101b2f;
  background:
    radial-gradient(circle at 15% 0%, rgba(212, 170, 82, 0.16), transparent 26%),
    linear-gradient(180deg, var(--v2-ivory), var(--v2-ivory-2));
}

.v2-section-head {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.v2-section-head.left {
  margin: 0;
  text-align: left;
}

.v2-section-head h2,
.v2-final-cta h2 {
  margin: 0.7rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.v2-section-head p,
.v2-final-cta p {
  color: #aebbd0;
  font-size: 1rem;
  line-height: 1.75;
}

.v2-ivory .v2-section-head p {
  color: #58667d;
}

.v2-service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.v2-service-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border: 1px solid rgba(240, 213, 140, 0.18);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 213, 140, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.v2-service-card.feature {
  grid-row: span 2;
  min-height: 560px;
}

.v2-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 213, 140, 0.42);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.v2-service-card span {
  color: var(--v2-gold-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.v2-service-card h3 {
  margin: auto 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.v2-service-card p {
  color: #b7c4d7;
  line-height: 1.68;
}

.v2-service-card strong {
  margin-top: 1.2rem;
  color: var(--v2-gold-2);
}

.v2-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.v2-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.v2-process-list div {
  min-height: 210px;
  padding: 1.3rem;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
}

.v2-process-list span {
  color: var(--gold);
  font-weight: 900;
}

.v2-process-list strong {
  display: block;
  margin: 1.4rem 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.v2-process-list p {
  color: #59677d;
  line-height: 1.65;
}

.v2-final-cta {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 213, 140, 0.16), transparent 30%),
    linear-gradient(180deg, #071124, #03050b);
}

.v2-final-cta .container {
  max-width: 880px;
}

.v2-final-cta p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 980px) {
  .v2-nav {
    position: sticky;
    top: 0;
    width: 100%;
    border-radius: 0;
    transform: none;
    left: auto;
  }

  .v2-nav-links {
    display: none;
  }

  .v2-hero {
    min-height: auto;
    padding: 4.2rem 0 3.4rem;
  }

  .v2-hero-grid,
  .v2-process-grid {
    grid-template-columns: 1fr;
  }

  .v2-service-grid {
    grid-template-columns: 1fr;
  }

  .v2-service-card.feature {
    grid-row: auto;
    min-height: 300px;
  }

  .v2-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .v2-nav {
    padding: 0.55rem;
  }

  .v2-brand span {
    max-width: 120px;
  }

  .v2-nav-cta {
    min-height: 36px;
    padding: 0 0.75rem;
  }

  .v2-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .v2-actions .btn,
  .v2-final-cta .btn {
    width: 100%;
  }

  .v2-metrics,
  .v2-preview-grid,
  .v2-process-list {
    grid-template-columns: 1fr;
  }

  .v2-showcase {
    border-radius: 28px;
    padding: 0.82rem;
  }
}

/* V7 luxury polish: deeper navy, refined spacing, stronger trust cues */
:root {
  --fn-dark-0: #02050c;
  --fn-dark-1: #061025;
  --fn-dark-2: #091832;
  --fn-dark-3: #10213f;
  --fn-gold: #c89b3c;
  --fn-gold-soft: #f0d890;
  --fn-trust-text: #f8fbff;
  --fn-trust-muted: #d1d9e8;
  --fn-trust-dim: #aab7ca;
  --fn-trust-line: rgba(240, 216, 144, 0.2);
}

.v2-home,
.content-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 155, 60, 0.13), transparent 30%),
    radial-gradient(circle at 84% 6%, rgba(34, 74, 145, 0.12), transparent 32%),
    linear-gradient(180deg, #02050c 0%, #061025 42%, #091832 100%);
}

.v2-home::before,
.content-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

.v2-nav {
  min-height: 66px;
  padding: 0.55rem 0.72rem;
  border-color: rgba(240, 216, 144, 0.18);
  background: rgba(2, 5, 12, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.v2-brand {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.v2-hero {
  padding-top: clamp(8rem, 12vw, 10.5rem);
}

.v2-hero h1,
.page-hero h1 {
  max-width: 820px;
  font-weight: 780;
  letter-spacing: -0.045em;
}

.v2-hero h1 {
  font-size: clamp(2.45rem, 4.25vw, 4rem);
}

.page-hero h1 {
  font-size: clamp(2.15rem, 3.1vw, 3.05rem);
}

.v2-kicker,
.v2-section-head span,
.v2-final-cta span,
.section-num,
.badge,
.page-visual-card > span {
  color: var(--fn-gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.v2-hero p,
.page-hero p {
  color: var(--fn-trust-muted);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
}

.v2-section,
.v2-ivory,
.v2-final-cta,
.content-page .page-hero,
.page-section,
.dark-section,
.domain-section,
.contact-section,
.cream-section,
.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section):not(.cream-section) {
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 155, 60, 0.08), transparent 30%),
    linear-gradient(180deg, #061025, #091832);
}

.v2-section,
.page-section {
  padding-top: clamp(5rem, 8vw, 7.4rem);
  padding-bottom: clamp(5rem, 8vw, 7.4rem);
}

.v2-section-head {
  margin-bottom: 3rem;
}

.v2-section-head h2,
.v2-final-cta h2,
.content-page .section-head h2 {
  font-weight: 780;
  letter-spacing: -0.04em;
}

.v2-metrics div,
.v2-showcase,
.v2-preview-card,
.v2-preview-grid div,
.v2-floating-card,
.v2-service-card,
.v2-process-list div,
.page-proof-strip div,
.page-visual-card,
.service-card,
.tutorial-card,
.resource-card,
.video-link-card,
.mcd-service-card,
.pricing-card,
.process-grid > div,
.showcase-grid article,
.contact-panel,
.gateway-card,
.domain-card,
.tutorial-detail-grid details,
.premium-note,
.info-item {
  border-color: rgba(240, 216, 144, 0.16);
  background:
    radial-gradient(circle at 94% 0%, rgba(240, 216, 144, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.v2-service-card {
  min-height: 340px;
  padding: 1.65rem;
}

.v2-service-card:hover,
.pricing-card.featured {
  border-color: rgba(240, 216, 144, 0.38);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-gold,
.btn-card,
.v2-nav-cta {
  color: #071124;
  background: linear-gradient(135deg, #f8e8ae 0%, #d3a84b 48%, #a97724 100%);
  box-shadow: 0 18px 44px rgba(200, 155, 60, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-outline,
.btn-soft {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.page-proof-strip {
  max-width: 1040px;
}

.page-hero .container {
  position: relative;
}

.page-visual-card {
  opacity: 0.96;
}

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 155, 60, 0.09), transparent 32%),
    linear-gradient(180deg, #091832, #02050c);
}

@media (max-width: 640px) {
  .v2-hero h1,
  .page-hero h1 {
    letter-spacing: -0.035em;
  }

  .v2-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .v2-section,
  .page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* V8 corporate premium homepage */
.v8-home {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 174, 87, 0.12), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(25, 65, 130, 0.14), transparent 34%),
    linear-gradient(180deg, #02050d 0%, #061126 46%, #081a34 100%);
}

.v8-hero {
  position: relative;
  padding: clamp(8.8rem, 13vw, 11.5rem) 0 clamp(5.5rem, 8vw, 7.5rem);
  overflow: hidden;
}

.v8-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 216, 144, 0.22), transparent);
}

.v8-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: clamp(2.6rem, 5vw, 5rem);
  align-items: center;
}

.v8-hero-copy {
  max-width: 820px;
}

.v8-kicker,
.v8-section-head span,
.v8-proof span,
.v8-final-cta span {
  display: inline-flex;
  color: #f0d890;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.v8-hero h1 {
  max-width: 800px;
  margin: 1rem 0 1.15rem;
  color: #f8fbff;
  font-size: clamp(2.65rem, 4.4vw, 4.35rem);
  font-weight: 740;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.v8-hero p {
  max-width: 720px;
  color: #cfd8e8;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.78;
}

.v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.v8-trust-panel {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(240, 216, 144, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 216, 144, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.v8-trust-panel > span {
  color: #f0d890;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v8-trust-panel > strong {
  display: block;
  margin: 0.75rem 0 1.25rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.v8-trust-list {
  display: grid;
  gap: 0.75rem;
}

.v8-trust-list div,
.v8-proof-grid > div,
.v8-service-item,
.v8-standard-list div {
  border: 1px solid rgba(240, 216, 144, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.v8-trust-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.9rem;
}

.v8-trust-list b {
  color: #f0d890;
  font-size: 0.82rem;
}

.v8-trust-list p,
.v8-proof p,
.v8-service-item p,
.v8-standard-list p,
.v8-final-cta p {
  color: #aebbd0;
  line-height: 1.65;
}

.v8-proof {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  background: linear-gradient(180deg, #061126, #07162d);
}

.v8-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.v8-proof-grid > div {
  padding: 1.25rem;
}

.v8-proof strong {
  display: block;
  margin: 0.35rem 0 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.v8-section {
  padding: clamp(5.4rem, 8vw, 7.6rem) 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(217, 174, 87, 0.08), transparent 30%),
    linear-gradient(180deg, #07162d, #081a34);
}

.v8-section-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.v8-section-head.left {
  margin: 0;
  text-align: left;
}

.v8-section-head h2,
.v8-final-cta h2 {
  margin: 0.8rem 0 0.8rem;
  color: #f8fbff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.v8-section-head p {
  color: #c7d1e2;
  line-height: 1.75;
}

.v8-service-list {
  display: grid;
  gap: 0.85rem;
}

.v8-service-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
  color: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.v8-service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 216, 144, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.v8-service-item > span {
  color: #f0d890;
  font-size: 0.8rem;
  font-weight: 850;
}

.v8-service-item h3 {
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 760;
  letter-spacing: -0.025em;
}

.v8-service-item strong {
  color: #f0d890;
  font-size: 0.9rem;
  white-space: nowrap;
}

.v8-standard {
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 216, 144, 0.08), transparent 30%),
    linear-gradient(180deg, #081a34, #061126);
}

.v8-standard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.v8-standard-list {
  display: grid;
  gap: 0.85rem;
}

.v8-standard-list div {
  padding: 1.15rem;
}

.v8-standard-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.v8-final-cta {
  padding: clamp(5.5rem, 8vw, 7.8rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 216, 144, 0.11), transparent 32%),
    linear-gradient(180deg, #061126, #02050d);
}

.v8-final-cta .container {
  max-width: 900px;
}

.v8-final-cta p {
  max-width: 740px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 980px) {
  .v8-hero-grid,
  .v8-standard-grid {
    grid-template-columns: 1fr;
  }

  .v8-service-item {
    grid-template-columns: 1fr;
  }

  .v8-service-item strong {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .v8-hero {
    padding: 4.5rem 0 3.8rem;
  }

  .v8-hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.85rem);
    letter-spacing: -0.04em;
  }

  .v8-actions .btn,
  .v8-final-cta .btn {
    width: 100%;
  }

  .v8-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* V9 quiet executive polish */
:root {
  --v9-navy-0: #01040b;
  --v9-navy-1: #040b18;
  --v9-navy-2: #081426;
  --v9-navy-3: #0d2039;
  --v9-gold: #d7b56a;
  --v9-gold-muted: #b9944d;
  --v9-line: rgba(215, 181, 106, 0.18);
  --v9-text: #f7f3ea;
  --v9-muted: #b8c3d6;
  --v9-dim: #8795ad;
}

.v8-home {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% -8%, rgba(215, 181, 106, 0.16), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(61, 104, 168, 0.12), transparent 34%),
    linear-gradient(180deg, var(--v9-navy-0) 0%, var(--v9-navy-1) 38%, var(--v9-navy-2) 100%);
}

.v8-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 86%);
}

.v2-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 18px auto 0;
  border: 1px solid rgba(215, 181, 106, 0.16);
  border-radius: 999px;
  background: rgba(1, 4, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.v2-brand span {
  color: var(--v9-text);
  font-weight: 780;
  letter-spacing: 0.16em;
}

.v2-nav-links {
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.035);
}

.v2-nav-links a {
  color: #d8deea;
  font-weight: 650;
}

.v2-nav-links a:hover {
  color: var(--v9-gold);
}

.v2-nav-cta {
  min-height: 40px;
  padding-inline: 1rem;
  border: 1px solid rgba(215, 181, 106, 0.3);
  border-radius: 999px;
  color: #090c12;
  background: linear-gradient(135deg, #f3dfa3, #d2ad62 55%, #9e7831);
}

.v8-hero {
  padding: clamp(8.8rem, 12vw, 11rem) 0 clamp(5.2rem, 7vw, 7rem);
}

.v8-hero::before {
  content: "";
  position: absolute;
  inset: 18% 6% auto auto;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  border: 1px solid rgba(215, 181, 106, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 106, 0.08), transparent 62%);
  opacity: 0.72;
}

.v8-hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.5fr);
  gap: clamp(3rem, 6vw, 6.5rem);
}

.v8-kicker,
.v8-section-head span,
.v8-proof span,
.v8-final-cta span,
.v8-trust-panel > span {
  color: var(--v9-gold);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.28em;
}

.v8-hero h1 {
  max-width: 850px;
  margin: 1.15rem 0 1.25rem;
  color: var(--v9-text);
  font-family: var(--sans);
  font-size: clamp(2.05rem, 3.55vw, 3.65rem);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.v8-hero p {
  max-width: 700px;
  color: var(--v9-muted);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.88;
}

.v8-actions {
  margin-top: 2.15rem;
  gap: 0.75rem;
}

.btn {
  min-height: 46px;
  padding-inline: 1.15rem;
  font-weight: 720;
}

.btn-gold,
.btn-card {
  background: linear-gradient(135deg, #f2dda0 0%, #d5b268 52%, #987232 100%);
  box-shadow: 0 16px 42px rgba(215, 181, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-outline,
.btn-soft {
  color: #e8d39a;
  border-color: rgba(215, 181, 106, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.v8-trust-panel {
  padding: 1.15rem;
  border-color: var(--v9-line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(215, 181, 106, 0.14), transparent 38%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.v8-trust-panel > strong {
  margin-top: 0.9rem;
  color: var(--v9-text);
  font-family: var(--sans);
  font-size: clamp(1.28rem, 1.75vw, 1.68rem);
  font-weight: 720;
  line-height: 1.18;
}

.v8-trust-list div,
.v8-proof-grid > div,
.v8-service-item,
.v8-standard-list div {
  border-color: rgba(215, 181, 106, 0.13);
  background: rgba(255, 255, 255, 0.032);
}

.v8-trust-list div {
  border-radius: 24px;
  padding: 1rem;
}

.v8-trust-list b {
  color: var(--v9-gold);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 820;
}

.v8-proof {
  padding-bottom: clamp(4.6rem, 7vw, 6.4rem);
  background: linear-gradient(180deg, transparent, rgba(8, 20, 38, 0.52));
}

.v8-proof-grid > div {
  min-height: 168px;
  padding: 1.35rem;
  border-radius: 28px;
}

.v8-proof strong {
  color: var(--v9-text);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 760;
}

.v8-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 181, 106, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.88), rgba(4, 11, 24, 0.96));
}

.v8-section-head h2,
.v8-final-cta h2 {
  color: var(--v9-text);
  font-family: var(--sans);
  font-weight: 760;
  font-size: clamp(1.52rem, 2.22vw, 2.28rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.v8-section-head p,
.v8-trust-list p,
.v8-proof p,
.v8-service-item p,
.v8-standard-list p,
.v8-final-cta p {
  color: var(--v9-muted);
}

.v8-service-list {
  gap: 0.75rem;
}

.v8-service-item {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 0% 50%, rgba(215, 181, 106, 0.08), transparent 26%);
}

.v8-service-item:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 181, 106, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 0% 50%, rgba(215, 181, 106, 0.11), transparent 28%);
}

.v8-service-item > span {
  color: rgba(215, 181, 106, 0.78);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 820;
}

.v8-service-item h3 {
  color: var(--v9-text);
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 650;
}

.v8-service-item strong {
  color: var(--v9-gold);
  font-weight: 700;
}

.v8-standard {
  background:
    radial-gradient(circle at 86% 0%, rgba(215, 181, 106, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(4, 11, 24, 0.96), rgba(8, 20, 38, 0.88));
}

.v8-standard-list div {
  border-radius: 28px;
  padding: 1.35rem;
}

.v8-standard-list strong {
  color: var(--v9-text);
}

.v8-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 181, 106, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.9), var(--v9-navy-0));
}

.site-footer {
  border-top: 1px solid rgba(215, 181, 106, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 181, 106, 0.08), transparent 28%),
    linear-gradient(180deg, var(--v9-navy-1), var(--v9-navy-0));
}

@media (max-width: 980px) {
  .v2-nav {
    width: min(100% - 24px, 760px);
    border-radius: 28px;
  }

  .v8-hero-grid {
    grid-template-columns: 1fr;
  }

  .v8-trust-panel {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .v8-hero {
    padding-top: 5.8rem;
  }

  .v8-hero h1 {
    font-size: clamp(1.82rem, 8.1vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .v8-service-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .v8-service-item strong {
    white-space: normal;
  }
}
/* ==========================================================================
   V13 — consolidated subpage polish (2026-06-20)
   Aligns content pages with homepage v9 corporate premium theme.
   ========================================================================== */

.content-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  color: var(--v9-text, #f7f3ea);
}

.content-page::before {
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 86%);
}

.content-page .page-hero {
  position: relative;
  padding-top: clamp(8.4rem, 11vw, 10.8rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.content-page .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 181, 106, 0.22), transparent);
}

.content-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--v9-dim, #8795ad);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.content-page .back-link:hover {
  color: var(--v9-gold, #d7b56a);
  border-color: rgba(215, 181, 106, 0.22);
}

.v2-nav-links a[aria-current="page"] {
  color: var(--v9-gold, #d7b56a) !important;
  background: rgba(215, 181, 106, 0.14);
}

.v2-nav-cta[aria-current="page"] {
  box-shadow: 0 0 0 2px rgba(215, 181, 106, 0.45), 0 18px 44px rgba(200, 155, 60, 0.26);
}

.content-page .section-num,
.content-page .page-visual-card > span {
  color: var(--v9-gold, #d7b56a);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.content-page .page-hero h1 {
  color: var(--v9-text, #f7f3ea);
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.content-page .page-hero p {
  color: var(--v9-muted, #b8c3d6);
  line-height: 1.85;
}

.content-page .page-proof-strip div {
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.content-page .page-proof-strip div:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 181, 106, 0.24);
}

.content-page .service-card,
.content-page .tutorial-card,
.content-page .resource-card,
.content-page .mcd-service-card,
.content-page .pricing-card,
.content-page .gateway-card,
.content-page .contact-panel,
.content-page .domain-card,
.content-page .page-visual-card,
.content-page .video-link-card,
.content-page .info-item {
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-page .service-card:hover,
.content-page .tutorial-card:hover,
.content-page .resource-card:hover,
.content-page .mcd-service-card:hover,
.content-page .pricing-card:hover,
.content-page .gateway-card:hover,
.content-page .video-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 181, 106, 0.28);
}

.content-page .site-footer {
  border-top: 1px solid rgba(215, 181, 106, 0.12);
}

/* V13b — restore readable light text on dark subpages */
.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section):not(.cream-section) .section-head h2,
.content-page .section-head h2,
.content-page .domain-copy h2,
.content-page .contact-panel h2,
.content-page .gateway-card h3,
.content-page .pricing-card h3,
.content-page .service-card h3,
.content-page .tutorial-card h3,
.content-page .resource-card h3,
.content-page .video-link-card h3,
.content-page .mcd-service-card h3,
.content-page .process-grid h3,
.content-page .showcase-grid strong,
.content-page .info-item strong,
.content-page .domain-card h3,
.content-page .page-visual-card > strong,
.content-page .premium-note strong,
.content-page .tutorial-detail-grid summary {
  color: var(--fn-trust-text, #f8fbff);
}

.content-page .page-section:not(.dark-section):not(.domain-section):not(.contact-section):not(.cream-section) .section-head p,
.content-page .section-head p,
.content-page .domain-copy p,
.content-page .contact-panel p,
.content-page .gateway-card p,
.content-page .pricing-card p,
.content-page .service-card p,
.content-page .tutorial-card p,
.content-page .resource-card p,
.content-page .video-link-card p,
.content-page .mcd-service-card p,
.content-page .process-grid p,
.content-page .showcase-grid p,
.content-page .showcase-grid span,
.content-page .pricing-card li,
.content-page .card-desc,
.content-page .tutorial-detail-grid p,
.content-page .domain-card p,
.content-page .domain-points span,
.content-page .info-item span,
.content-page .premium-note,
.content-page .container > p,
.content-page li {
  color: var(--fn-trust-muted, #d1d9e8);
}

.content-page .back-link {
  color: var(--fn-trust-dim, #c5d0e3);
}

.content-page .premium-note {
  color: var(--fn-trust-muted, #d1d9e8);
  border-color: rgba(240, 216, 144, 0.2);
  background: rgba(255, 255, 255, 0.065);
}

.content-page .pricing-card .amount,
.content-page .domain-card span,
.content-page .domain-card strong {
  color: var(--fn-gold-soft, #f0d890);
}

.content-page .tutorial-detail-grid a {
  color: var(--fn-gold-soft, #f0d890);
}

@media (max-width: 980px) {
  .content-page .page-hero {
    padding-top: clamp(6.5rem, 14vw, 8rem);
  }
}
