:root {
  --bg: #0b1020;
  --panel: #121931;
  --panel-2: #0f1529;
  --text: #eef2ff;
  --muted: #b7c0d8;
  --line: rgba(255,255,255,0.09);
  --gold: #f2c86f;
  --green: #b7ddc6;
  --red: #ef9a9a;
  --shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.rico-execution {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.rico-execution h2 {
    font-size: 1.8rem;
    color: #f5c542;
    margin-bottom: 20px;
}

.rico-execution p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight {
    color: #ffffff;
    font-weight: 600;
}

.rico-block {
    border-left: 3px solid #f5c542;
    padding-left: 15px;
    margin: 25px 0;
}

.rule {
    font-size: 1.1rem;
    color: #ffffff;
}

.rico-compare {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.rico-compare div {
    flex: 1;
    background: #111827;
    padding: 15px;
    border-radius: 8px;
}

.label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.final-line {
    margin-top: 20px;
    font-weight: 600;
    color: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #17203d 0%, var(--bg) 42%);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand span { color: var(--gold); }

nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: var(--muted);
  font-weight: 600;
}

nav a.active,
nav a:hover {
  color: var(--text);
}

section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

sercion {
    padding: 60px 20 px;
}

.centered { text-align: center; }
.narrow { max-width: 820px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.76rem;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.14rem;
}

.section-copy {
  color: var(--muted);
  margin: 0 auto 28px;
}

.statement,
.cta-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px 28px;
  box-shadow: var(--shadow);
}

section: mth-child(even) {
    background: #0c0f14;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-primary {
  background: var(--gold);
  color: #141414;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.diagram-frame img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.logo img {
    height: 66px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; /* keep this tight */
}


.diagram-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.demo-box {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.08);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.diagram-card img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.emphasis-card {
  border-color: rgba(242, 200, 111, 0.45);
}

.card p,
.statement p,
.cta-band p {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 46px;
  text-align: center;
  color: var(--muted);
}

.site-footer p { margin: 0; }
.muted { margin-top: 6px !important; font-size: 0.95rem; }

@media (max-width: 980px) {
  .three-up,
  .four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    padding: 14px 0;
  }
.brand-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
  section { padding: 46px 0; }

  .two-up,
  .three-up,
  .four-up {
    grid-template-columns: 1fr;
  }

  .statement,
  .cta-band,
  .card {
    border-radius: 20px;
  }

  h1 { font-size: 2.35rem; }
}

/* ==============================
   PGC01 Page — V2 Refinement
   ============================== */
.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.pgc-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 38px;
  align-items: center;
}

.pgc-hero-copy h1 {
  max-width: 680px;
}

.left-lead {
  margin-left: 0;
  margin-right: 0;
}

.pgc-copy {
  max-width: 680px;
  margin: 18px 0 0;
}

.pgc-cta {
  justify-content: flex-start;
}

.pgc-visual-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(242, 200, 111, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 200, 111, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.pgc-visual-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.visual-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.pgc-stack-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.pgc-stack-copy p {
  color: var(--muted);
}

.pgc-stack-list {
  display: grid;
  gap: 14px;
}

.pgc-stack-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.pgc-stack-item span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 200, 111, 0.14);
  border: 1px solid rgba(242, 200, 111, 0.35);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
}

.pgc-stack-item strong {
  color: var(--text);
  font-size: 1.03rem;
}

.pgc-stack-item p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .pgc-hero,
  .pgc-stack-section {
    grid-template-columns: 1fr;
  }

  .pgc-cta {
    justify-content: center;
  }

  .pgc-hero-copy {
    text-align: center;
  }

  .left-lead,
  .pgc-copy {
    margin-left: auto;
    margin-right: auto;
  }
}
