#brand-home-v2 {
  --ink: #0a0f1d;
  --ink-2: #11182a;
  --ink-3: #192238;
  --paper: #f4f4ef;
  --paper-2: #ebece6;
  --white: #ffffff;
  --muted: #667085;
  --muted-dark: #9aa5b8;
  --line: rgba(10, 15, 29, .12);
  --line-light: rgba(255, 255, 255, .12);
  --trend: #8270ff;
  --trend-soft: #ece9ff;
  --realty: #18b881;
  --realty-soft: #e0f7ef;
  --fire: #ff934f;
  --fire-soft: #fff0e5;
  --auto: #36a3ff;
  --auto-soft: #e4f3ff;
  --lime: #c8f36b;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(7, 13, 28, .12);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, .28);
  --shell: min(1240px, calc(100% - 48px));
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
}

#brand-home-v2 * {
  box-sizing: border-box;
}

#brand-home-v2 {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

#brand-home-v2 {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open:has(#brand-home-v2) {
  overflow: hidden;
}

#brand-home-v2 a {
  color: inherit;
  text-decoration: none;
}

#brand-home-v2 button,
#brand-home-v2 a {
  -webkit-tap-highlight-color: transparent;
}

#brand-home-v2 button,
#brand-home-v2 input,
#brand-home-v2 textarea,
#brand-home-v2 select {
  font: inherit;
}

#brand-home-v2 img,
#brand-home-v2 svg {
  display: block;
  max-width: 100%;
}

#brand-home-v2 p,
#brand-home-v2 h1,
#brand-home-v2 h2,
#brand-home-v2 h3,
#brand-home-v2 h4,
#brand-home-v2 dl,
#brand-home-v2 dd {
  margin: 0;
}

#brand-home-v2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#brand-home-v2 .shell {
  width: var(--shell);
  margin-inline: auto;
}

#brand-home-v2 .skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}

#brand-home-v2 .skip-link:focus {
  top: 18px;
}

/* Header */
#brand-home-v2 .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

#brand-home-v2 .site-header.is-scrolled {
  background: rgba(8, 13, 27, .84);
  border-color: rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

#brand-home-v2 .header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

#brand-home-v2 .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

#brand-home-v2 .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

#brand-home-v2 .brand-mark svg {
  width: 26px;
  height: 26px;
}

#brand-home-v2 .brand-mark path:first-child {
  fill: var(--lime);
}

#brand-home-v2 .brand-mark path:last-child {
  fill: var(--ink);
}

#brand-home-v2 .brand-wordmark {
  display: grid;
  gap: 2px;
}

#brand-home-v2 .brand-wordmark strong {
  font-size: 15px;
  letter-spacing: -.02em;
}

#brand-home-v2 .brand-wordmark small {
  color: rgba(255,255,255,.55);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .18em;
}

#brand-home-v2 .desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

#brand-home-v2 .desktop-nav a,
#brand-home-v2 .header-contact {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease;
}

#brand-home-v2 .desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--lime);
  transition: right .22s ease;
}

#brand-home-v2 .desktop-nav a:hover,
#brand-home-v2 .desktop-nav a:focus-visible,
#brand-home-v2 .header-contact:hover,
#brand-home-v2 .header-contact:focus-visible {
  color: var(--white);
}

#brand-home-v2 .desktop-nav a:hover::after,
#brand-home-v2 .desktop-nav a:focus-visible::after {
  right: 0;
}

#brand-home-v2 .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

#brand-home-v2 .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

#brand-home-v2 .menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

#brand-home-v2 .menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

#brand-home-v2 .menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

#brand-home-v2 .mobile-menu {
  position: fixed;
  inset: 78px 0 0;
  padding: 28px 24px;
  background: rgba(8, 13, 27, .98);
  border-top: 1px solid rgba(255,255,255,.08);
}

#brand-home-v2 .mobile-menu a {
  display: block;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-size: 20px;
  font-weight: 700;
}

/* Buttons */
#brand-home-v2 .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

#brand-home-v2 .button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

#brand-home-v2 .button-small {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 11px;
  font-size: 12px;
}

#brand-home-v2 .button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(200, 243, 107, .15);
}

#brand-home-v2 .button-primary:hover,
#brand-home-v2 .button-primary:focus-visible {
  background: #d4ff7b;
}

#brand-home-v2 .button-light {
  background: var(--white);
  color: var(--ink);
}

#brand-home-v2 .button-ghost {
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

#brand-home-v2 .button-ghost:hover,
#brand-home-v2 .button-ghost:focus-visible {
  color: var(--white);
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.08);
}

#brand-home-v2 .button-dark {
  background: var(--ink);
  color: var(--white);
}

#brand-home-v2 .button-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.24);
}

#brand-home-v2 .button-outline-light:hover,
#brand-home-v2 .button-outline-light:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}

/* Hero */
#brand-home-v2 .hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 15%, rgba(130,112,255,.19), transparent 28%),
    radial-gradient(circle at 60% 68%, rgba(24,184,129,.09), transparent 27%),
    linear-gradient(132deg, #080d1b 0%, #0c1325 54%, #09101d 100%);
}

#brand-home-v2 .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

#brand-home-v2 .hero::after {
  content: "EASY AUTO";
  position: absolute;
  right: -30px;
  bottom: 18px;
  color: transparent;
  font-size: clamp(120px, 16vw, 250px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  pointer-events: none;
}

#brand-home-v2 .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .87fr) minmax(560px, 1.13fr);
  align-items: center;
  gap: 64px;
  min-height: 900px;
  padding-top: 110px;
  padding-bottom: 80px;
}

#brand-home-v2 .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}

#brand-home-v2 .eyebrow.dark {
  color: #687082;
}

#brand-home-v2 .status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(200,243,107,.08);
}

#brand-home-v2 .status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(200,243,107,.25);
  border-radius: 50%;
  animation: ea-home-v2-pulse 2s ease-out infinite;
}

@keyframes ea-home-v2-pulse {
  0% { transform: scale(.6); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

#brand-home-v2 .hero h1 {
  max-width: 710px;
  margin-top: 26px;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: 1.08;
}

#brand-home-v2 .hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--lime);
}

#brand-home-v2 .hero h1 span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  bottom: -7px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lime), rgba(200,243,107,0));
  opacity: .35;
}

#brand-home-v2 .hero-description {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

#brand-home-v2 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

#brand-home-v2 .hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 600px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.11);
}

#brand-home-v2 .hero-proof div {
  padding-right: 20px;
}

#brand-home-v2 .hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.1);
}

#brand-home-v2 .hero-proof dt {
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -.02em;
}

#brand-home-v2 .hero-proof dd {
  margin-top: 7px;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  line-height: 1.4;
}

#brand-home-v2 .hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

#brand-home-v2 .orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}

#brand-home-v2 .orbit-one {
  width: 610px;
  height: 610px;
  animation: ea-home-v2-orbitSpin 28s linear infinite;
}

#brand-home-v2 .orbit-one::before,
#brand-home-v2 .orbit-one::after,
#brand-home-v2 .orbit-two::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(200,243,107,.7);
}

#brand-home-v2 .orbit-one::before {
  width: 7px;
  height: 7px;
  top: 55px;
  left: 92px;
}

#brand-home-v2 .orbit-one::after {
  width: 5px;
  height: 5px;
  right: 25px;
  top: 270px;
  background: var(--trend);
  box-shadow: 0 0 22px rgba(130,112,255,.8);
}

#brand-home-v2 .orbit-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  opacity: .58;
  animation: ea-home-v2-orbitSpinReverse 22s linear infinite;
}

#brand-home-v2 .orbit-two::after {
  width: 6px;
  height: 6px;
  left: -3px;
  top: 55%;
  background: var(--realty);
  box-shadow: 0 0 18px rgba(24,184,129,.8);
}

@keyframes ea-home-v2-orbitSpin { to { transform: rotate(360deg); } }
@keyframes ea-home-v2-orbitSpinReverse { to { transform: rotate(-360deg); } }

#brand-home-v2 .brief-card {
  position: relative;
  z-index: 3;
  width: min(100%, 585px);
  min-height: 500px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(22,31,53,.92), rgba(10,17,31,.96));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#brand-home-v2 .brief-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(130,112,255,.15), transparent 28%),
    linear-gradient(120deg, rgba(255,255,255,.03), transparent 38%);
}

#brand-home-v2 .brief-card-head,
#brand-home-v2 .signal-title-row,
#brand-home-v2 .today-board-head,
#brand-home-v2 .today-card-head,
#brand-home-v2 .service-card-top,
#brand-home-v2 .mock-toolbar,
#brand-home-v2 .board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#brand-home-v2 .brief-card-head {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#brand-home-v2 .brief-card-head > div {
  display: grid;
  gap: 6px;
}

#brand-home-v2 .mini-label {
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .2em;
}

#brand-home-v2 .brief-card-head strong {
  font-size: 14px;
  letter-spacing: -.01em;
}

#brand-home-v2 .brief-card-head time {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.04);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

#brand-home-v2 .brief-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 18px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

#brand-home-v2 .brief-tab {
  min-height: 37px;
  border: 0;
  border-radius: 9px;
  color: rgba(255,255,255,.46);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

#brand-home-v2 .brief-tab:hover,
#brand-home-v2 .brief-tab:focus-visible {
  color: var(--white);
}

#brand-home-v2 .brief-tab.is-active {
  color: var(--white);
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

#brand-home-v2 .brief-panels {
  position: relative;
  z-index: 2;
}

#brand-home-v2 .brief-panel {
  padding-top: 24px;
  animation: ea-home-v2-panelIn .3s ease both;
}

@keyframes ea-home-v2-panelIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

#brand-home-v2 .panel-kicker {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

#brand-home-v2 .trend-text { color: var(--trend); }
#brand-home-v2 .realty-text { color: var(--realty); }
#brand-home-v2 .fire-text { color: var(--fire); }

#brand-home-v2 .signal-title-row {
  align-items: flex-start;
  gap: 20px;
  margin-top: 9px;
}

#brand-home-v2 .signal-title-row > div > span {
  color: rgba(255,255,255,.44);
  font-size: 10px;
}

#brand-home-v2 .signal-title-row h2 {
  max-width: 390px;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.035em;
  word-break: keep-all;
}

#brand-home-v2 .live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.035);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

#brand-home-v2 .live-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200,243,107,.8);
}

#brand-home-v2 .trend-chart {
  position: relative;
  height: 152px;
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(130,112,255,.06), rgba(255,255,255,.015));
}

#brand-home-v2 .trend-chart svg {
  width: 100%;
  height: 100%;
}

#brand-home-v2 .chart-grid {
  fill: none;
  stroke: rgba(255,255,255,.05);
  stroke-width: 1;
}

#brand-home-v2 .chart-line {
  fill: none;
  stroke: #9c8eff;
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(130,112,255,.7));
}

#brand-home-v2 .chart-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #b6abff;
  border-radius: 50%;
  background: var(--ink-2);
  box-shadow: 0 0 0 4px rgba(130,112,255,.1);
}

#brand-home-v2 .chart-point span {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  padding: 4px 6px;
  border-radius: 5px;
  color: rgba(255,255,255,.74);
  background: rgba(10,15,29,.92);
  font-size: 7px;
  font-weight: 700;
}

#brand-home-v2 .point-a { left: 43%; top: 54%; }
#brand-home-v2 .point-b { right: 9%; top: 18%; }

#brand-home-v2 .brief-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 17px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

#brand-home-v2 .brief-metrics div {
  min-width: 0;
  padding: 14px 12px 14px 0;
}

#brand-home-v2 .brief-metrics div + div {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.07);
}

#brand-home-v2 .brief-metrics span,
#brand-home-v2 .brief-metrics strong {
  display: block;
}

#brand-home-v2 .brief-metrics span {
  color: rgba(255,255,255,.34);
  font-size: 8px;
}

#brand-home-v2 .brief-metrics strong {
  overflow: hidden;
  margin-top: 5px;
  color: rgba(255,255,255,.76);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#brand-home-v2 .sample-note {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: rgba(255,255,255,.27);
  font-size: 7px;
  line-height: 1.5;
}

#brand-home-v2 .realty-visual,
#brand-home-v2 .fire-visual {
  position: relative;
  height: 152px;
  margin-top: 17px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(24,184,129,.08), rgba(255,255,255,.015));
}

#brand-home-v2 .map-grid {
  position: absolute;
  inset: 0;
  opacity: .6;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

#brand-home-v2 .map-grid::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 135px;
  left: 45px;
  top: 7px;
  border: 1px solid rgba(24,184,129,.3);
  border-radius: 48% 52% 44% 56% / 52% 37% 63% 48%;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 45px rgba(24,184,129,.06), 0 0 30px rgba(24,184,129,.04);
}

#brand-home-v2 .map-node {
  position: absolute;
  z-index: 2;
  padding: 4px 7px;
  border: 1px solid rgba(24,184,129,.22);
  border-radius: 999px;
  color: #76e6bf;
  background: rgba(9,31,32,.86);
  font-size: 7px;
  font-weight: 800;
}

#brand-home-v2 .map-node::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--realty);
  box-shadow: 0 0 10px rgba(24,184,129,.9);
}

#brand-home-v2 .n1 { left: 135px; top: 36px; }
#brand-home-v2 .n2 { left: 180px; top: 68px; }
#brand-home-v2 .n3 { left: 220px; top: 106px; }
#brand-home-v2 .n4 { left: 91px; top: 93px; }

#brand-home-v2 .realty-stat {
  position: absolute;
  right: 16px;
  top: 17px;
  z-index: 3;
  width: 155px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(8,20,27,.8);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

#brand-home-v2 .realty-stat small,
#brand-home-v2 .realty-stat strong,
#brand-home-v2 .realty-stat span {
  display: block;
}

#brand-home-v2 .realty-stat small {
  color: var(--realty);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
}

#brand-home-v2 .realty-stat strong {
  margin-top: 9px;
  font-size: 17px;
}

#brand-home-v2 .realty-stat span {
  margin-top: 8px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
}

#brand-home-v2 .fire-visual {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 42px;
  background: linear-gradient(145deg, rgba(255,147,79,.08), rgba(255,255,255,.015));
}

#brand-home-v2 .goal-ring,
#brand-home-v2 .fire-gauge {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--fire) 0 68%, rgba(255,255,255,.08) 68% 100%);
}

#brand-home-v2 .goal-ring {
  width: 108px;
  height: 108px;
  filter: drop-shadow(0 0 18px rgba(255,147,79,.16));
}

#brand-home-v2 .goal-ring::after,
#brand-home-v2 .fire-gauge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #111827;
}

#brand-home-v2 .goal-ring span,
#brand-home-v2 .fire-gauge span {
  position: relative;
  z-index: 2;
  display: grid;
  text-align: center;
}

#brand-home-v2 .goal-ring small,
#brand-home-v2 .fire-gauge small {
  color: rgba(255,255,255,.38);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .15em;
}

#brand-home-v2 .goal-ring strong {
  margin-top: 3px;
  font-size: 18px;
}

#brand-home-v2 .allocation-list {
  flex: 1;
  display: grid;
  gap: 15px;
}

#brand-home-v2 .allocation-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

#brand-home-v2 .allocation-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.52);
  font-size: 9px;
}

#brand-home-v2 .allocation-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

#brand-home-v2 .dot-growth { background: var(--fire); }
#brand-home-v2 .dot-dividend { background: #ffd27a; }
#brand-home-v2 .dot-buffer { background: #8fa2bf; }

#brand-home-v2 .allocation-list strong {
  font-size: 11px;
}

#brand-home-v2 .floating-card {
  position: absolute;
  z-index: 5;
  width: 132px;
  min-height: 116px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .25s ease, border-color .25s ease;
}

#brand-home-v2 .floating-card:hover,
#brand-home-v2 .floating-card:focus-visible {
  transform: translateY(-5px) rotate(0deg);
  border-color: rgba(255,255,255,.3);
}

#brand-home-v2 .floating-card small,
#brand-home-v2 .floating-card strong {
  display: block;
}

#brand-home-v2 .floating-card small {
  margin-top: 18px;
  color: rgba(255,255,255,.45);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
}

#brand-home-v2 .floating-card strong {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
}

#brand-home-v2 .floating-icon {
  position: absolute;
  top: 12px;
  right: 13px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
}

#brand-home-v2 .floating-trend {
  left: -17px;
  top: 70px;
  transform: rotate(-4deg);
  background: linear-gradient(145deg, rgba(72,60,151,.95), rgba(35,29,82,.96));
}

#brand-home-v2 .floating-realty {
  right: -24px;
  top: 142px;
  transform: rotate(4deg);
  background: linear-gradient(145deg, rgba(21,111,86,.96), rgba(10,59,47,.97));
}

#brand-home-v2 .floating-fire {
  right: 36px;
  bottom: 10px;
  transform: rotate(-3deg);
  background: linear-gradient(145deg, rgba(152,80,40,.97), rgba(74,37,21,.98));
}

#brand-home-v2 .hero-bottom-line {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,243,107,.35), transparent);
}

#brand-home-v2 .signal-strip {
  color: rgba(255,255,255,.42);
  background: #080d1b;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

#brand-home-v2 .signal-strip-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}

#brand-home-v2 .signal-strip-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,243,107,.45);
}

/* Shared section styles */
#brand-home-v2 .section {
  padding-block: 128px;
}

#brand-home-v2 .section-heading h2,
#brand-home-v2 .journey-copy h2,
#brand-home-v2 .engine-intro h2,
#brand-home-v2 .final-cta h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.12;
  word-break: keep-all;
}

#brand-home-v2 .section-heading > p,
#brand-home-v2 .split-heading > p,
#brand-home-v2 .heading-action p,
#brand-home-v2 .journey-copy > p,
#brand-home-v2 .engine-intro > p {
  color: #626b7a;
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

#brand-home-v2 .split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .62fr);
  align-items: end;
  gap: 80px;
}

#brand-home-v2 .split-heading > p {
  max-width: 520px;
  padding-bottom: 6px;
}

#brand-home-v2 .centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

#brand-home-v2 .centered .eyebrow {
  justify-content: center;
}

#brand-home-v2 .centered > p {
  margin: 22px auto 0;
}

#brand-home-v2 .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Platform flow */
#brand-home-v2 .platform {
  background: var(--paper);
}

#brand-home-v2 .platform-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: stretch;
  margin-top: 76px;
}

#brand-home-v2 .platform-flow article {
  position: relative;
  min-height: 290px;
  padding: 28px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

#brand-home-v2 .platform-flow article:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 44px rgba(10,15,29,.07);
}

#brand-home-v2 .flow-number {
  position: absolute;
  right: 20px;
  top: 19px;
  color: #a6adba;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

#brand-home-v2 .flow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
}

#brand-home-v2 .flow-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#brand-home-v2 .flow-trend { color: var(--trend); background: var(--trend-soft); }
#brand-home-v2 .flow-realty { color: var(--realty); background: var(--realty-soft); }
#brand-home-v2 .flow-fire { color: var(--fire); background: var(--fire-soft); }
#brand-home-v2 .flow-auto { color: var(--auto); background: var(--auto-soft); }

#brand-home-v2 .platform-flow article > div:last-child {
  margin-top: 40px;
}

#brand-home-v2 .platform-flow small {
  color: #9299a6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}

#brand-home-v2 .platform-flow h3 {
  margin-top: 8px;
  font-size: 19px;
  letter-spacing: -.035em;
}

#brand-home-v2 .platform-flow p {
  margin-top: 15px;
  color: #687181;
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

#brand-home-v2 .flow-arrow {
  align-self: center;
  color: #a1a8b4;
  text-align: center;
  font-size: 14px;
}

/* Services */
#brand-home-v2 .services {
  overflow: hidden;
  background: #e9eae4;
  border-top: 1px solid rgba(10,15,29,.06);
  border-bottom: 1px solid rgba(10,15,29,.08);
}

#brand-home-v2 .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 65px;
}

#brand-home-v2 .service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(10,15,29,.1);
  border-radius: 26px;
  background: #f6f6f2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .25s ease, box-shadow .25s ease;
}

#brand-home-v2 .service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(10,15,29,.11);
}

#brand-home-v2 .service-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .18;
}

#brand-home-v2 .service-trend::before { background: var(--trend); }
#brand-home-v2 .service-realty::before { background: var(--realty); }
#brand-home-v2 .service-fire::before { background: var(--fire); }

#brand-home-v2 .service-card-top {
  position: relative;
  z-index: 2;
}

#brand-home-v2 .service-index {
  color: #a2a8b2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

#brand-home-v2 .service-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(10,15,29,.08);
  border-radius: 999px;
  color: #747d8a;
  background: rgba(255,255,255,.58);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
}

#brand-home-v2 .service-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

#brand-home-v2 .service-trend .service-status i { background: var(--trend); box-shadow: 0 0 8px rgba(130,112,255,.55); }
#brand-home-v2 .service-realty .service-status i { background: var(--realty); box-shadow: 0 0 8px rgba(24,184,129,.55); }
#brand-home-v2 .service-fire .service-status i { background: var(--fire); box-shadow: 0 0 8px rgba(255,147,79,.55); }

#brand-home-v2 .service-copy {
  position: relative;
  z-index: 2;
  padding-top: 42px;
}

#brand-home-v2 .service-copy > p:first-child {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .17em;
}

#brand-home-v2 .service-trend .service-copy > p:first-child { color: var(--trend); }
#brand-home-v2 .service-realty .service-copy > p:first-child { color: var(--realty); }
#brand-home-v2 .service-fire .service-copy > p:first-child { color: var(--fire); }

#brand-home-v2 .service-copy h3 {
  margin-top: 13px;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.17;
  letter-spacing: -.055em;
}

#brand-home-v2 .service-description {
  min-height: 76px;
  margin-top: 19px;
  color: #66707f;
  font-size: 13px;
  line-height: 1.72;
  word-break: keep-all;
}

#brand-home-v2 .feature-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

#brand-home-v2 .feature-list li {
  position: relative;
  padding-left: 15px;
  color: #454e5d;
  font-size: 11px;
  line-height: 1.5;
}

#brand-home-v2 .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}

#brand-home-v2 .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

#brand-home-v2 .service-trend .service-link { color: #6251e7; }
#brand-home-v2 .service-realty .service-link { color: #0c9165; }
#brand-home-v2 .service-fire .service-link { color: #d86e2e; }

#brand-home-v2 .service-link span {
  transition: transform .2s ease;
}

#brand-home-v2 .service-link:hover span,
#brand-home-v2 .service-link:focus-visible span {
  transform: translate(2px, -2px);
}

#brand-home-v2 .service-mock {
  position: relative;
  z-index: 2;
  height: 275px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  color: var(--white);
  background: var(--ink-2);
  box-shadow: 0 18px 42px rgba(10,15,29,.17), inset 0 1px 0 rgba(255,255,255,.07);
}

#brand-home-v2 .trend-mock { background: linear-gradient(145deg, #17152c, #0e1322); }
#brand-home-v2 .realty-mock { background: linear-gradient(145deg, #102923, #0d1820); }
#brand-home-v2 .fire-mock { background: linear-gradient(145deg, #302019, #111722); }

#brand-home-v2 .mock-toolbar {
  height: 42px;
  justify-content: flex-start;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

#brand-home-v2 .mock-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

#brand-home-v2 .mock-toolbar span {
  margin-left: auto;
  color: rgba(255,255,255,.35);
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: .18em;
}

#brand-home-v2 .trend-rank {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 13px 14px 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

#brand-home-v2 .trend-rank b {
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

#brand-home-v2 .trend-rank span {
  display: grid;
  gap: 4px;
}

#brand-home-v2 .trend-rank strong {
  font-size: 10px;
  font-weight: 700;
}

#brand-home-v2 .trend-rank small {
  color: rgba(255,255,255,.35);
  font-size: 7px;
}

#brand-home-v2 .trend-rank em {
  color: var(--trend);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

#brand-home-v2 .mock-spark {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 95px;
}

#brand-home-v2 .mock-spark path {
  fill: none;
  stroke: #8878ff;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(130,112,255,.55));
}

#brand-home-v2 .realty-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 15px 14px;
}

#brand-home-v2 .realty-kpis div {
  padding: 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
}

#brand-home-v2 .realty-kpis small,
#brand-home-v2 .realty-kpis strong,
#brand-home-v2 .realty-kpis span {
  display: block;
}

#brand-home-v2 .realty-kpis small {
  color: var(--realty);
  font-size: 5.8px;
  font-weight: 900;
  letter-spacing: .1em;
}

#brand-home-v2 .realty-kpis strong {
  margin-top: 7px;
  font-size: 10px;
}

#brand-home-v2 .realty-kpis span {
  margin-top: 5px;
  color: rgba(255,255,255,.32);
  font-size: 6.5px;
}

#brand-home-v2 .mini-bars {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 16px 12px 0;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 28px;
}

#brand-home-v2 .mini-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(24,184,129,.22), rgba(24,184,129,.85));
}

#brand-home-v2 .fire-dashboard {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 28px 20px;
}

#brand-home-v2 .fire-gauge {
  width: 116px;
  height: 116px;
}

#brand-home-v2 .fire-gauge strong {
  margin-top: 3px;
  font-size: 21px;
}

#brand-home-v2 .fire-lines {
  flex: 1;
  display: grid;
  gap: 17px;
}

#brand-home-v2 .fire-lines div {
  display: grid;
  gap: 7px;
}

#brand-home-v2 .fire-lines span {
  color: rgba(255,255,255,.48);
  font-size: 8px;
}

#brand-home-v2 .fire-lines i {
  position: relative;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

#brand-home-v2 .fire-lines i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fire), #ffc978);
}

#brand-home-v2 .etf-chips {
  display: flex;
  gap: 7px;
  padding: 0 28px;
}

#brand-home-v2 .etf-chips span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.035);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .11em;
}

/* Unified brief */
#brand-home-v2 .unified-brief {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0a1020;
}

#brand-home-v2 .unified-brief::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -240px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,112,255,.18), transparent 66%);
}

#brand-home-v2 .split-heading.light > p {
  color: rgba(255,255,255,.54);
}

#brand-home-v2 .today-board {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(24,33,55,.84), rgba(11,17,31,.96));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255,255,255,.08);
}

#brand-home-v2 .today-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

#brand-home-v2 .today-board-head {
  position: relative;
  z-index: 2;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#brand-home-v2 .board-label {
  color: rgba(255,255,255,.34);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
}

#brand-home-v2 .today-board-head h3 {
  margin-top: 7px;
  font-size: 24px;
  letter-spacing: -.03em;
}

#brand-home-v2 .board-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 8px;
  font-weight: 700;
}

#brand-home-v2 .board-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#brand-home-v2 .board-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200,243,107,.7);
}

#brand-home-v2 .today-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#brand-home-v2 .today-card {
  position: relative;
  min-height: 355px;
  padding: 28px 28px 24px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease;
}

#brand-home-v2 .today-card:last-child {
  border-right: 0;
}

#brand-home-v2 .today-card:hover,
#brand-home-v2 .today-card:focus-visible {
  background: rgba(255,255,255,.035);
}

#brand-home-v2 .today-card-head span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

#brand-home-v2 .today-card-head b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  transition: transform .2s ease, border-color .2s ease;
}

#brand-home-v2 .today-card:hover .today-card-head b,
#brand-home-v2 .today-card:focus-visible .today-card-head b {
  transform: translate(2px, -2px);
  border-color: rgba(255,255,255,.25);
}

#brand-home-v2 .today-trend .today-card-head span { color: var(--trend); }
#brand-home-v2 .today-realty .today-card-head span { color: var(--realty); }
#brand-home-v2 .today-fire .today-card-head span { color: var(--fire); }

#brand-home-v2 .today-card > p {
  margin-top: 50px;
  color: rgba(255,255,255,.38);
  font-size: 9px;
}

#brand-home-v2 .today-card h4 {
  max-width: 300px;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -.03em;
  word-break: keep-all;
}

#brand-home-v2 .today-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

#brand-home-v2 .today-tag-row span {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.37);
  background: rgba(255,255,255,.025);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .1em;
}

#brand-home-v2 .today-wave,
#brand-home-v2 .today-real-estate,
#brand-home-v2 .today-fire-progress {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 65px;
}

#brand-home-v2 .today-wave {
  display: flex;
  align-items: center;
  gap: 5px;
}

#brand-home-v2 .today-wave i {
  flex: 1;
  height: var(--wave-h, 18px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(130,112,255,.86), rgba(130,112,255,.08));
}

#brand-home-v2 .today-wave i:nth-child(1) { --wave-h: 17px; }
#brand-home-v2 .today-wave i:nth-child(2) { --wave-h: 26px; }
#brand-home-v2 .today-wave i:nth-child(3) { --wave-h: 13px; }
#brand-home-v2 .today-wave i:nth-child(4) { --wave-h: 38px; }
#brand-home-v2 .today-wave i:nth-child(5) { --wave-h: 27px; }
#brand-home-v2 .today-wave i:nth-child(6) { --wave-h: 49px; }
#brand-home-v2 .today-wave i:nth-child(7) { --wave-h: 33px; }
#brand-home-v2 .today-wave i:nth-child(8) { --wave-h: 57px; }
#brand-home-v2 .today-wave i:nth-child(9) { --wave-h: 41px; }
#brand-home-v2 .today-wave i:nth-child(10) { --wave-h: 62px; }
#brand-home-v2 .today-wave i:nth-child(11) { --wave-h: 45px; }
#brand-home-v2 .today-wave i:nth-child(12) { --wave-h: 56px; }

#brand-home-v2 .today-real-estate {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-top: 7px;
  border-bottom: 1px solid rgba(24,184,129,.3);
}

#brand-home-v2 .today-real-estate i {
  flex: 1;
  height: var(--building-h, 25px);
  border: 1px solid rgba(24,184,129,.3);
  border-bottom: 0;
  background:
    linear-gradient(90deg, transparent 45%, rgba(24,184,129,.18) 45% 55%, transparent 55%),
    linear-gradient(rgba(24,184,129,.16) 1px, transparent 1px);
  background-size: 100% 100%, 100% 9px;
}

#brand-home-v2 .today-real-estate i:nth-child(1) { --building-h: 23px; }
#brand-home-v2 .today-real-estate i:nth-child(2) { --building-h: 45px; }
#brand-home-v2 .today-real-estate i:nth-child(3) { --building-h: 32px; }
#brand-home-v2 .today-real-estate i:nth-child(4) { --building-h: 56px; }
#brand-home-v2 .today-real-estate i:nth-child(5) { --building-h: 39px; }
#brand-home-v2 .today-real-estate i:nth-child(6) { --building-h: 61px; }
#brand-home-v2 .today-real-estate i:nth-child(7) { --building-h: 48px; }
#brand-home-v2 .today-real-estate i:nth-child(8) { --building-h: 64px; }

#brand-home-v2 .today-fire-progress {
  display: grid;
  align-content: end;
  gap: 12px;
}

#brand-home-v2 .today-fire-progress span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

#brand-home-v2 .today-fire-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fire), #ffd16f);
  box-shadow: 0 0 18px rgba(255,147,79,.25);
}

#brand-home-v2 .today-fire-progress strong {
  color: rgba(255,255,255,.28);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .17em;
}

#brand-home-v2 .board-footer {
  position: relative;
  z-index: 2;
  gap: 30px;
  padding: 20px 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  font-size: 9px;
}

#brand-home-v2 .board-footer p span {
  margin-right: 8px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
}

#brand-home-v2 .board-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  white-space: nowrap;
}

/* Journey */
#brand-home-v2 .journey {
  background: var(--paper);
}

#brand-home-v2 .journey-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

#brand-home-v2 .journey-copy {
  position: sticky;
  top: 130px;
}

#brand-home-v2 .journey-copy > p {
  max-width: 455px;
  margin-top: 24px;
}

#brand-home-v2 .journey-copy .button {
  margin-top: 32px;
}

#brand-home-v2 .question-list {
  border-top: 1px solid var(--line);
}

#brand-home-v2 .question-list > a {
  display: grid;
  grid-template-columns: 52px 1fr 32px;
  align-items: center;
  gap: 22px;
  min-height: 125px;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

#brand-home-v2 .question-list > a:hover,
#brand-home-v2 .question-list > a:focus-visible {
  padding-inline: 14px;
  background: rgba(255,255,255,.48);
}

#brand-home-v2 .question-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  font-size: 9px;
  font-weight: 900;
}

#brand-home-v2 .trend-bg { color: var(--trend); background: var(--trend-soft); }
#brand-home-v2 .realty-bg { color: var(--realty); background: var(--realty-soft); }
#brand-home-v2 .fire-bg { color: var(--fire); background: var(--fire-soft); }
#brand-home-v2 .auto-bg { color: var(--auto); background: var(--auto-soft); }

#brand-home-v2 .question-list div {
  display: grid;
  gap: 8px;
}

#brand-home-v2 .question-list small {
  color: #808895;
  font-size: 11px;
}

#brand-home-v2 .question-list strong {
  font-size: 17px;
  letter-spacing: -.025em;
}

#brand-home-v2 .question-list b {
  color: #929aa7;
  font-size: 14px;
  transition: transform .2s ease, color .2s ease;
}

#brand-home-v2 .question-list > a:hover b,
#brand-home-v2 .question-list > a:focus-visible b {
  color: var(--ink);
  transform: translate(2px, -2px);
}

/* Engine */
#brand-home-v2 .engine {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 40%, rgba(54,163,255,.12), transparent 28%),
    linear-gradient(135deg, #0a1020, #101a2e 65%, #0a1020);
}

#brand-home-v2 .engine::after {
  content: "AUTOMATION ENGINE";
  position: absolute;
  right: -10px;
  top: 22px;
  color: transparent;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 900;
  letter-spacing: -.07em;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  pointer-events: none;
}

#brand-home-v2 .engine-shell {
  position: relative;
  z-index: 2;
}

#brand-home-v2 .engine-intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .58fr);
  column-gap: 80px;
  align-items: end;
}

#brand-home-v2 .engine-intro .eyebrow,
#brand-home-v2 .engine-intro h2 {
  grid-column: 1;
}

#brand-home-v2 .engine-intro > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  padding-bottom: 7px;
  color: rgba(255,255,255,.52);
}

#brand-home-v2 .engine-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 78px;
}

#brand-home-v2 .engine-track {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 34px;
  height: 1px;
  background: rgba(255,255,255,.12);
}

#brand-home-v2 .engine-track i {
  display: block;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 13px rgba(200,243,107,.5);
  animation: ea-home-v2-scanTrack 4.5s ease-in-out infinite;
}

@keyframes ea-home-v2-scanTrack {
  0%, 100% { transform: translateX(0); opacity: .25; }
  50% { transform: translateX(255%); opacity: 1; }
}

#brand-home-v2 .engine-diagram article {
  position: relative;
  z-index: 2;
}

#brand-home-v2 .engine-diagram article > span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  background: #111a2d;
  box-shadow: 0 0 0 8px rgba(255,255,255,.02), inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 9px;
  font-weight: 900;
}

#brand-home-v2 .engine-diagram article > div {
  margin-top: 28px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

#brand-home-v2 .engine-diagram small {
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .14em;
}

#brand-home-v2 .engine-diagram h3 {
  margin-top: 7px;
  font-size: 17px;
}

#brand-home-v2 .engine-diagram p {
  margin-top: 13px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1.65;
  word-break: keep-all;
}

/* Content */
#brand-home-v2 .content-hub {
  background: #ecece6;
}

#brand-home-v2 .heading-action {
  display: grid;
  gap: 18px;
  align-self: end;
}

#brand-home-v2 .text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

#brand-home-v2 .content-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
  margin-top: 65px;
}

#brand-home-v2 .content-feature,
#brand-home-v2 .content-item {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

#brand-home-v2 .content-feature:hover,
#brand-home-v2 .content-feature:focus-visible,
#brand-home-v2 .content-item:hover,
#brand-home-v2 .content-item:focus-visible {
  transform: translateY(-5px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 48px rgba(10,15,29,.08);
}

#brand-home-v2 .content-category {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

#brand-home-v2 .content-feature h3,
#brand-home-v2 .content-item h3 {
  margin-top: 25px;
  font-size: 25px;
  line-height: 1.38;
  letter-spacing: -.04em;
  word-break: keep-all;
}

#brand-home-v2 .content-feature h3 {
  max-width: 530px;
  font-size: 30px;
}

#brand-home-v2 .content-feature > p,
#brand-home-v2 .content-item > p {
  margin-top: 16px;
  color: #66707d;
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}

#brand-home-v2 .content-feature > p {
  max-width: 450px;
}

#brand-home-v2 .content-more,
#brand-home-v2 .content-item > span:last-child {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

#brand-home-v2 .content-graphic {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 190px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: .7;
}

#brand-home-v2 .content-graphic i {
  flex: 1;
  height: var(--h, 30%);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(130,112,255,.1), rgba(130,112,255,.75));
}

#brand-home-v2 .content-graphic i:nth-child(1) { --h: 28%; }
#brand-home-v2 .content-graphic i:nth-child(2) { --h: 45%; }
#brand-home-v2 .content-graphic i:nth-child(3) { --h: 35%; }
#brand-home-v2 .content-graphic i:nth-child(4) { --h: 58%; }
#brand-home-v2 .content-graphic i:nth-child(5) { --h: 49%; }
#brand-home-v2 .content-graphic i:nth-child(6) { --h: 78%; }
#brand-home-v2 .content-graphic i:nth-child(7) { --h: 96%; }

/* Final CTA */
#brand-home-v2 .final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(130,112,255,.18), transparent 28%),
    #080d1b;
}

#brand-home-v2 .final-cta-inner {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-block: 90px 130px;
}

#brand-home-v2 .final-cta h2 {
  font-size: clamp(46px, 5.5vw, 76px);
}

#brand-home-v2 .final-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

#brand-home-v2 .final-wordmark {
  position: absolute;
  left: 50%;
  bottom: -4.5vw;
  transform: translateX(-50%);
  color: rgba(255,255,255,.035);
  font-size: 13.2vw;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* Footer */
#brand-home-v2 .site-footer {
  color: rgba(255,255,255,.56);
  background: #060a13;
  border-top: 1px solid rgba(255,255,255,.06);
}

#brand-home-v2 .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-block: 72px;
}

#brand-home-v2 .footer-logo .brand-mark {
  width: 42px;
  height: 42px;
}

#brand-home-v2 .footer-logo .brand-wordmark strong {
  color: var(--white);
  font-size: 17px;
}

#brand-home-v2 .footer-brand > p {
  margin-top: 22px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  line-height: 1.7;
}

#brand-home-v2 .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

#brand-home-v2 .footer-links h3 {
  margin-bottom: 20px;
  color: rgba(255,255,255,.85);
  font-size: 11px;
}

#brand-home-v2 .footer-links a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 13px;
  color: rgba(255,255,255,.43);
  font-size: 11px;
  transition: color .2s ease;
}

#brand-home-v2 .footer-links a:hover,
#brand-home-v2 .footer-links a:focus-visible {
  color: var(--white);
}

#brand-home-v2 .footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.28);
  font-size: 9px;
}

#brand-home-v2 .footer-bottom span {
  margin-inline: 5px;
}

/* Focus */
#brand-home-v2 a:focus-visible,
#brand-home-v2 button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1180px) {
  #brand-home-v2 .desktop-nav {
    gap: 20px;
  }

  #brand-home-v2 .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    gap: 38px;
  }

  #brand-home-v2 .floating-trend { left: -5px; }
  #brand-home-v2 .floating-realty { right: -8px; }
  #brand-home-v2 .floating-fire { right: 15px; }

  #brand-home-v2 .platform-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #brand-home-v2 .platform-flow .flow-arrow {
    display: none;
  }

  #brand-home-v2 .service-grid {
    grid-template-columns: 1fr;
  }

  #brand-home-v2 .service-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    column-gap: 42px;
  }

  #brand-home-v2 .service-card-top {
    grid-column: 1 / -1;
  }

  #brand-home-v2 .service-mock {
    align-self: end;
    margin-top: 35px;
  }

  #brand-home-v2 .service-description {
    min-height: 0;
  }

  #brand-home-v2 .content-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  #brand-home-v2 .content-feature {
    grid-row: span 2;
    min-height: 100%;
  }

  #brand-home-v2 .content-item {
    min-height: 250px;
  }
}

@media (max-width: 980px) {
  #brand-home-v2 {
    --shell: min(100% - 36px, 820px);
  }

  #brand-home-v2 .desktop-nav,
  #brand-home-v2 .header-contact,
  #brand-home-v2 .header-actions .button {
    display: none;
  }

  #brand-home-v2 .menu-toggle {
    display: block;
  }

  #brand-home-v2 .hero {
    min-height: auto;
  }

  #brand-home-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 110px;
  }

  #brand-home-v2 .hero-copy {
    max-width: 760px;
  }

  #brand-home-v2 .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  #brand-home-v2 .split-heading,
  #brand-home-v2 .engine-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #brand-home-v2 .engine-intro .eyebrow,
  #brand-home-v2 .engine-intro h2,
  #brand-home-v2 .engine-intro > p {
    grid-column: 1;
    grid-row: auto;
  }

  #brand-home-v2 .today-grid {
    grid-template-columns: 1fr;
  }

  #brand-home-v2 .today-card {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  #brand-home-v2 .today-card:last-child {
    border-bottom: 0;
  }

  #brand-home-v2 .journey-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  #brand-home-v2 .journey-copy {
    position: static;
  }

  #brand-home-v2 .engine-diagram {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  #brand-home-v2 .engine-track {
    display: none;
  }

  #brand-home-v2 .engine-diagram article > span {
    margin-left: 0;
  }

  #brand-home-v2 .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  #brand-home-v2 {
    --shell: min(100% - 30px, 600px);
  }

  #brand-home-v2 .header-inner {
    height: 70px;
  }

  #brand-home-v2 .mobile-menu {
    top: 70px;
  }

  #brand-home-v2 .brand-wordmark small {
    display: none;
  }

  #brand-home-v2 .hero-grid {
    padding-top: 126px;
    padding-bottom: 90px;
  }

  #brand-home-v2 .hero h1 {
    font-size: clamp(41px, 12vw, 58px);
  }

  #brand-home-v2 .hero-description {
    font-size: 14px;
  }

  #brand-home-v2 .hero-cta {
    display: grid;
  }

  #brand-home-v2 .hero-cta .button {
    width: 100%;
  }

  #brand-home-v2 .hero-proof {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #brand-home-v2 .hero-proof div,
  #brand-home-v2 .hero-proof div + div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    padding: 0;
    border: 0;
  }

  #brand-home-v2 .hero-proof dd {
    margin-top: 0;
  }

  #brand-home-v2 .hero-visual {
    min-height: 560px;
  }

  #brand-home-v2 .brief-card {
    width: calc(100% - 10px);
    padding: 18px;
  }

  #brand-home-v2 .floating-card {
    width: 112px;
    min-height: 96px;
    padding: 12px;
  }

  #brand-home-v2 .floating-card small {
    margin-top: 13px;
  }

  #brand-home-v2 .floating-card strong {
    font-size: 11px;
  }

  #brand-home-v2 .floating-trend { left: -3px; top: 28px; }
  #brand-home-v2 .floating-realty { right: -1px; top: 92px; }
  #brand-home-v2 .floating-fire { right: 2px; bottom: 0; }

  #brand-home-v2 .orbit-one { width: 520px; height: 520px; }
  #brand-home-v2 .orbit-two { width: 390px; height: 390px; }

  #brand-home-v2 .signal-title-row h2 {
    font-size: 18px;
  }

  #brand-home-v2 .brief-metrics strong {
    white-space: normal;
  }

  #brand-home-v2 .fire-visual {
    gap: 22px;
    padding-inline: 24px;
  }

  #brand-home-v2 .goal-ring {
    width: 92px;
    height: 92px;
  }

  #brand-home-v2 .signal-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #brand-home-v2 .signal-strip-inner::-webkit-scrollbar { display: none; }

  #brand-home-v2 .section {
    padding-block: 92px;
  }

  #brand-home-v2 .section-heading h2,
  #brand-home-v2 .journey-copy h2,
  #brand-home-v2 .engine-intro h2 {
    font-size: 38px;
  }

  #brand-home-v2 .platform-flow {
    grid-template-columns: 1fr;
  }

  #brand-home-v2 .platform-flow article {
    min-height: auto;
  }

  #brand-home-v2 .service-card {
    display: block;
    padding: 22px;
  }

  #brand-home-v2 .service-copy {
    padding-top: 34px;
  }

  #brand-home-v2 .service-mock {
    height: 250px;
  }

  #brand-home-v2 .today-board-head {
    align-items: flex-start;
    gap: 20px;
  }

  #brand-home-v2 .board-meta {
    display: grid;
    justify-items: end;
  }

  #brand-home-v2 .board-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  #brand-home-v2 .question-list > a {
    grid-template-columns: 46px 1fr 18px;
    gap: 14px;
    min-height: 112px;
  }

  #brand-home-v2 .question-list small {
    line-height: 1.45;
  }

  #brand-home-v2 .question-list strong {
    font-size: 15px;
    line-height: 1.45;
  }

  #brand-home-v2 .engine-diagram {
    grid-template-columns: 1fr;
  }

  #brand-home-v2 .engine-diagram article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
  }

  #brand-home-v2 .engine-diagram article > span {
    width: 54px;
    height: 54px;
  }

  #brand-home-v2 .engine-diagram article > div {
    margin-top: 0;
  }

  #brand-home-v2 .content-grid {
    grid-template-columns: 1fr;
  }

  #brand-home-v2 .content-feature,
  #brand-home-v2 .content-item {
    min-height: 320px;
  }

  #brand-home-v2 .content-graphic {
    width: 130px;
    height: 75px;
    opacity: .45;
  }

  #brand-home-v2 .final-cta-inner {
    min-height: 520px;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 48px;
  }

  #brand-home-v2 .final-cta h2 {
    font-size: 48px;
  }

  #brand-home-v2 .final-actions {
    min-width: 0;
  }

  #brand-home-v2 .footer-grid {
    padding-block: 58px;
  }

  #brand-home-v2 .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  #brand-home-v2 .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (max-width: 480px) {
  #brand-home-v2 .brand-mark {
    width: 35px;
    height: 35px;
  }

  #brand-home-v2 .brand-wordmark strong {
    font-size: 14px;
  }

  #brand-home-v2 .hero h1 {
    font-size: 42px;
  }

  #brand-home-v2 .hero-description br {
    display: none;
  }

  #brand-home-v2 .hero-visual {
    min-height: 515px;
  }

  #brand-home-v2 .brief-card-head strong {
    font-size: 13px;
  }

  #brand-home-v2 .brief-card-head time {
    font-size: 7px;
  }

  #brand-home-v2 .brief-tabs {
    margin-top: 14px;
  }

  #brand-home-v2 .brief-panel {
    padding-top: 19px;
  }

  #brand-home-v2 .signal-title-row {
    gap: 8px;
  }

  #brand-home-v2 .signal-title-row h2 {
    font-size: 16px;
  }

  #brand-home-v2 .trend-chart,
  #brand-home-v2 .realty-visual,
  #brand-home-v2 .fire-visual {
    height: 134px;
  }

  #brand-home-v2 .realty-stat {
    width: 130px;
    right: 9px;
  }

  #brand-home-v2 .n1 { left: 92px; }
  #brand-home-v2 .n2 { left: 130px; }
  #brand-home-v2 .n3 { left: 160px; }
  #brand-home-v2 .n4 { left: 58px; }

  #brand-home-v2 .fire-visual {
    padding-inline: 18px;
  }

  #brand-home-v2 .allocation-list {
    gap: 11px;
  }

  #brand-home-v2 .brief-metrics div {
    padding-inline: 7px;
  }

  #brand-home-v2 .brief-metrics div + div {
    padding-left: 7px;
  }

  #brand-home-v2 .brief-metrics strong {
    font-size: 7.5px;
  }

  #brand-home-v2 .floating-card {
    display: none;
  }

  #brand-home-v2 .section-heading h2,
  #brand-home-v2 .journey-copy h2,
  #brand-home-v2 .engine-intro h2 {
    font-size: 34px;
  }

  #brand-home-v2 .service-copy h3 {
    font-size: 30px;
  }

  #brand-home-v2 .service-mock {
    height: 235px;
  }

  #brand-home-v2 .realty-kpis div {
    padding: 8px;
  }

  #brand-home-v2 .fire-dashboard {
    gap: 18px;
    padding-inline: 18px;
  }

  #brand-home-v2 .fire-gauge {
    width: 98px;
    height: 98px;
  }

  #brand-home-v2 .today-card {
    min-height: 330px;
  }

  #brand-home-v2 .content-feature h3 {
    font-size: 26px;
  }

  #brand-home-v2 .final-cta h2 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #brand-home-v2 { scroll-behavior: auto; }
  #brand-home-v2 *, #brand-home-v2 *::before, #brand-home-v2 *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #brand-home-v2 .reveal {
    opacity: 1;
    transform: none;
  }
}

html:has(#brand-home-v2) {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

#brand-home-v2 .reveal {
  opacity: 1;
  transform: none;
}

#brand-home-v2.is-enhanced .reveal {
  opacity: 0;
  transform: translateY(22px);
}

#brand-home-v2.is-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  #brand-home-v2.is-enhanced .reveal {
    opacity: 1;
    transform: none;
  }
}

#brand-home-v2 .site-header {
  background: rgba(8, 13, 27, .94);
  border-color: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

#brand-home-v2 .brand-mark {
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#brand-home-v2 .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#brand-home-v2 .hero h1 span {
  max-width: 100%;
  white-space: nowrap;
  font-size: min(.82em, 58px);
  letter-spacing: -.07em;
}

#brand-home-v2 .chart-point span {
  width: max-content;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  line-height: 1;
}

#brand-home-v2 .chart-point.point-b {
  top: 25%;
}

#brand-home-v2 .today-grid {
  align-items: stretch;
}

#brand-home-v2 .today-card--data {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

#brand-home-v2 .today-card--data > p {
  margin-top: 24px;
}

#brand-home-v2 .today-card--data h4 {
  max-width: none;
  margin-top: 10px;
}

#brand-home-v2 .today-live-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
}

#brand-home-v2 .today-live-meta strong {
  color: rgba(255, 255, 255, .78);
  font-size: inherit;
}

#brand-home-v2 .today-live-meta time {
  margin-left: auto;
  white-space: nowrap;
}

#brand-home-v2 .today-live-dot,
#brand-home-v2 .today-static-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
}

#brand-home-v2 .today-live-dot {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 243, 107, .65);
}

#brand-home-v2 .today-static-dot {
  background: var(--fire);
  box-shadow: 0 0 10px rgba(255, 147, 79, .45);
}

#brand-home-v2 .today-trend-list {
  display: grid;
  min-height: 250px;
  align-content: center;
  gap: 7px;
  margin-top: 18px;
}

#brand-home-v2 .today-trend-list li {
  display: grid;
  min-width: 0;
  min-height: 40px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(130, 112, 255, .17);
  border-radius: 10px;
  background: rgba(130, 112, 255, .055);
}

#brand-home-v2 .today-trend-list li > span {
  color: var(--trend);
  font-size: 8px;
  font-weight: 900;
}

#brand-home-v2 .today-trend-list li > strong {
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#brand-home-v2 .today-trend-list li > small {
  color: rgba(255, 255, 255, .4);
  font-size: 7px;
  white-space: nowrap;
}

#brand-home-v2 .today-trend-list .is-loading {
  grid-template-columns: 20px minmax(0, 1fr);
}

#brand-home-v2 .today-trend-list .is-loading small {
  display: none;
}

#brand-home-v2 .today-data-image {
  height: 250px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
}

#brand-home-v2 .today-data-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .3s ease;
}

#brand-home-v2 .today-card--data:hover .today-data-image img,
#brand-home-v2 .today-card--data:focus-visible .today-data-image img {
  transform: scale(1.018);
}

#brand-home-v2 .today-realty-brief {
  height: 250px;
  margin-top: 18px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(111, 210, 205, .3);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(197, 239, 255, .82), transparent 38%),
    linear-gradient(135deg, #f5fbff 0%, #fffaf5 100%);
  color: #13233b;
}

#brand-home-v2 .today-realty-brief__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(19, 35, 59, .1);
}

#brand-home-v2 .today-realty-brief__head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.02em;
}

#brand-home-v2 .today-realty-brief__head time {
  color: #527084;
  font-size: 8px;
  font-weight: 700;
}

#brand-home-v2 .today-realty-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

#brand-home-v2 .today-realty-kpis > div {
  min-width: 0;
  padding: 10px 5px;
  border: 1px solid rgba(19, 35, 59, .08);
  border-radius: 9px;
  background: rgba(255, 255, 255, .75);
  text-align: center;
}

#brand-home-v2 .today-realty-kpis small,
#brand-home-v2 .today-realty-deals small {
  display: block;
  color: #71879a;
  font-size: 8px;
  font-weight: 700;
}

#brand-home-v2 .today-realty-kpis strong {
  display: block;
  margin-top: 4px;
  color: #0b5ca8;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.045em;
  white-space: nowrap;
}

#brand-home-v2 .today-realty-deals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

#brand-home-v2 .today-realty-deals > div {
  min-width: 0;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .8);
}

#brand-home-v2 .today-realty-deals strong {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #17263a;
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#brand-home-v2 .today-realty-deals span {
  display: block;
  margin-top: 4px;
  color: #0b5ca8;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

#brand-home-v2 .engine-diagram article {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

#brand-home-v2 .engine-diagram article > div {
  width: 100%;
  flex: 1;
}

@media (max-width: 980px) {
  #brand-home-v2 .today-card--data {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  #brand-home-v2 .hero h1 span {
    font-size: min(.78em, 38px);
  }

  #brand-home-v2 .engine-diagram article {
    display: grid;
  }

  #brand-home-v2 .today-data-image,
  #brand-home-v2 .today-trend-list,
  #brand-home-v2 .today-realty-brief {
    min-height: 230px;
    height: 230px;
  }
}
