:root {
  --void: #070b1b;
  --void-soft: #0d1733;
  --panel: rgba(16, 30, 68, 0.88);
  --panel-solid: #111f46;
  --ink: #f7fbff;
  --ink-soft: #c9d8f3;
  --muted: #91a6c8;
  --line: rgba(120, 228, 255, 0.24);
  --cyan: #72eaff;
  --cyan-deep: #238dff;
  --violet: #8b62ff;
  --pink: #e45cff;
  --green: #5cffc8;
  --footer: #050817;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --glow: 0 0 26px rgba(114, 234, 255, 0.23), 0 0 48px rgba(139, 98, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 16% 8%, rgba(114, 234, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(139, 98, 255, 0.16), transparent 28%),
    radial-gradient(circle at 52% 70%, rgba(228, 92, 255, 0.11), transparent 34%),
    var(--void);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.crown-harbor {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 11, 27, 0.84);
  border-bottom: 1px solid rgba(114, 234, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.charter-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.harbor-line {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-seal,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(114, 234, 255, 0.22);
}

.seal-orbit {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 25%, #ffffff 0%, var(--cyan) 18%, var(--violet) 68%, #2b126e 100%);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 24px rgba(114, 234, 255, 0.52), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.route-ledger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.route-ledger a {
  padding: 10px 14px;
  color: #d9e8ff;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.route-ledger a:hover {
  color: #ffffff;
  background: rgba(114, 234, 255, 0.12);
  border-color: rgba(114, 234, 255, 0.55);
  transform: translateY(-1px);
}

.opening-charter {
  padding: 96px 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 35%, rgba(114, 234, 255, 0.18), transparent 24%),
    radial-gradient(circle at 28% 82%, rgba(139, 98, 255, 0.14), transparent 30%);
}

.opening-balance,
.dual-briefing,
.split-ledger,
.advice-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.principal-copy,
.process-copy,
.section-heading,
.briefing-text {
  flex: 1 1 0;
}

.principal-copy h1,
.section-heading h2,
.process-copy h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.principal-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 760px;
  text-shadow: 0 0 28px rgba(114, 234, 255, 0.18);
}

.section-heading h2,
.process-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.quiet-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 13px;
  color: #bff7ff;
  background: rgba(114, 234, 255, 0.10);
  border: 1px solid rgba(114, 234, 255, 0.38);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(114, 234, 255, 0.14);
}

.lead-statement {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.action-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-action {
  background: linear-gradient(135deg, #7b4dff 0%, #2f9cff 58%, #21e6ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 28px rgba(114, 234, 255, 0.28), 0 14px 32px rgba(0, 0, 0, 0.28);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(114, 234, 255, 0.44), 0 18px 40px rgba(0, 0, 0, 0.34);
}

.secondary-action {
  background: rgba(12, 23, 55, 0.92);
  border: 1px solid rgba(114, 234, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.secondary-action:hover {
  border-color: rgba(228, 92, 255, 0.72);
  background: rgba(33, 24, 78, 0.92);
  box-shadow: 0 0 24px rgba(228, 92, 255, 0.2);
}

.proof-ledger {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-ledger span {
  padding: 12px 15px;
  border: 1px solid rgba(114, 234, 255, 0.24);
  border-radius: 14px;
  background: rgba(16, 30, 68, 0.72);
  color: var(--muted);
  box-shadow: var(--glow);
}

.proof-ledger strong {
  color: var(--cyan);
}

.showcase-frame,
.image-ledger {
  flex: 0 1 510px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(114, 234, 255, 0.20), rgba(139, 98, 255, 0.18));
  border: 1px solid rgba(114, 234, 255, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow), var(--glow);
}

.showcase-frame img,
.image-ledger img {
  border-radius: 20px;
}

.company-plain,
.benefit-cabinet,
.operations-panel,
.advice-bank,
.confidence-room,
.review-hall,
.question-desk {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.company-plain,
.advice-bank,
.question-desk {
  background: rgba(8, 14, 33, 0.36);
}

.benefit-cabinet,
.confidence-room {
  background: rgba(13, 24, 54, 0.48);
}

.briefing-text {
  padding: 30px;
  border: 1px solid rgba(114, 234, 255, 0.22);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.briefing-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.briefing-text p+p {
  margin-top: 18px;
}

.centered-note {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered-note p:last-child {
  margin: 18px auto 0;
  max-width: 700px;
  color: var(--muted);
}

.card-row,
.support-row,
.advice-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.asset-card,
.support-block,
.guidance-note {
  flex: 1 1 280px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(114, 234, 255, 0.23);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.asset-card::after,
.support-block::after,
.guidance-note::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 234, 255, 0.16), transparent 68%);
}

.asset-card h3,
.support-block h3,
.guidance-note h3,
.step-line h3 {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.2;
  font-size: 20px;
}

.asset-card p,
.support-block p,
.guidance-note p,
.step-line p,
.process-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.number-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 36px;
  margin-bottom: 22px;
  color: #ffffff;
  background: rgba(114, 234, 255, 0.10);
  border: 1px solid rgba(114, 234, 255, 0.44);
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 0 18px rgba(114, 234, 255, 0.18);
}

.operations-panel,
.review-hall {
  background:
    radial-gradient(circle at 14% 40%, rgba(114, 234, 255, 0.10), transparent 28%),
    radial-gradient(circle at 88% 60%, rgba(139, 98, 255, 0.14), transparent 25%),
    rgba(9, 15, 35, 0.70);
}

.process-stack {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(114, 234, 255, 0.24);
  border-radius: 18px;
  background: rgba(16, 30, 68, 0.76);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.step-line span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--cyan-deep));
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(114, 234, 255, 0.30);
}

.advice-layout {
  align-items: flex-start;
}

.advice-cards {
  flex: 1.4 1 0;
}

.guidance-note {
  flex-basis: 220px;
}

.reverse-ledger {
  flex-direction: row;
}

.assurance-list {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.assurance-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.assurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(114, 234, 255, 0.12), 0 0 16px rgba(114, 234, 255, 0.55);
}

.narrow-ledger {
  flex-basis: 470px;
}

.quote-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--cyan);
  border-radius: 16px;
  background: rgba(16, 30, 68, 0.86);
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}

blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 900;
}

.support-row {
  align-items: stretch;
}

.support-block {
  flex-basis: 340px;
}

.closing-registry {
  padding: 46px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 234, 255, 0.10), transparent 34%),
    var(--footer);
  border-top: 1px solid rgba(114, 234, 255, 0.20);
}

.footer-balance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.footer-balance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.closing-registry a:hover {
  opacity: 0.78;
}

@media (max-width: 900px) {

  .harbor-line,
  .opening-balance,
  .dual-briefing,
  .split-ledger,
  .advice-layout,
  .reverse-ledger {
    flex-direction: column;
    align-items: stretch;
  }

  .harbor-line {
    padding: 18px 0;
  }

  .route-ledger {
    justify-content: flex-start;
  }

  .opening-charter {
    padding-top: 56px;
  }

  .showcase-frame,
  .image-ledger {
    flex-basis: auto;
  }
}

@media (max-width: 560px) {
  .charter-shell {
    width: min(100% - 28px, 1160px);
  }

  .route-ledger a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .company-plain,
  .benefit-cabinet,
  .operations-panel,
  .advice-bank,
  .confidence-room,
  .review-hall,
  .question-desk {
    padding: 58px 0;
  }

  .asset-card,
  .support-block,
  .guidance-note,
  .briefing-text {
    padding: 22px;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}