/* ═══════════════════════════════════════════════════════════════
   strada one — landing page styles
   editorial financial premium · dark canvas · apple-meets-WSJ
   ═══════════════════════════════════════════════════════════════ */

/* ───── tokens ───── */
:root {
  /* canvas */
  --bg:               #000000;
  --bg-card:          #0a0a0b;
  --bg-elevated:      #111114;

  /* text */
  --fg:               #ffffff;
  --fg-70:            rgba(255, 255, 255, 0.72);
  --fg-50:            rgba(255, 255, 255, 0.50);
  --fg-30:            rgba(255, 255, 255, 0.30);
  --fg-15:            rgba(255, 255, 255, 0.15);
  --fg-08:            rgba(255, 255, 255, 0.08);
  --fg-04:            rgba(255, 255, 255, 0.04);

  /* accents */
  --gains:            #1ecb89;
  --gains-soft:       rgba(30, 203, 137, 0.16);
  --gains-edge:       rgba(30, 203, 137, 0.42);
  --strada-green:     #0e4224;
  --strada-green-glow: rgba(14, 66, 36, 0.55);
  --neg:              rgba(255, 110, 110, 0.55);

  /* type */
  --ff-display:       'Libre Baskerville', 'Times New Roman', Georgia, serif;
  --ff-body:          'Montserrat', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

  /* layout */
  --container-max:    1240px;
  --container-pad:    clamp(20px, 4vw, 56px);

  /* scale */
  --gap-xs:           8px;
  --gap-sm:           16px;
  --gap-md:           24px;
  --gap-lg:           40px;
  --gap-xl:           72px;
  --gap-2xl:          120px;
  --gap-3xl:          168px;

  /* radii */
  --r-sm:             4px;
  --r-md:             10px;
  --r-lg:             20px;
  --r-pill:           999px;

  /* timing */
  --ease-out:         cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out:      cubic-bezier(0.65, 0, 0.35, 1);
}

/* ───── reset ───── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; background: none; border: none; outline: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.vh {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

.nowrap { white-space: nowrap; }

/* ───── atmosphere (ambient glows + grain) ───── */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.glow-a {
  top: -20vmin;
  right: -10vmin;
  width: 80vmin;
  height: 80vmin;
  background: radial-gradient(circle at center, var(--strada-green-glow) 0%, transparent 65%);
  animation: drift-a 22s var(--ease-in-out) infinite alternate;
}

.glow-b {
  bottom: -30vmin;
  left: -15vmin;
  width: 90vmin;
  height: 90vmin;
  background: radial-gradient(circle at center, rgba(14, 66, 36, 0.40) 0%, transparent 70%);
  animation: drift-b 28s var(--ease-in-out) infinite alternate;
}

@keyframes drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-6vmin, 4vmin, 0) scale(1.08); }
}
@keyframes drift-b {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(8vmin, -5vmin, 0) scale(1.10); }
}

.grain {
  position: absolute;
  inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ───── container ───── */
.container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  z-index: 1;
}

main { position: relative; z-index: 1; }

/* ───── nav ───── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--container-pad);
  transition: background 350ms var(--ease-out), backdrop-filter 350ms var(--ease-out), border-color 350ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--fg-08);
}

.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-strada {
  font-family: var(--ff-body);
  font-weight: 500;
}
.brand-one {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92em;
  color: var(--fg-70);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--fg-50);
}
.nav-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gains);
  box-shadow: 0 0 0 4px var(--gains-soft);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ───── shared typography ───── */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--fg-50);
  padding-left: 28px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px;
  height: 1px;
  background: var(--fg-30);
}

.section-head {
  margin-bottom: clamp(48px, 8vw, 96px);
}

.section-h2 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 0;
  max-width: 20ch;
}

/* ───── reveal animation ───── */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   hero
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: var(--gap-2xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(60px, 8vw, 96px);
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(48px, 6vw, 96px);
  }
}

.hero-text { max-width: 620px; }

.hero-h1 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(52px, 8.8vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 0 0 32px;
  display: block;
}
.hero-h1 .line {
  display: block;
}
.hero-h1 .line-serif {
  color: var(--fg);
}

.hero-sub {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--fg-70);
  max-width: 32ch;
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* ───── form ───── */
.signup-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 540px;
  padding: 8px;
  background: var(--fg-04);
  border: 1px solid var(--fg-15);
  border-radius: var(--r-pill);
  transition: border-color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.signup-form:hover,
.signup-form:focus-within {
  border-color: var(--fg-30);
  background: var(--fg-08);
}

.signup-form input {
  padding: 14px 22px;
  font-size: 15px;
  color: var(--fg);
  width: 100%;
}
.signup-form input::placeholder {
  color: var(--fg-50);
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  box-shadow: 0 2px 16px rgba(255, 255, 255, 0.04);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.10);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.18);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.btn-primary.is-loading .btn-label { opacity: 0.4; }
.btn-primary.is-loading .btn-spinner { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  grid-column: 1 / -1;
  padding: 4px 22px 6px;
  font-size: 13px;
  color: var(--fg-70);
  min-height: 18px;
  transition: color 200ms var(--ease-out);
}
.form-msg.is-success {
  color: var(--gains);
}
.form-msg.is-error {
  color: rgba(255, 130, 130, 0.9);
}

.signup-form.is-submitted input { display: none; }
.signup-form.is-submitted button { display: none; }
.signup-form.is-submitted {
  grid-template-columns: 1fr;
  padding: 18px 22px;
}
.signup-form.is-submitted .form-msg {
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}

.trust-line {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-50);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gains);
  box-shadow: 0 0 0 4px var(--gains-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--gains-soft); }
  50%      { box-shadow: 0 0 0 7px rgba(30, 203, 137, 0.08); }
}

/* ───── hero visual ───── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.hero-parallax {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.55;
  z-index: 0;
}
.orb-1 {
  width: 88px; height: 88px;
  top: -8%; left: 6%;
  background: radial-gradient(circle at 30% 30%, #6b7c8a, #2c3a47 70%, transparent 100%);
  box-shadow: inset 0 -8px 16px rgba(0,0,0,0.4), 0 10px 40px rgba(40, 80, 60, 0.25);
  animation: float-a 9s ease-in-out infinite;
}
.orb-2 {
  width: 56px; height: 56px;
  top: 32%; left: -4%;
  background: radial-gradient(circle at 30% 30%, #1a3a26, #06170d 80%, transparent 100%);
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.5), 0 8px 30px rgba(30, 203, 137, 0.18);
  animation: float-b 11s ease-in-out infinite;
}
.orb-3 {
  width: 70px; height: 70px;
  bottom: 4%; right: 0%;
  background: radial-gradient(circle at 30% 30%, #c8b094, #5a4b3a 70%, transparent 100%);
  box-shadow: inset 0 -8px 14px rgba(0,0,0,0.4), 0 10px 36px rgba(150, 100, 50, 0.18);
  animation: float-c 13s ease-in-out infinite;
}

@keyframes float-a { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(8px, -12px, 0); } }
@keyframes float-b { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-6px, 10px, 0); } }
@keyframes float-c { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(10px, 8px, 0); } }

/* ═══════════════════════════════════════════════════════════════
   iPhone mockup (shared)
   ═══════════════════════════════════════════════════════════════ */
.phone {
  position: relative;
  width: clamp(240px, 28vw, 320px);
  aspect-ratio: 320 / 660;
  z-index: 2;
}

.phone-hero {
  transform: rotate(-3deg);
  transition: transform 600ms var(--ease-out);
}
.phone-hero:hover { transform: rotate(-1deg) translateY(-4px); }

.phone-step {
  width: clamp(220px, 26vw, 290px);
  transition: transform 1200ms var(--ease-out), opacity 1000ms var(--ease-out);
}

.phone-shadow {
  position: absolute;
  inset: 18% 6% -8% 6%;
  background: radial-gradient(60% 60% at 50% 60%, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, #2a2c30 0%, #1b1d20 38%, #2a2c30 65%, #14161a 100%);
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 2px rgba(0,0,0,0.4),
    0 30px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.4);
}

.phone-side {
  position: absolute;
  background: linear-gradient(to right, rgba(255,255,255,0.18), rgba(255,255,255,0));
  border-radius: 2px;
}
.phone-side-left {
  left: -2px; top: 18%; width: 3px; height: 8%;
  background: linear-gradient(to right, rgba(255,255,255,0.16), transparent);
}
.phone-side-right {
  right: -2px; top: 28%; width: 3px; height: 14%;
  background: linear-gradient(to left, rgba(255,255,255,0.16), transparent);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 3;
}
.phone-notch::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #1a1d24;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  padding: 44px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* screenshot mode — full-bleed image fills the screen */
.phone-screen-img {
  padding: 0;
  background: #000;
}
.phone-screen-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.statusbar {
  position: absolute;
  top: 16px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  z-index: 4;
}
.status-time { letter-spacing: -0.01em; }
.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.icon-signal, .icon-wifi, .icon-battery {
  display: inline-block;
  background: #fff;
}
.icon-signal {
  width: 12px; height: 7px;
  -webkit-mask: linear-gradient(to right, #000 0 2px, transparent 2px 3px, #000 3px 5px, transparent 5px 6px, #000 6px 8px, transparent 8px 9px, #000 9px 12px);
          mask: linear-gradient(to right, #000 0 2px, transparent 2px 3px, #000 3px 5px, transparent 5px 6px, #000 6px 8px, transparent 8px 9px, #000 9px 12px);
}
.icon-wifi {
  width: 10px; height: 7px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 76% 100%, 50% 38%, 24% 100%);
}
.icon-battery {
  width: 18px; height: 8px;
  border-radius: 2px;
  background: transparent;
  border: 1px solid #fff;
  position: relative;
}
.icon-battery::before {
  content: '';
  position: absolute;
  inset: 1px;
  width: 70%;
  background: #fff;
  border-radius: 1px;
}
.icon-battery::after {
  content: '';
  position: absolute;
  right: -3px; top: 2px;
  width: 1.5px; height: 4px;
  background: #fff;
  border-radius: 0 1px 1px 0;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 4px;
}
.app-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 13px;
  color: #fff;
}
.app-logo > span:first-child {
  font-family: var(--ff-body);
  font-weight: 500;
}
.app-logo-one {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92em;
  color: rgba(255,255,255,0.75);
}
.app-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5563, #1b2028);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.16);
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.app-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 2px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.app-section-head-tight { margin-top: 2px; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pill-green {
  background: var(--gains);
  color: #04130b;
}
.pill-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.pill-villa {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

/* property cards inside phone */
.prop-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.prop-featured { padding-bottom: 8px; }

.prop-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.prop-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}
.prop-image-tower {
  background:
    linear-gradient(180deg, rgba(120, 160, 200, 0) 30%, rgba(20, 40, 60, 0.6) 100%),
    linear-gradient(160deg, #7da3c2 0%, #5a8aae 40%, #2b4c6b 100%);
  position: relative;
}
.prop-image-tower::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* horizon water */
    linear-gradient(to top, rgba(15, 50, 75, 0.5) 0%, transparent 35%),
    /* tower silhouette */
    radial-gradient(120% 90% at 70% 100%, rgba(0,0,0,0.45) 0%, transparent 50%),
    /* window grid */
    repeating-linear-gradient(0deg, transparent 0px, transparent 6px, rgba(255,255,255,0.06) 6px, rgba(255,255,255,0.06) 7px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 8px, rgba(0,0,0,0.18) 8px, rgba(0,0,0,0.18) 9px);
}

.prop-image-villa-a {
  background:
    linear-gradient(160deg, #cbb89c 0%, #8e7a5d 60%, #3a2e1f 100%);
}
.prop-image-villa-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% 80%, rgba(0,0,0,0.3) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(0,0,0,0.06) 8px 9px);
}
.prop-image-villa-b {
  background:
    linear-gradient(160deg, #9bb6a8 0%, #5a7268 60%, #1f2c28 100%);
}
.prop-image-villa-b::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 50% 80%, rgba(0,0,0,0.3) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(0,0,0,0.06) 8px 9px);
}

.prop-meta {
  padding: 8px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prop-area {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.prop-title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}
.prop-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.prop-price { font-weight: 600; }
.prop-divider { color: rgba(255,255,255,0.3); }
.prop-yield em {
  font-style: normal;
  color: var(--gains);
  font-weight: 600;
}

.prop-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 6px 4px;
}
.prop-row-image {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.prop-row-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prop-row-title {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.prop-row-area {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}
.prop-row-delta {
  font-size: 10px;
  font-weight: 600;
}
.prop-row-delta.pos { color: var(--gains); }

/* invest screen */
.app-content-invest .invest-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.invest-img { aspect-ratio: 16/11; }
.invest-meta {
  padding: 4px 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.invest-area {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
}
.invest-title {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
}
.invest-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: rgba(255,255,255,0.7);
}
.invest-stats em {
  font-style: normal;
  color: var(--gains);
  font-weight: 600;
}
.invest-stats .dot {
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.invest-amount {
  margin-top: 6px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.invest-label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.invest-value {
  font-size: 16px;
  font-weight: 500;
}
.invest-value .curr {
  font-size: 0.7em;
  color: rgba(255,255,255,0.55);
  margin-right: 2px;
}
.invest-slider {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.invest-slider-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  background: var(--gains);
  border-radius: 2px;
}
.invest-slider-thumb {
  position: absolute;
  left: 38%;
  top: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.app-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--gains);
  color: #04130b;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: default;
}
.app-cta .curr { font-size: 0.85em; opacity: 0.8; margin: 0 1px; }

/* earn screen */
.app-content-earn {
  gap: 8px;
}
.earn-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.earn-value {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.earn-value .curr {
  font-family: var(--ff-body);
  font-size: 12px;
  vertical-align: 6px;
  color: rgba(255,255,255,0.6);
  margin-right: 4px;
}
.earn-delta {
  font-size: 10px;
  font-weight: 600;
}
.earn-delta.pos { color: var(--gains); }
.earn-delta .arrow-up { font-size: 7px; }

.earn-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  height: 90px;
  align-items: end;
  margin-top: 6px;
  padding: 0 2px;
}
.bar {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.06), rgba(255,255,255,0.14));
  border-radius: 3px 3px 0 0;
  transition: height 700ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.bar-tall {
  background: linear-gradient(to top, var(--gains-soft), var(--gains));
}
.phone-earn.is-earning .bar { height: var(--h); }

.earn-chart-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 2px;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  text-transform: lowercase;
}
.earn-chart-axis > span { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   why dubai
   ═══════════════════════════════════════════════════════════════ */
.why-dubai {
  padding: clamp(96px, 14vw, 168px) 0;
  position: relative;
}

.lead-stat {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--fg-08);
}
@media (min-width: 720px) {
  .lead-stat { grid-template-columns: auto 1fr; }
}

.lead-stat-figure {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(120px, 22vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--fg);
}
.lead-stat-sign {
  color: var(--gains);
  font-size: 0.62em;
  margin-right: 0.04em;
  transform: translateY(-0.18em);
  display: inline-block;
}
.lead-stat-pct {
  font-size: 0.5em;
  margin-left: 0.04em;
  color: var(--fg-70);
  transform: translateY(-0.16em);
  display: inline-block;
}
.lead-stat-label {
  font-family: var(--ff-body);
  font-size: 0.12em;
  letter-spacing: 0.3em;
  color: var(--fg-50);
  margin-left: 0.6em;
  transform: translateY(-0.6em);
  display: inline-block;
  font-weight: 500;
}

.lead-stat-caption {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg-70);
  max-width: 14ch;
  padding-bottom: clamp(8px, 2vw, 24px);
}

.comparison {
  margin-bottom: clamp(64px, 9vw, 112px);
}
.comp-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fg-08);
  font-size: 12px;
  color: var(--fg-50);
}
.comp-source {
  font-size: 11px;
  letter-spacing: 0.06em;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comp-row {
  display: grid;
  grid-template-columns: 96px 1fr 56px;
  gap: 20px;
  align-items: center;
  padding: 8px 0;
}
@media (min-width: 720px) {
  .comp-row { grid-template-columns: 140px 1fr 80px; }
}
.comp-city {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-70);
  letter-spacing: 0.01em;
}
.comp-row-dubai .comp-city {
  color: var(--fg);
  font-weight: 500;
}

.comp-bar {
  position: relative;
  height: 1px;
  background: var(--fg-08);
}
.comp-bar-fill {
  position: absolute;
  left: 0; top: 50%;
  height: 2px;
  background: var(--fg-30);
  border-radius: 1px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  width: 0;
  transition: width 1100ms var(--ease-out), background 400ms var(--ease-out);
}
.comp-row.is-visible .comp-bar-fill {
  width: var(--bar-width, 0%);
  transform: translateY(-50%) scaleX(1);
}
.comp-row-dubai .comp-bar-fill {
  height: 3px;
  background: linear-gradient(to right, var(--gains-edge), var(--gains));
  box-shadow: 0 0 16px rgba(30, 203, 137, 0.4);
}
.comp-row-neg .comp-bar-fill {
  background: var(--neg);
}

.comp-val {
  text-align: right;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-70);
  font-variant-numeric: tabular-nums;
}
.comp-row-dubai .comp-val {
  color: var(--gains);
  font-weight: 600;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--fg-08);
}
@media (min-width: 720px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
}

.support-beat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.support-beat p {
  font-size: 15px;
  color: var(--fg-70);
  max-width: 36ch;
}

/* ═══════════════════════════════════════════════════════════════
   how it works
   ═══════════════════════════════════════════════════════════════ */
.how {
  padding: clamp(96px, 14vw, 168px) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(96px, 14vw, 168px);
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: center;
}
@media (min-width: 880px) {
  .step {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
  }
  .step-reverse .step-text { order: 2; }
  .step-reverse .step-visual { order: 1; }
}

.step-text { max-width: 460px; }

.step-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--fg-50);
  letter-spacing: 0.04em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fg-15);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}

.step-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-70);
  max-width: 36ch;
}

.step-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* tilt animation on entry */
[data-tilt] {
  opacity: 0;
  transform: perspective(1200px) rotateY(14deg) rotateX(4deg) translateZ(-40px);
  transition: opacity 1000ms var(--ease-out), transform 1200ms var(--ease-out);
}
[data-tilt].is-visible {
  opacity: 1;
  transform: perspective(1200px) rotateY(-2deg) rotateX(0deg) translateZ(0);
}
.step-reverse [data-tilt] {
  transform: perspective(1200px) rotateY(-14deg) rotateX(4deg) translateZ(-40px);
}
.step-reverse [data-tilt].is-visible {
  transform: perspective(1200px) rotateY(2deg) rotateX(0deg) translateZ(0);
}

/* ═══════════════════════════════════════════════════════════════
   why strada
   ═══════════════════════════════════════════════════════════════ */
.why-strada {
  padding: clamp(96px, 14vw, 168px) 0;
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--fg-08);
  border: 1px solid var(--fg-08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (min-width: 880px) {
  .tiles { grid-template-columns: repeat(4, 1fr); }
}

.tile {
  position: relative;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 32px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  justify-content: space-between;
  overflow: hidden;
}
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 0% 0%, rgba(30, 203, 137, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.tile:hover::before { opacity: 1; }

.tile-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.tile-num-year { color: var(--fg-70); }

.tile-label {
  font-size: 12px;
  color: var(--fg-70);
  line-height: 1.45;
  max-width: 22ch;
}

.why-strada-body {
  max-width: 64ch;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
  color: var(--fg-70);
}
.why-strada-body strong {
  color: var(--fg);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   faq
   ═══════════════════════════════════════════════════════════════ */
.faq {
  padding: clamp(96px, 14vw, 168px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
}
@media (min-width: 880px) {
  .faq-grid { grid-template-columns: 1fr 1.4fr; gap: clamp(56px, 8vw, 112px); }
  .faq .section-head { margin-bottom: 0; position: sticky; top: 100px; align-self: start; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--fg-08);
}

.faq-item {
  border-bottom: 1px solid var(--fg-08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(22px, 2.6vw, 28px) 0;
  text-align: left;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color 200ms var(--ease-out);
}
.faq-q:hover { color: var(--fg-70); }

.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--fg);
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.faq-icon::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease-in-out);
}
.faq-a p {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-70);
  max-width: 56ch;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
}

/* ═══════════════════════════════════════════════════════════════
   final cta
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.atmosphere-cta {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glow-cta {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(30, 203, 137, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
}

.final-cta .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-h2 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.cta-h2 .line {
  display: block;
}

.cta-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-70);
  margin-bottom: clamp(36px, 4vw, 56px);
}

.signup-form-large {
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   footer
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: clamp(40px, 4vw, 56px) 0;
  border-top: 1px solid var(--fg-08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1fr auto; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 110px;
  height: auto;
  opacity: 0.92;
}

.footer-tag {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-50);
  letter-spacing: -0.005em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  font-size: 12px;
  color: var(--fg-50);
}
@media (min-width: 720px) {
  .footer-meta { text-align: right; }
}
.footer-meta a {
  color: var(--fg-70);
  transition: color 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.footer-meta a:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-30);
}

/* ═══════════════════════════════════════════════════════════════
   mobile refinements
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .hero {
    padding-top: 96px;
    min-height: auto;
  }
  .hero-visual { min-height: 480px; }

  .signup-form {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 6px;
  }
  .signup-form input {
    padding: 14px 18px;
  }
  .btn-primary {
    width: 100%;
    padding: 14px 22px;
  }
  .form-msg { padding: 4px 18px 6px; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; }
  .nav-cta-arrow { width: 16px; height: 16px; }

  .lead-stat-label { display: block; margin-left: 0; transform: none; margin-top: 8px; }

  .tiles { grid-template-columns: 1fr; }
  .tile { min-height: 160px; }

  .step-visual { min-height: 420px; }
}

@media (max-width: 480px) {
  .phone { width: 240px; }
  .phone-step { width: 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   section head — center variant + lede
   ═══════════════════════════════════════════════════════════════ */
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.section-head-center .section-h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--fg-50);
  margin-top: clamp(16px, 2vw, 24px);
  max-width: 56ch;
}
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════
   what changes — 4 pillars
   ═══════════════════════════════════════════════════════════════ */
.what-changes {
  padding: clamp(80px, 12vw, 144px) 0;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--fg-08);
  border-top: 1px solid var(--fg-08);
  border-bottom: 1px solid var(--fg-08);
}
@media (min-width: 720px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  position: relative;
  padding: clamp(32px, 3.6vw, 48px) clamp(20px, 2.4vw, 28px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  transition: background 400ms var(--ease-out);
}
.pillar:hover {
  background: var(--bg-card);
}

.pillar-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 13px;
  color: var(--fg-50);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-70);
  max-width: 28ch;
}

/* ═══════════════════════════════════════════════════════════════
   how it works — 3-up card grid
   ═══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 960px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step-card {
  position: relative;
  padding: clamp(32px, 3vw, 44px) clamp(28px, 2.6vw, 36px) 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid var(--fg-08);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  min-height: 640px;
  transition: border-color 400ms var(--ease-out), transform 400ms var(--ease-out);
  isolation: isolate;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(30, 203, 137, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.step-card:hover {
  border-color: var(--fg-15);
  transform: translateY(-3px);
}
.step-card:hover::before { opacity: 1; }

.step-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.step-card-head .step-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--fg-50);
  letter-spacing: 0.04em;
  padding: 0;
  border: 0;
  margin: 0;
}
.step-card .step-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.step-card .step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-70);
  max-width: 32ch;
}

.step-card-visual {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.phone-card {
  width: 220px;
  transform: translateY(40px);
  transition: transform 600ms var(--ease-out);
}
.step-card:hover .phone-card { transform: translateY(32px); }

@media (max-width: 960px) {
  .step-card { min-height: 560px; }
  .phone-card { width: 200px; transform: translateY(30px); }
}

/* ═══════════════════════════════════════════════════════════════
   we run it all — 6 services
   ═══════════════════════════════════════════════════════════════ */
.we-run {
  padding: clamp(96px, 14vw, 168px) 0;
}

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--fg-08);
  border-top: 1px solid var(--fg-08);
  border-bottom: 1px solid var(--fg-08);
  margin-top: clamp(48px, 6vw, 72px);
}
@media (min-width: 720px) {
  .services { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}

.service {
  position: relative;
  padding: clamp(32px, 3.4vw, 48px) clamp(24px, 2.6vw, 32px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: background 400ms var(--ease-out);
}
.service:hover { background: var(--bg-card); }

.service-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 13px;
  color: var(--fg-50);
  letter-spacing: 0.04em;
}

.service-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.service p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-70);
  max-width: 36ch;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   selection
   ═══════════════════════════════════════════════════════════════ */
::selection {
  background: var(--gains);
  color: #04130b;
}
