:root {
  --ink: #162027;
  --navy: #172433;
  --navy-2: #203246;
  --paper: #f7f3ea;
  --panel: #fffaf1;
  --soft: #ece3d3;
  --line: rgba(22, 32, 39, 0.14);
  --muted: #66717b;
  --gold: #c59a4a;
  --gold-2: #e3c06f;
  --gold-3: #f0d88d;
  --sage: #6f8377;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(19, 26, 33, 0.13);
  --visual-shadow: 0 28px 70px rgba(16, 24, 32, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(23, 36, 51, 0.78);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark img {
  width: auto;
  height: clamp(34px, 4vw, 48px);
  max-width: min(260px, 48vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-2);
}

.section,
.hero,
.final-cta {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-dark {
  background:
    linear-gradient(130deg, rgba(111, 131, 119, 0.14), transparent 34%),
    linear-gradient(210deg, rgba(197, 154, 74, 0.16), transparent 48%),
    var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 70px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 192, 111, 0.65), transparent);
}

.hero-visual {
  order: 2;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-content {
  order: 1;
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.tagline {
  color: var(--gold-2);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.promise {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold-2);
  color: #18212b;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.26);
  color: var(--white);
  background: rgba(255, 253, 248, 0.06);
}

.section:not(.section-dark) .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
}

.alignment-graphic {
  width: min(100%, 620px);
  overflow: visible;
}

.guide-lines path,
.thin-path,
.direction-path {
  fill: none;
  stroke: rgba(227, 192, 111, 0.6);
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 10;
  vector-effect: non-scaling-stroke;
}

.guide-lines path:first-child,
.direction-path {
  stroke: var(--gold-3);
  stroke-width: 4;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  filter: url("#goldGlow");
}

.block,
.mini-block {
  overflow: visible;
  transform-box: fill-box;
  transform-origin: center;
  filter: url("#premiumBlockShadow");
  will-change: transform, opacity;
}

.block-cast-shadow {
  fill: rgba(6, 14, 22, 0.26);
  opacity: 0.72;
}

.block-front {
  fill: url("#blockFrontHero");
  stroke: rgba(255, 253, 248, 0.76);
  stroke-width: 1.1;
}

.block-top {
  fill: url("#blockTopHero");
  stroke: rgba(255, 253, 248, 0.72);
  stroke-width: 1;
}

.block-side {
  fill: url("#blockSideHero");
  stroke: rgba(108, 83, 39, 0.62);
  stroke-width: 1;
}

.block-highlight {
  fill: none;
  stroke: rgba(255, 253, 248, 0.74);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.8;
}

.dot,
.path-dot,
.loose-dot {
  fill: var(--gold-3);
  stroke: rgba(71, 50, 20, 0.36);
  stroke-width: 1.5;
  filter: url("#goldGlow");
  vector-effect: non-scaling-stroke;
}

.align-on-load .b1 {
  transform: translate(86px, -92px) rotate(-11deg);
}

.align-on-load .b2 {
  transform: translate(-84px, 52px) rotate(9deg);
}

.align-on-load .b3 {
  transform: translate(34px, -82px) rotate(-7deg);
}

.align-on-load .b4 {
  transform: translate(-64px, 76px) rotate(8deg);
}

.align-on-load .b5 {
  transform: translate(50px, -54px) rotate(-9deg);
}

.align-on-load .dot {
  opacity: 0;
}

.align-on-load.is-aligned .block,
.align-on-load.is-aligned .dot {
  transform: translate(0, 0) rotate(0);
  opacity: 1;
  transition: transform 2500ms cubic-bezier(0.19, 1, 0.22, 1), opacity 900ms ease;
}

.align-on-load.is-aligned .guide-lines path:first-child {
  animation: drawPath 2200ms 450ms ease forwards;
}

.section-grid,
.about-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.02fr);
}

.copy-block {
  max-width: 700px;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .copy-block p,
.section-dark .section-heading p {
  color: rgba(255, 253, 248, 0.72);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #38434c;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}

.visual-panel {
  min-height: 340px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 32, 39, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(227, 192, 111, 0.14), transparent 28%),
    linear-gradient(rgba(22, 32, 39, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 32, 39, 0.034) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 253, 248, 0.88), rgba(239, 229, 207, 0.74));
  background-size: auto, 36px 36px, 36px 36px, auto;
  box-shadow: var(--visual-shadow);
  overflow: hidden;
}

.mini-graphic {
  width: min(100%, 420px);
  overflow: visible;
}

.mini-graphic .block-front {
  fill: #243241;
  stroke: rgba(255, 253, 248, 0.48);
  stroke-width: 1.2;
}

.mini-graphic .block-top {
  fill: #eed38d;
  stroke: rgba(112, 78, 28, 0.5);
}

.mini-graphic .block-side {
  fill: #8e6b32;
  stroke: rgba(28, 35, 42, 0.64);
}

.mini-graphic .block-cast-shadow {
  fill: rgba(20, 31, 40, 0.38);
}

.mini-graphic .block-highlight {
  stroke: rgba(255, 253, 248, 0.5);
}

.thin-path {
  stroke: rgba(43, 55, 66, 0.5);
  stroke-width: 2.75;
  stroke-dasharray: 6 12;
}

.problem-section {
  background: var(--panel);
}

.transformation-section,
.audience-section {
  background: #f2eadb;
}

.misalign-graphic .m1 {
  transform: translate(58px, -38px) rotate(-13deg);
}

.misalign-graphic .m2 {
  transform: translate(-54px, 44px) rotate(10deg);
}

.misalign-graphic .m3 {
  transform: translate(28px, -58px) rotate(-9deg);
}

.misalign-graphic .m4 {
  transform: translate(-24px, 52px) rotate(12deg);
}

.visual-panel.is-visible .misalign-graphic .mini-block {
  transition: transform 2200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-panel.is-visible .misalign-graphic .m1 {
  transform: translate(20px, -12px) rotate(-6deg);
}

.visual-panel.is-visible .misalign-graphic .m2 {
  transform: translate(-17px, 20px) rotate(5deg);
}

.visual-panel.is-visible .misalign-graphic .m3 {
  transform: translate(15px, -20px) rotate(-5deg);
}

.visual-panel.is-visible .misalign-graphic .m4 {
  transform: translate(-22px, 14px) rotate(6deg);
}

.loose-line {
  stroke: rgba(32, 50, 70, 0.48);
  stroke-width: 3;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.direction-path {
  stroke: #c49433;
  stroke-width: 4.5;
}

.transform-graphic .mini-block,
.transform-graphic .path-dot {
  transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
}

.transform-graphic .a1 {
  --tx: 86px;
  --ty: -58px;
  --rot: -9deg;
}

.transform-graphic .a2 {
  --tx: -76px;
  --ty: 42px;
  --rot: 8deg;
}

.transform-graphic .a3 {
  --tx: 58px;
  --ty: 62px;
  --rot: -6deg;
}

.transform-graphic .a4 {
  --tx: -62px;
  --ty: -48px;
  --rot: 8deg;
}

.visual-panel.is-visible .transform-graphic .mini-block,
.visual-panel.is-visible .transform-graphic .path-dot {
  transform: translate(0, 0) rotate(0);
  transition: transform 2400ms cubic-bezier(0.19, 1, 0.22, 1), opacity 900ms ease;
}

.visual-panel.is-visible .direction-path {
  animation: drawPath 2100ms 250ms ease forwards;
}

.contrast-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin: 6px 0 26px;
}

.contrast-row span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.58);
  color: var(--ink);
  font-weight: 800;
}

.contrast-row span:last-child {
  border-color: rgba(197, 154, 74, 0.42);
  background: rgba(227, 192, 111, 0.16);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.method-track {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 16px;
}

.method-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1700ms ease;
}

.method-track.is-visible::before {
  transform: scaleX(1);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.065);
  backdrop-filter: blur(14px);
}

.step-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 6px;
  background: var(--gold-2);
  color: var(--navy);
  font-weight: 900;
}

.step-card p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.94rem;
}

.cards-section {
  background: var(--paper);
}

.receive-section {
  background: var(--panel);
}

.card-grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 46px rgba(19, 26, 33, 0.06);
}

.info-card span {
  width: 30px;
  height: 14px;
  display: block;
  margin-bottom: 22px;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--sage);
}

.info-card p {
  margin-bottom: 0;
  color: #29343e;
  font-weight: 800;
  line-height: 1.35;
}

.copy-block.wide {
  width: min(850px, 100%);
  max-width: none;
  margin: 0 auto 34px;
  text-align: center;
}

.audience-list {
  width: min(1030px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.audience-list span {
  padding: 12px 16px;
  border: 1px solid rgba(22, 32, 39, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.62);
  color: #35404a;
  font-weight: 700;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.about-title {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  content: none;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(22, 32, 39, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(19, 26, 33, 0.12);
}

.final-cta {
  text-align: center;
}

.cta-inner {
  width: min(800px, 100%);
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 18px;
}

.cta-inner p {
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.1rem;
}

.cta-inner .button-row {
  justify-content: center;
}

.cta-inner strong {
  display: block;
  margin-top: 34px;
  color: var(--gold-2);
  letter-spacing: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #101820;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 700;
}

.site-footer a {
  color: var(--gold-2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid .reveal:nth-child(2),
.method-track .reveal:nth-child(2),
.audience-list .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.card-grid .reveal:nth-child(3),
.method-track .reveal:nth-child(3),
.audience-list .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.card-grid .reveal:nth-child(4),
.method-track .reveal:nth-child(4),
.audience-list .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.card-grid .reveal:nth-child(5),
.method-track .reveal:nth-child(5),
.audience-list .reveal:nth-child(5) {
  transition-delay: 360ms;
}

.card-grid .reveal:nth-child(6),
.method-track .reveal:nth-child(6),
.audience-list .reveal:nth-child(6) {
  transition-delay: 450ms;
}

.card-grid .reveal:nth-child(7),
.audience-list .reveal:nth-child(7) {
  transition-delay: 540ms;
}

.card-grid .reveal:nth-child(8) {
  transition-delay: 630ms;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1120px) {
  .method-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .method-track::before {
    display: none;
  }

  .step-card span {
    margin-bottom: 28px;
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
  }

  .hero-visual {
    order: 2;
    min-height: 280px;
    margin-top: -18px;
  }

  .alignment-graphic {
    width: min(100%, 520px);
  }

  .hero-content {
    order: 1;
  }

  .section-grid,
  .section-grid.reverse,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 260px;
  }

  .check-list,
  .contrast-row,
  .card-grid,
  .card-grid.compact {
    grid-template-columns: 1fr;
  }

  .method-track {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .portrait-frame {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .section,
  .hero,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .align-on-load .block,
  .align-on-load .dot,
  .mini-block,
  .path-dot {
    opacity: 1 !important;
    transform: none !important;
  }
}
