/* ============================================
   RAUNIC — design system
   ============================================ */

:root {
  /* palette */
  --navy-deep: #0B131C;
  --navy: #13202E;
  --navy-panel: #1B2A3A;
  --navy-line: #243446;
  --steel: #3E5A74;
  --ice: #C9D6E3;
  --ice-soft: #DEE6EF;
  --bg-light: #EDF1F5;
  --bg-cream: #F4F1EA;
  --white: #FFFFFF;
  --gold: #C7A867;
  --gold-deep: #A98944;

  /* type */
  --serif: "Instrument Serif", "Newsreader", Georgia, serif;
  --sans: "Geist", "Söhne", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* spacing */
  --pad-x: clamp(20px, 4vw, 64px);
  --rule: 1px solid rgba(255,255,255,0.08);
  --rule-dark: 1px solid rgba(19,32,46,0.10);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--navy); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(11, 19, 28, 0);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  color: var(--white);
}
.nav.is-scrolled {
  background: rgba(11, 19, 28, 0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav.is-light {
  color: var(--navy);
  background: rgba(237, 241, 245, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: rgba(19,32,46,0.08);
}
.nav__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: 0;
}
.nav__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
}
.nav__mark--dark { display: none; }
.nav.is-light .nav__mark--light { display: none; }
.nav.is-light .nav__mark--dark { display: inline-block; }
.nav__word {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav__word i { font-style: normal; letter-spacing: 0; }
.nav__links {
  display: flex; gap: 28px;
  justify-content: center;
  font-size: 13px;
}
.nav__links a {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 0;
  opacity: .78;
  transition: opacity .2s ease;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links .num {
  font-family: var(--mono);
  font-size: 10px;
  opacity: .55;
  letter-spacing: 0.04em;
}
.nav__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.nav.is-light .lang {
  border-color: rgba(19,32,46,0.15);
  background: rgba(19,32,46,0.02);
}
.lang a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  background: transparent;
  color: currentColor;
  opacity: .55;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.lang a:hover { opacity: .9; }
.lang a[aria-current="true"] {
  opacity: 1;
  background: var(--gold);
  color: var(--navy-deep);
}
.nav__cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: .92;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.nav__cta:hover { opacity: 1; background: currentColor; color: var(--navy); }
.nav.is-light .nav__cta:hover { color: var(--white); }
.nav__progress {
  position: absolute; left: 0; bottom: -1px;
  height: 1px; background: var(--gold);
  width: 0%; transition: width .15s ease;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__cta { display: none; }
}

/* ============================================
   TYPE PRIMITIVES
   ============================================ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--ice);
}
.display__line { display: inline-block; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.h-display em { font-style: italic; color: var(--steel); }
.section--dark .h-display em,
.section--deepest .h-display em { color: var(--ice); }

.h-display--lg {
  font-size: clamp(54px, 8vw, 108px);
}

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  max-width: 50ch;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.lede--dark { color: rgba(19,32,46,0.72); }
.lede--light { color: rgba(255,255,255,0.78); }

.label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(19,32,46,0.55);
  display: inline-flex; align-items: center; gap: 10px;
}
.label--light { color: rgba(255,255,255,0.55); }
.label .num {
  display: inline-block;
  padding: 3px 6px;
  background: rgba(19,32,46,0.07);
  border-radius: 3px;
  font-size: 10px;
}
.label--light .num {
  background: rgba(255,255,255,0.08);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(199,168,103,0.7);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199,168,103,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(199,168,103,0); }
  100% { box-shadow: 0 0 0 0 rgba(199,168,103,0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--white); border-color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.btn--block { width: 100%; justify-content: center; padding: 18px 26px; }
.btn--phone {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 22px;
}
.btn--phone svg { opacity: .85; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
}
.section--light { background: var(--bg-light); color: var(--navy); }
.section--cream { background: var(--bg-cream); color: var(--navy); }
.section--dark { background: var(--navy); color: var(--white); }
.section--deepest { background: var(--navy-deep); color: var(--white); }
.section--rule-top { border-top: var(--rule-dark); }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 880px) {
  .container--split { grid-template-columns: 1fr; }
}

.section__head { max-width: 980px; margin-bottom: clamp(48px, 6vw, 88px); }
.section__head .label { margin-bottom: 28px; }
.section__head .h-display { margin-bottom: 24px; }
.section__lede {
  font-size: clamp(17px, 1.3vw, 20px);
  max-width: 60ch;
  color: rgba(19,32,46,0.72);
  margin: 0;
  line-height: 1.55;
}
.section--dark .section__lede,
.section--deepest .section__lede { color: rgba(255,255,255,0.72); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(62,90,116,0.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(199,168,103,0.10), transparent 60%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 4px
    );
  mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 60px; }
}

.hero__type .eyebrow { margin-bottom: 32px; }
.hero__type .display { margin-bottom: 36px; }
.hero__type .lede { margin-bottom: 40px; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: var(--rule);
  margin: 0;
  max-width: 560px;
}
.hero__facts > div { display: flex; flex-direction: column; gap: 4px; }
.hero__facts dt {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
}
.hero__facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* hero panel — living AI */
.hero__panel { position: relative; }
.panel {
  position: relative;
  background: linear-gradient(180deg, #182536, #0e1825);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(199,168,103,0.04);
  overflow: hidden;
  z-index: 2;
}
.panel__chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.panel__dots { display: flex; gap: 6px; }
.panel__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.panel__dots span:first-child { background: rgba(199,168,103,0.7); }
.panel__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: lowercase;
}
.panel__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6cd087;
  box-shadow: 0 0 8px #6cd087;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.panel__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.msg { display: flex; flex-direction: column; gap: 6px; max-width: 90%; }
.msg__role {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
}
.msg p {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 14.5px;
  line-height: 1.5;
}
.msg--user { align-self: flex-start; }
.msg--user p { background: rgba(62,90,116,0.18); }
.msg--bot { align-self: flex-end; }
.msg--bot p {
  background: rgba(199,168,103,0.08);
  border-color: rgba(199,168,103,0.18);
  color: var(--white);
}
.msg--meta { width: 100%; max-width: 100%; }
.msg--meta { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.msg--meta .step {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.02);
  display: flex; align-items: center; gap: 6px;
}
.msg--meta .step b {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 600px) {
  .msg--meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

[data-typewriter]::after {
  content: "▍";
  display: inline-block;
  color: var(--gold);
  animation: blink 1s steps(1) infinite;
}
[data-typewriter].is-done::after { display: none; }
@keyframes blink {
  50% { opacity: 0; }
}

.panel__footer {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}
.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  font-family: var(--mono);
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
}
.panel__hint {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.ticker {
  position: absolute;
  left: -6%; right: -6%;
  bottom: -22px;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ticker__row {
  display: flex; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 40px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 56px; height: 1px;
  background: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  animation: scroll-line 2.6s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   PROBLEMS
   ============================================ */
.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule-dark);
  border-bottom: var(--rule-dark);
}
.problem {
  padding: 56px 40px;
  border-right: var(--rule-dark);
  display: flex; flex-direction: column; gap: 16px;
}
.problem:last-child { border-right: none; }
.problem__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.problem h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.problem p {
  font-size: 15px;
  color: rgba(19,32,46,0.7);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 880px) {
  .problems { grid-template-columns: 1fr; }
  .problem { border-right: none; border-bottom: var(--rule-dark); padding: 36px 0; }
  .problem:last-child { border-bottom: none; }
}

.pull {
  margin-top: clamp(60px, 8vw, 100px);
  max-width: 920px;
}
.pull p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1100px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .services { grid-template-columns: 1fr; } }

.svc {
  background: var(--navy);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 440px;
  position: relative;
  transition: background .25s ease;
}
.svc:hover { background: var(--navy-panel); }
.svc__top {
  display: flex; justify-content: space-between; align-items: center;
}
.svc__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.svc__tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}
.svc__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.svc__body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.55;
}
.svc__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
}
.svc__list li {
  padding-left: 18px;
  position: relative;
}
.svc__list li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

.svc__art {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  min-height: 110px;
  display: flex; flex-direction: column; gap: 6px;
  color: rgba(201,214,227,0.5);
}
.svc__art .bubble {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.4;
}
.bubble--in {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
}
.bubble--out {
  background: rgba(199,168,103,0.08);
  border: 1px solid rgba(199,168,103,0.18);
  color: rgba(255,255,255,0.85);
  align-self: flex-end;
}

.svc__art--phone {
  align-items: center; justify-content: center;
  flex-direction: column;
}
.wave {
  display: flex; align-items: center; gap: 3px; height: 50px;
}
.wave span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  height: 30%;
  animation: wave 1.4s ease-in-out infinite;
}
.wave span:nth-child(2n) { animation-delay: 0.1s; }
.wave span:nth-child(3n) { animation-delay: 0.2s; height: 70%; }
.wave span:nth-child(4n) { animation-delay: 0.3s; height: 50%; }
.wave span:nth-child(5n) { animation-delay: 0.4s; height: 90%; }
.wave span:nth-child(6n) { animation-delay: 0.5s; height: 40%; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
.wave__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.svc__art--flow svg {
  width: 100%; max-width: 240px;
  margin: auto;
  color: var(--gold);
  opacity: 0.7;
}

.svc__art--data .bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 70px; padding-top: 10px;
  margin: auto;
  width: 100%;
}
.bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, rgba(199,168,103,0.7), rgba(199,168,103,0.15));
  border-radius: 1px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0; padding: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border: var(--rule-dark);
  border-radius: 4px;
  padding: 28px 26px 32px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px rgba(19,32,46,0.18);
  border-color: rgba(19,32,46,0.18);
}
.step-card__head {
  display: flex; justify-content: space-between; align-items: center;
}
.step-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--navy);
}
.step-card__price {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 4px 9px;
  border: 1px solid rgba(199,168,103,0.4);
  border-radius: 999px;
}
.step-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(19,32,46,0.7);
  margin: 0;
}
.step-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--rule-dark);
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(19,32,46,0.55);
}

.process__line {
  display: none;
}

/* ============================================
   MER ENN TEKNOLOGI (cream)
   ============================================ */
.split__left .label { margin-bottom: 24px; }
.split__left .h-display { margin: 0; }
.split__right .lede { margin-bottom: 40px; }

.dual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-top: 32px;
  border-top: var(--rule-dark);
}
.dual h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.dual p {
  font-size: 14.5px;
  margin: 0;
  color: rgba(19,32,46,0.7);
  line-height: 1.55;
}
@media (max-width: 680px) { .dual { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================
   PEOPLE
   ============================================ */
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .people { grid-template-columns: 1fr; gap: 36px; } }

.person {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 640px) {
  .person { grid-template-columns: 1fr; }
}

.portrait {
  position: relative;
  width: 100%; aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: 2px;
  background: var(--navy-panel);
  filter: grayscale(1) contrast(1.05);
}
.portrait svg { width: 100%; height: 100%; display: block; }
.portrait--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.portrait--photo { filter: grayscale(1) contrast(1.04); }
.portrait__caption {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.person__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.person__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.person__body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.person__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.person__tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}

.ety {
  margin-top: clamp(70px, 8vw, 110px);
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 36px;
  align-items: center;
}
.ety__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.ety p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  margin: 0;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.ety__rune {
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px dashed rgba(199,168,103,0.5);
  padding-bottom: 1px;
}
@media (max-width: 680px) { .ety { grid-template-columns: 1fr; gap: 14px; padding: 28px 24px; } }

/* ============================================
   WHY
   ============================================ */
.why {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: var(--rule-dark);
}
.why li {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: var(--rule-dark);
  align-items: baseline;
  position: relative;
  transition: background .2s ease;
}
.why li:hover { background: rgba(19,32,46,0.02); }
.why__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}
.why__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.why__text {
  font-size: 15.5px;
  color: rgba(19,32,46,0.72);
  line-height: 1.55;
  max-width: 60ch;
}
@media (max-width: 760px) {
  .why li { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-meta {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
.contact-meta dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.contact-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.005em;
}
.contact-meta a:hover { color: var(--gold); }

.form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
}
@media (max-width: 880px) { .form { padding: 28px 22px; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color .2s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  font-family: var(--sans);
  font-size: 13px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  transition: all .2s ease;
}
.chips button:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.chips button.is-on {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.form__small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.form__success {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85);
}
.footer__mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
}
.footer__word {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer__claim {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.footer__meta {
  display: flex; gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(199,168,103,0.4);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.footer__phone:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand, .footer__meta { justify-content: center; }
  .footer__brand { justify-self: center; }
  .footer__meta { justify-content: center; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1; transform: none;
}
