:root {
  --bg: #061019;
  --bg-soft: #0b1520;
  --panel: rgba(13, 21, 31, 0.82);
  --panel-strong: rgba(16, 25, 38, 0.95);
  --line: rgba(233, 215, 181, 0.1);
  --line-strong: rgba(233, 215, 181, 0.2);
  --text: #eef3f8;
  --muted: #9aa6b5;
  --gold: #d1ab6c;
  --gold-soft: #f3e2bc;
  --danger: #d87f84;
  --success: #89d1a2;
  --shadow: 0 24px 78px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 170, 103, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(92, 130, 176, 0.16), transparent 24%),
    linear-gradient(180deg, #051019 0%, #07111a 40%, #0d1722 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 92%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient-blob {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: 0.5;
  border-radius: 50%;
  animation: blob-drift 18s ease-in-out infinite;
}

.ambient-blob-one {
  top: 8vh;
  left: -8vw;
  width: 20vw;
  height: 20vw;
  background: rgba(209, 171, 108, 0.16);
}

.ambient-blob-two {
  top: 28vh;
  right: -10vw;
  width: 24vw;
  height: 24vw;
  background: rgba(96, 132, 178, 0.14);
  animation-delay: -6s;
}

.ambient-blob-three {
  bottom: 5vh;
  left: 35vw;
  width: 16vw;
  height: 16vw;
  background: rgba(120, 255, 187, 0.08);
  animation-delay: -12s;
}

.ambient-blob::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ambient-blob::after {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.55);
  opacity: 0.4;
}

@keyframes blob-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.08);
  }
}

.candlestick-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.64;
  background:
    linear-gradient(180deg, rgba(4, 9, 15, 0.04), rgba(4, 9, 15, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(194, 162, 103, 0.22), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(91, 140, 190, 0.18), transparent 26%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.18) 88%, transparent);
}

.candlestick-background span {
  position: absolute;
  bottom: -12vh;
  width: 1.3rem;
  height: min(28vh, 340px);
  --wick-top: 68%;
  --wick-bottom: 58%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 238, 188, 1), rgba(228, 182, 117, 0.3));
  box-shadow:
    0 0 0 1px rgba(255, 233, 184, 0.3),
    0 0 34px rgba(255, 177, 93, 0.34),
    0 0 72px rgba(91, 140, 190, 0.12);
  animation:
    candle-float 10s ease-in-out infinite,
    candle-pulse 1.6s ease-in-out infinite;
  transform-origin: bottom center;
}

.candlestick-background span::before,
.candlestick-background span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(241, 228, 194, 0.9), rgba(241, 228, 194, 0.18));
}

.candlestick-background span::before {
  top: calc(-1 * var(--wick-top));
  height: var(--wick-top);
}

.candlestick-background span::after {
  bottom: calc(-1 * var(--wick-bottom));
  height: var(--wick-bottom);
}

.candlestick-background span[data-tone="bull"] {
  background: linear-gradient(180deg, rgba(122, 255, 187, 1), rgba(42, 182, 133, 0.32));
  box-shadow:
    0 0 0 1px rgba(193, 255, 225, 0.34),
    0 0 40px rgba(122, 255, 187, 0.42),
    0 0 90px rgba(122, 255, 187, 0.14);
}

.candlestick-background span[data-tone="bear"] {
  background: linear-gradient(180deg, rgba(255, 117, 141, 1), rgba(214, 71, 100, 0.3));
  box-shadow:
    0 0 0 1px rgba(255, 206, 216, 0.34),
    0 0 40px rgba(255, 117, 141, 0.42),
    0 0 90px rgba(255, 117, 141, 0.14);
}

.candlestick-background span[data-tone="neutral"] {
  background: linear-gradient(180deg, rgba(255, 225, 150, 1), rgba(234, 176, 84, 0.28));
  box-shadow:
    0 0 0 1px rgba(255, 236, 188, 0.28),
    0 0 36px rgba(234, 176, 84, 0.38),
    0 0 84px rgba(91, 140, 190, 0.1);
}

.candlestick-background span:nth-child(3n) {
  height: min(38vh, 440px);
}

.candlestick-background span[data-tone="bull"]::before,
.candlestick-background span[data-tone="bull"]::after {
  background: linear-gradient(180deg, rgba(218, 255, 235, 0.96), rgba(218, 255, 235, 0.12));
}

.candlestick-background span[data-tone="bear"]::before,
.candlestick-background span[data-tone="bear"]::after {
  background: linear-gradient(180deg, rgba(255, 215, 223, 0.96), rgba(255, 215, 223, 0.12));
}

.candlestick-background span[data-tone="neutral"]::before,
.candlestick-background span[data-tone="neutral"]::after {
  background: linear-gradient(180deg, rgba(255, 240, 206, 0.96), rgba(255, 240, 206, 0.12));
}

.candlestick-background span.is-active {
  z-index: 2;
  transform: scaleY(1.14) translateY(-8px);
  filter: brightness(1.28) saturate(1.4);
  box-shadow:
    0 0 0 1px rgba(255, 242, 194, 0.4),
    0 0 52px rgba(255, 185, 90, 0.6),
    0 0 110px rgba(122, 255, 187, 0.18);
}

.candlestick-background span:nth-child(4n) {
  animation-duration: 14s;
}

.candlestick-background span:nth-child(1) { left: 8%; animation-delay: -1s; }
.candlestick-background span:nth-child(2) { left: 15%; animation-delay: -4s; }
.candlestick-background span:nth-child(3) { left: 23%; animation-delay: -2s; }
.candlestick-background span:nth-child(4) { left: 31%; animation-delay: -6s; }
.candlestick-background span:nth-child(5) { left: 39%; animation-delay: -3s; }
.candlestick-background span:nth-child(6) { left: 47%; animation-delay: -8s; }
.candlestick-background span:nth-child(7) { left: 55%; animation-delay: -5s; }
.candlestick-background span:nth-child(8) { left: 63%; animation-delay: -2.5s; }
.candlestick-background span:nth-child(9) { left: 71%; animation-delay: -7s; }
.candlestick-background span:nth-child(10) { left: 79%; animation-delay: -4.5s; }
.candlestick-background span:nth-child(11) { left: 87%; animation-delay: -1.5s; }
.candlestick-background span:nth-child(12) { left: 12%; bottom: -16vh; animation-delay: -9s; }
.candlestick-background span:nth-child(13) { left: 28%; bottom: -18vh; animation-delay: -10s; }
.candlestick-background span:nth-child(14) { left: 58%; bottom: -14vh; animation-delay: -7.5s; }
.candlestick-background span:nth-child(15) { left: 92%; bottom: -17vh; animation-delay: -5.5s; }

@keyframes candle-float {
  0%, 100% {
    transform: translateY(0) scaleY(0.98);
    opacity: 0.76;
  }
  50% {
    transform: translateY(-26px) scaleY(1.08);
    opacity: 1;
  }
}

@keyframes candle-pulse {
  0%, 100% {
    filter: saturate(1.1) brightness(1.02);
  }
  50% {
    filter: saturate(1.42) brightness(1.18);
  }
}

@keyframes active-beat {
  0%, 100% {
    transform: scaleY(1.14) translateY(-8px);
  }
  50% {
    transform: scaleY(1.2) translateY(-16px);
  }
}

.candlestick-background span.is-active {
  animation:
    active-beat 0.9s ease-in-out infinite,
    candle-pulse 1.2s ease-in-out infinite;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.site-shell::before {
  top: 150px;
  left: -120px;
  width: 240px;
  height: 240px;
  background: rgba(200, 164, 107, 0.22);
}

.site-shell::after {
  top: 780px;
  right: -160px;
  width: 320px;
  height: 320px;
  background: rgba(80, 114, 162, 0.16);
}

.market-ticker {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 12, 19, 0.82);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track strong {
  margin-left: 0.45rem;
  font-weight: 700;
}

.ticker-track .up {
  color: var(--success);
}

.ticker-track .down {
  color: var(--danger);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 16, 25, 0.86);
  backdrop-filter: blur(18px);
  animation: header-drop 0.8s ease both;
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(228, 182, 117, 0.3), rgba(228, 182, 117, 0.08));
  color: var(--gold-soft);
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong,
.brand-copy small {
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section {
  padding: 6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-copy {
  animation: hero-rise 0.9s ease both;
}

.hero-panel {
  animation: hero-rise 1s 0.12s ease both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1;
  max-width: 13ch;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.lead,
.section-heading p,
.about-copy p,
.edge-list p,
.process-card p,
.testimonial-card p,
.cta-panel p,
.trust-bar p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary,
.button-secondary,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.button-secondary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.button-primary:hover::after,
.button-secondary:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.button:disabled {
  cursor: default;
  opacity: 0.88;
  transform: none;
}

.button-primary {
  border: 1px solid rgba(247, 230, 191, 0.34);
  background: linear-gradient(135deg, #e1b06d, #b4854c);
  color: #10141c;
  font-weight: 800;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics,
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics article,
.mini-stats article {
  padding: 1.1rem 1rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-metrics strong,
.mini-stats strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Fraunces", serif;
  color: var(--gold-soft);
}

.hero-metrics span,
.mini-stats span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.glass-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 215, 181, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-panel {
  position: relative;
  min-height: 520px;
}

.hero-card {
  position: relative;
  padding: 1.5rem;
  min-height: 100%;
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-4px) rotateX(1deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(228, 182, 117, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
}

.hero-card-top,
.hero-card-stats,
.trust-grid,
.section-grid,
.edge-layout,
.process-grid,
.testimonial-grid,
.footer-links {
  display: grid;
}

.hero-card-top {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.card-label,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.card-label {
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pill {
  border: 1px solid rgba(228, 182, 117, 0.24);
  background: rgba(228, 182, 117, 0.08);
  color: var(--gold-soft);
}

.chart-grid {
  position: absolute;
  inset: 5.2rem 1.5rem 8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.chart-grid span {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 260px;
  margin: 4rem 0 2rem;
}

.chart-line path {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(228, 182, 117, 0.35));
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-line 2.8s 0.45s ease forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-card-stats {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card-stats article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card-stats span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.hero-card-stats strong {
  font-size: 1rem;
  line-height: 1.5;
}

.floating-note {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 250px;
  padding: 1rem 1.1rem;
}

.floating-note p {
  margin: 0;
  color: var(--gold-soft);
  line-height: 1.6;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 0;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-grid span {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
}

.section-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.check-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0;
}

.about-highlight {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.about-highlight span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.about-highlight p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.check-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 0 6px rgba(228, 182, 117, 0.08);
}

.text-link {
  color: var(--gold-soft);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 730px;
  margin-bottom: 2.5rem;
}

.section-heading.narrow {
  max-width: 580px;
}

.service-grid,
.pricing-grid,
.terms-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.service-card,
.testimonial-card,
.process-card,
.pricing-card,
.terms-card,
.cta-panel {
  padding: 1.5rem;
}

.service-card {
  min-height: 255px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card,
.pricing-card-green,
.terms-card,
.process-card,
.testimonial-card {
  animation: card-fade-up 0.8s ease both;
}

@keyframes card-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  position: relative;
  min-height: 320px;
}

.pricing-card-green {
  padding: 2rem 1.9rem 2.1rem;
  min-height: 420px;
  border: 0;
  border-radius: 0;
  background: #10a824;
  color: #f1f7ef;
  box-shadow: 0 20px 45px rgba(16, 168, 36, 0.26);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.pricing-card-green:hover {
  transform: translateY(-10px) scale(1.01);
  filter: brightness(1.05);
  box-shadow: 0 28px 60px rgba(16, 168, 36, 0.34);
}

.pricing-card-green h3 {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.15;
}

.pricing-icon {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.pricing-divider {
  height: 1px;
  margin: 1.8rem 0 1.8rem;
  background: rgba(0, 0, 0, 0.16);
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  margin-bottom: 1.9rem;
  padding-left: 2rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.pricing-card-green:nth-child(1) { animation-delay: 0.05s; }
.pricing-card-green:nth-child(2) { animation-delay: 0.14s; }
.pricing-card-green:nth-child(3) { animation-delay: 0.23s; }
.pricing-card-green:nth-child(4) { animation-delay: 0.32s; }

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(228, 182, 117, 0.3);
}

.service-index,
.process-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card p,
.process-card p {
  margin-top: 1rem;
}

.edge-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  align-items: stretch;
}

.edge-list {
  display: grid;
  gap: 1rem;
}

.edge-list article {
  padding: 1.4rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.edge-list h3 {
  margin-bottom: 0.8rem;
}

.edge-panel {
  padding: 1.6rem;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-card p {
  margin: 0 0 1.5rem;
}

.testimonial-card strong {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.cta {
  padding-bottom: 3rem;
}

.terms {
  padding-top: 0;
}

.terms-card {
  min-height: 210px;
}

.terms-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.22rem;
}

.terms-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-response {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.94rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 13, 20, 0.82);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(228, 182, 117, 0.45);
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 0 0 3rem;
}

.footer-brand {
  width: fit-content;
}

.footer-links {
  grid-template-columns: repeat(4, max-content);
  gap: 1.4rem;
  color: var(--muted);
}

.footer-note {
  max-width: 75ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.footer-address {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-heading,
.section-grid,
.service-grid,
.pricing-grid,
.terms-grid,
.testimonial-grid,
.edge-layout,
.process-grid,
.cta-panel {
  position: relative;
}

@media (max-width: 1024px) {
  .hero,
  .trust-bar,
  .section-grid,
  .edge-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-panel {
    min-height: 460px;
  }

  .service-grid,
  .pricing-grid,
  .terms-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel-strong);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0.7rem;
  }

  .site-nav a {
    padding: 0.8rem 0.4rem;
  }

  .hero-metrics,
  .mini-stats,
  .service-grid,
  .pricing-grid,
  .terms-grid,
  .testimonial-grid,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .pricing-card-green {
    min-height: auto;
  }

  .hero-card-stats {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 540px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .market-ticker {
    font-size: 0.68rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-card,
  .service-card,
  .testimonial-card,
  .process-card,
  .cta-panel {
    padding: 1.2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
  }

  .candlestick-background {
    opacity: 0.58;
  }

  .candlestick-background span {
    width: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
