:root {
  --bg: #f5fbf8;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.97);
  --line: rgba(15, 23, 42, 0.08);
  --text: #1c2a39;
  --muted: #5a6777;
  --title: #0f172a;
  --primary: #10b981;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --light: #f8fafc;
  --dark: #0f172a;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1140px, calc(100% - 24px));
}

body.light-mode {
  --bg: #eef4ff;
  --bg-soft: #f8fbff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(15, 23, 42, 0.09);
  --text: #1c2a39;
  --muted: #5a6777;
  --title: #0f172a;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  /* background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.1), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(245, 158, 11, 0.08), transparent 22%),
    radial-gradient(circle at 25% 75%, rgba(15, 23, 42, 0.03), transparent 24%),
    linear-gradient(180deg, #fcfdfc 0%, #f4fbf8 50%, #eff7f5 100%); */
  overflow-x: hidden;
}

/* body.light-mode {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(245, 158, 11, 0.09), transparent 22%),
    radial-gradient(circle at 25% 75%, rgba(15, 23, 42, 0.03), transparent 24%),
    linear-gradient(180deg, #fcfdfc 0%, #f4fbf8 50%, #eff7f5 100%);
} */

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

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


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


.site-shell {
  position: relative;
}

/* .ambient,
.ambient::before,
.ambient::after {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.ambient {
  width: 360px;
  height: 360px;
  top: 12vh;
  right: -110px;
  background: rgba(16, 185, 129, 0.16);
  animation: float 16s ease-in-out infinite;
}

.ambient::before,
.ambient::after {
  content: "";
}

.ambient::before {
  width: 260px;
  height: 260px;
  top: 42vh;
  left: -80px;
  background: rgba(16, 185, 129, 0.12);
  animation: float 18s ease-in-out infinite reverse;
}

.ambient::after {
  width: 200px;
  height: 200px;
  top: 68vh;
  right: 14vw;
  background: rgba(245, 158, 11, 0.12);
} */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled .nav-wrap {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  border-color: rgba(15, 23, 42, 0.08);
}

body.light-mode .site-header.scrolled .nav-wrap {
  background: rgba(255, 255, 255, 0.88);
}

body.light-mode .nav-wrap {
  background: rgb(241 255 246);
  backdrop-filter: blur(18px);
  border-color: rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  width: 100%;
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand.brand-header {
  flex: 0 0 auto;
}

.brand.brand-footer {
  align-items: flex-start;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-badge img {
  height: 56px;
  width: auto;
  border-radius: 0;
}

.brand-header .brand-badge img {
  height: 44px;
  border-radius: 0;
}

.brand-footer .brand-badge img {
  height: 52px;
  border-radius: 0;
}

body.light-mode .brand-badge {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  display: block;
  color: var(--title);
  letter-spacing: -0.03em;
  font-size: 1rem;
}

.brand-copy span {
  font-size: 0.77rem;
  color: var(--muted);
}

.brand-copy span.brand-tagline {
  color: rgba(248, 250, 252, 0.76);
}

body.light-mode .brand-copy span.brand-tagline {
  color: rgba(15, 23, 42, 0.62);
}

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

.brand-copy.compact span {
  font-size: 0.78rem;
  line-height: 1.45;
}

.nav-links,
.nav-actions,
.header-search {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions {
  gap: 14px;
}

.nav-links {
  justify-content: center;
}

.nav-link,
.nav-cta,
.ghost-btn,
.chip,
.icon-btn {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #303030;
  font-size: 0.94rem;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--title);
  background: rgba(148, 163, 184, 0.08);
}

body.light-mode .nav-link:hover,
body.light-mode .nav-link.active {
  color: rgb(116 196 144);
  background: #fff;
  border-color: rgb(116 196 144);
}

.nav-link.has-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  transform: translateY(14px);
  width: min(960px, calc(100vw - 32px));
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.light-mode .mega-menu {
  background: rgba(255, 255, 255, 0.95);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mega-card,
/* .glass-card, */
.metric-card,
.news-card,
.testimonial-card,
.info-card,
.data-card,
.auth-card,
.policy-card,
.table-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.step-card{
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.step-card strong{
  padding: 12px 15px;
  display: block;
}
.iiner-reg{
  padding: 15px 15px;
  background: #bcffd4;
  border-radius: 20px;
}
.iiner-reg p{
  margin: 0;
}


.mega-card {
  padding: 18px;
}

.mega-card p {
  margin: 8px 0 16px;
  line-height: 1.55;
  font-size: 13px;
}

.mega-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.04);
  color: var(--title);
  font-size: 14px;
  line-height: 1.35;
}

.mega-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.mega-item i {
  color: var(--primary);
  font-size: 0.82rem;
}

.mega-item:hover {
  transform: translateY(-1px);
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.14);
}

body.light-mode .mega-item {
  background: rgba(248, 250, 252, 0.9);
}

.mega-card h4,
.section-head h2,
.hero-copy h1,
.page-hero h1,
.company-title h2,
.auth-card h1 {
  margin: 0;
  color: var(--title);
  letter-spacing: -0.04em;
}

.mega-card p,
.section-head p,
.hero-copy p,
.page-hero p,
.card-copy p,
.auth-card p {
  color: var(--muted);
}

.header-search {
  width: 180px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.06);
}

body.light-mode .header-search {
  background: rgba(255, 255, 255, 0.92);
}

.header-search-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.input-shell input,
.input-shell textarea,
.input-shell select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.header-search i,
.input-shell i {
  color: var(--muted);
}

.icon-btn,
.ghost-btn,
.nav-cta,
.primary-btn,
.secondary-btn {
  border: 1px solid transparent;
  cursor: pointer;
}

.icon-btn,
.ghost-btn {
  background: rgba(148, 163, 184, 0.08);
  color: var(--title);
}

body.light-mode .icon-btn,
body.light-mode .ghost-btn,
body.light-mode .secondary-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: #9c9c9c;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.ghost-btn,
.secondary-btn {
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-cta,
.primary-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #10b981;
  color: white;
}

.nav-cta {
  padding: 18px 26px;
  border-radius: 36px;
  background: linear-gradient(135deg, #335f53 0%, #66cf8f 100%);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.24);
}

.ghost-btn:hover,
.icon-btn:hover,
.nav-link:hover,
.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.chip:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border-color: var(--line);
  background: rgba(148, 163, 184, 0.06);
  color: var(--title);
}

.mobile-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

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

.hero {
  padding: 60px 0 36px;
}

.hero-grid,
.page-hero-grid,
.detail-grid,
.split-grid,
.stats-grid,
.card-grid,
.three-grid,
.dashboard-grid,
.profile-grid,
.portfolio-grid,
.pricing-grid,
.contact-grid,
.company-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 16px 0 10px;
}

.hero-brand-card {
  display: inline-flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-brand-card img {
  width: min(360px, 100%);
  height: auto;
  border-radius: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgb(116 196 144);
  background: rgb(241 255 246);
  color: #d1fae5;
  font-size:12px;
}

body.light-mode .eyebrow {
  color: #0f172a;
}

.hero-copy h1 {
  font-size: 55px;
  line-height: 1.02;
  margin-top: 12px;
  font-weight: 600;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  margin-top: 12px;
  font-weight: 600;
}

.hero-copy p,
.page-hero p {
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 640px;
}

.hero-copy {
  max-width: 680px;
}

.hero-actions,
.stack-actions,
.filter-bar,
.inline-stats,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-bar {
  justify-content: center;
  margin-top: 22px;
}

.filter-chip {
  padding: 7px 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
}

.filter-chip.is-on {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.plan-card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.plan-card.is-hot {
  border-color: #10b981;
}

.plan-card .research-tag {
  margin-bottom: 14px;
}

.plan-card h3 {
  margin: 0 0 8px;
  color: var(--title);
  font-size: 1.15rem;
}

.plan-card > p {
  margin: 0 0 16px;
  color: var(--muted);
}

.plan-card .deal-price {
  margin-bottom: 16px;
}

.plan-card .bullet-list {
  margin: 0 0 20px;
}

.plan-card .primary-btn,
.plan-card .secondary-btn,
.plan-card .board-more {
  width: 100%;
  justify-content: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  min-width: 170px;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* .hero-actions .primary-btn {
  background: linear-gradient(135deg, #23473e 0%, #69cf93 100%);
  box-shadow: 0 24px 52px rgba(16, 185, 129, 0.24);
} */

.hero-actions .secondary-btn {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #9c9c9c;
}

.feature-card > .primary-btn,
.feature-card > .secondary-btn,
.glass-card > .primary-btn,
.glass-card > .secondary-btn,
.policy-card > .primary-btn,
.policy-card > .secondary-btn,
.table-card > .primary-btn,
.table-card > .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.hero-visual,
.dashboard-mock,
.chart-surface,
.image-shell {
  position: relative;
}

.dashboard-mock {
  display: flex;
}

.hero-visual {
  padding-top: 26px;
}

.screen {
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid #9c9c9c;
}


.screen-top,
.mini-chart,
.allocation-bar,
.timeline,
.transaction-row,
.watch-row {
  display: flex;
  gap: 12px;
}

.screen-top {
  margin-bottom: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.screen-top p{
  font-size: 14px;
}

.screen-top > div {
  flex: 1;
}

.screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.pulse-cats {
  margin-bottom: 16px;
  background: #fff;
}

.pulse-cats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pulse-cats-head strong {
  color: var(--title);
  font-size: 0.95rem;
}

.pulse-cats-head a {
  color: #d97706;
  font-size: 0.82rem;
  font-weight: 500;
}

.pulse-cats .screen-row {
  margin-bottom: 0;
  gap: 10px;
}

.pulse-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 12px;
  color: inherit;
}

.pulse-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.pulse-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pulse-copy small {
  color: #6b7280;
  font-size: 0.72rem;
}

.pulse-copy strong {
  color: var(--title);
  font-size: 0.92rem;
  font-weight: 600;
}

.pulse-tile-blue {
  background: #eaf3ff;
}

.pulse-tile-blue .pulse-ico { color: #2563eb; }

.pulse-tile-green {
  background: #e8f7ee;
}

.pulse-tile-green .pulse-ico { color: #15803d; }

.pulse-tile-lilac {
  background: #f0eaff;
}

.pulse-tile-lilac .pulse-ico { color: #6d28d9; }

.pulse-tile-peach {
  background: #f8eee4;
}

.pulse-tile-peach .pulse-ico { color: #b45309; }

.screen-block {
  padding: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 16px;
}

.screen-row .screen-block {
  margin-bottom: 0;
}
.screen-block .small-copy{
  font-size: 12px;
}

.screen-block:last-child {
  margin-bottom: 0;
}

.value-card {
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px 16px 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-left: 3px solid #10b981;
  border-radius: 12px;
}

.value-card-main {
  display: grid;
  gap: 4px;
}

.value-label {
  color: #6b7280;
  font-size: 0.75rem;
}

.value-amount {
  color: var(--title);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.value-delta {
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 600;
}

.value-spark {
  width: 100%;
  height: 48px;
  display: block;
}

.light-mode .screen-block {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.light-mode .screen-block h3{
  font-size: 16px;
}

.mini-chart span,
.allocation-bar span {
  display: block;
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  overflow: hidden;
}

.mini-chart span::after,
.allocation-bar span::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.mini-chart span:nth-child(1)::after { width: 72%; }
.mini-chart span:nth-child(2)::after { width: 54%; }
.mini-chart span:nth-child(3)::after { width: 88%; }
.allocation-bar span:nth-child(1)::after { width: 38%; }
.allocation-bar span:nth-child(2)::after { width: 25%; }
.allocation-bar span:nth-child(3)::after { width: 16%; }

.float-card {
  display: none;
}

.stats-strip-section {
  padding: 50px 0px;
  background: #f1fff6;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stats-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid #afafaf;
}

.featured-companies-section{
  padding:60px 0px;
}

.stats-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.stats-tile strong {
  color: var(--title);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-tile strong span {
  display: inline;
}

.stats-label {
  color: #4b5563;
  font-size: 0.84rem;
}

.stats-tile-mint {
  background: #e8f7ee;
}

.stats-tile-mint .stats-ico { color: #15803d; }

.stats-tile-blue {
  background: #eaf3ff;
}

.stats-tile-blue .stats-ico { color: #2563eb; }

.stats-tile-lilac {
  background: #f0eaff;
}

.stats-tile-lilac .stats-ico { color: #6d28d9; }

.stats-tile-peach {
  background: #f8eee4;
}

.stats-tile-peach .stats-ico { color: #b45309; }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.deal-card {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.deal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.deal-mark {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
}

.deal-mark-navy {
  background: #eaf3ff;
  color: #1d4ed8;
}

.deal-mark-peach {
  background: #f8eee4;
  color: #b45309;
}

.deal-mark-mint {
  background: #e8f7ee;
  color: #15803d;
}

.deal-top div {
  min-width: 0;
  flex: 1;
}

.deal-top h3 {
  margin: 0;
  color: var(--title);
  font-size: 1rem;
  font-weight: 700;
}

.deal-top p {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 0.78rem;
}

.deal-move {
  font-size: 0.82rem;
  font-weight: 700;
}

.deal-move.up { color: #15803d; }
.deal-move.warn { color: #b45309; }

.deal-price {
  display: block;
  margin-bottom: 12px;
  color: var(--title);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.deal-meta li {
  padding: 4px 8px;
  border-radius: 6px;
  background: #f4f6f3;
  color: #4b5563;
  font-size: 0.75rem;
}

.deal-card > a {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 600;
}

.deal-card > a:hover {
  color: #047857;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.section-head .eyebrow {
  margin: 0;
}

.section-head p {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.section-head .secondary-btn {
  margin-top: 6px;
}

.stats-grid,
.card-grid.three,
.three-grid,
.pricing-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.metric-card,
.ticker-card,
.news-card,
.testimonial-card,
.info-card,
.data-card,
.policy-card,
.table-card {
  padding: 22px;
}

.metric-card h3,
.data-card h3,
.table-card h3 {
  margin: 12px 0 8px;
  color: var(--title);
  font-size: 1.9rem;
}

.metric-card small,
.badge,
.pill,
.risk,
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
}

.badge,
.status.positive {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

body.light-mode .badge,
body.light-mode .status.positive {
  color: #047857;
}

.status.warning {
  background: rgba(245, 158, 11, 0.14);
  color: #fcd34d;
}

body.light-mode .status.warning {
  color: #b45309;
}

.status.negative {
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

body.light-mode .status.negative {
  color: #b91c1c;
}

.pill {
  background: rgba(245, 158, 11, 0.14);
  color: #fcd34d;
}

body.light-mode .pill {
  color: #b45309;
}

.card-top,
.card-bottom,
.row-between {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.company-logo,
.avatar,
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(16, 185, 129, 0.88));
  color: #ffffff;
  font-weight: 700;
}

body.light-mode .company-logo,
body.light-mode .avatar,
body.light-mode .icon-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(16, 185, 129, 0.88));
  color: #ffffff;
}

.company-card h3,
.news-card h3,
.feature-card h3,
.step-card h3,
.testimonial-card h3,
.info-card h3,
.data-card h3,
.policy-card h3 {
  margin: 16px 0 10px;
  color: var(--title);
}

.company-meta,
.table-grid,
.detail-list,
.footer-links,
.profile-list {
  display: grid;
  gap: 12px;
}

.company-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.meta-item {
  padding: 12px;
  border-radius: 18px;
  background: rgba(148, 163, 184, 0.06);
}

.meta-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.live-card {
  padding: 16px;
  background: #fff;
  border: 1px solid rgb(69 69 69 / 27%);
  border-radius: 16px;
}

.live-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.live-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
}

.live-mark-mint { background: #e8f7ee; color: #15803d; }
.live-mark-peach { background: #f8eee4; color: #b45309; }
.live-mark-lilac { background: #f0eaff; color: #6d28d9; }
.live-mark-blue { background: #eaf3ff; color: #1d4ed8; }

.live-top div {
  min-width: 0;
  flex: 1;
}

.live-top strong {
  display: block;
  color: var(--title);
  font-size: 0.92rem;
}

.live-top p {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 0.72rem;
}

.live-chip {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.live-chip.up {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.live-chip.down {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}

.live-chip.flat {
  background: rgba(161, 98, 7, 0.12);
  color: #a16207;
}

.live-card b {
  display: block;
  color: var(--title);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.news-card img,
.image-shell img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--title);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding: 0 22px 20px;
}
.faq-visual {
  height: 400px;
}

.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.newsletter {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(16, 185, 129, 0.12)),
    var(--panel);
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
body.light-mode .newsletter {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 253, 245, 0.9)),
    var(--panel);
}
.left-letter-title{
  width: 45%;
}
.left-letter-title h2{
  font-size: 30px;
  font-weight: 600;
}
.left-letter-title  p{
  max-width: 400px; 
  font-size: 14px;
  color: #666;
}

.newsletter .input-shell {
  width: 660px;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.06);
}

body.light-mode .input-shell {
  background: rgba(255, 255, 255, 0.92);
}

.site-footer {
  padding: 48px 0 32px;
  border-top:1px solid #ddd;
}

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

.footer-brand {
  max-width: 360px;
}

.footer-links a,
.footer-copy,
.small-copy {
  color: var(--muted);
}

.footer-links a {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section,
.section-padding,
.page-hero {
  padding: 50px 0;
}

.page-hero.section-padding {
  padding: 50px 0 24px;
}

.page-hero .page-hero,
.page-hero .section-head {
  padding: 0;
}

.page-hero > .container > .section-head,
.page-hero > .container > .page-hero {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero > .container > .section-head p,
.page-hero > .container > .page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .section-head h1 {
  margin: 0;
  color: var(--title);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.page-hero .section-head .hero-actions {
  justify-content: center;
  margin-top: 8px;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-panel {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.about-panel h3 {
  margin: 14px 0 10px;
  color: var(--title);
  font-size: 1.18rem;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero-grid,
.detail-grid,
.split-grid,
.contact-grid,
.company-grid,
.dashboard-grid,
.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 32px 0 56px;
}

.sidebar {
  position: sticky;
  top: 110px;
  padding: 20px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  height: fit-content;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  color: var(--muted);
  margin-bottom: 8px;
}

.sidebar a.active,
.sidebar a:hover {
  background: rgba(16, 185, 129, 0.12);
  color: var(--title);
}

.dashboard-main {
  display: grid;
  gap: 24px;
}

.chart-surface {
  padding: 24px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 340px;
}

.line-chart {
  width: 100%;
  height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0)),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: auto, 16.66% 100%, 100% 20%;
  position: relative;
  overflow: hidden;
}

body.light-mode .line-chart {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0)),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: auto, 16.66% 100%, 100% 20%;
}

.line-chart::after {
  content: "";
  position: absolute;
  inset: 30px 18px 22px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(16, 185, 129, 0.82));
  clip-path: polygon(0 70%, 10% 64%, 20% 68%, 30% 56%, 40% 58%, 50% 40%, 60% 46%, 70% 30%, 80% 35%, 90% 18%, 100% 24%, 100% 100%, 0 100%);
  border-radius: 24px;
  opacity: 0.7;
}

.bars {
  display: grid;
  gap: 12px;
}

.bars span {
  height: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  overflow: hidden;
}

.bars span::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f172a, #10b981);
}

.bars span:nth-child(1)::after { width: 82%; }
.bars span:nth-child(2)::after { width: 56%; }
.bars span:nth-child(3)::after { width: 72%; }
.bars span:nth-child(4)::after { width: 48%; }

.table-row,
.timeline-item,
.profile-row,
.transaction-row,
.watch-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child,
.timeline-item:last-child,
.profile-row:last-child,
.transaction-row:last-child,
.watch-row:last-child {
  border-bottom: 0;
}

.timeline-item {
  position: relative;
  padding-left: 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.auth-wrap {
  min-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
  padding: 32px 0 56px;
}

.auth-card {
  width: min(1080px, var(--container));
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.auth-panel,
.auth-form {
  padding: 34px;
}

.auth-panel {
  background:
    radial-gradient(circle at top, rgba(16, 185, 129, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.94));
}

.auth-panel h1,
.auth-panel p {
  color: #0f172a;
}

body.light-mode .auth-panel {
  background:
    radial-gradient(circle at top, rgba(16, 185, 129, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.94));
}

body.light-mode .auth-panel h1,
body.light-mode .auth-panel p {
  color: #0f172a;
}

.auth-feature {
  padding: 18px;
  border-radius: 22px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
}

body.light-mode .auth-feature {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.form-grid,
.form-stack {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkbox-row,
.social-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.policy-card ul,
.legal-list,
.bullet-list {
  padding-left: 18px;
  color: var(--muted);
}

.center-note {
  text-align: center;
  padding: 80px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

.company-board-section, .why-choose-us-section, .research-reports-section{
  background: #f1fff6;
}

.research-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.research-head,
.research-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 130px 56px;
  gap: 14px;
  align-items: center;
}

.research-head {
  padding: 12px 20px;
  background: #fff;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.research-row {
  padding: 16px 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: inherit;
}

.research-row:hover {
  background: #f8fdfb;
}

.research-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
}

.research-mint { background: #e8f7ee; color: #15803d; }
.research-peach { background: #f8eee4; color: #b45309; }
.research-blue { background: #eaf3ff; color: #1d4ed8; }

.research-row strong {
  display: block;
  color: var(--title);
  font-size: 0.98rem;
}

.research-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.research-tag {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f4f6f3;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
}

.research-open {
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}

.era-section {
  background: #fff;
}

.era-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.era-item {
  text-align: center;
  padding: 8px 10px;
}

.era-ico {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid #c7ead8;
  border-radius: 50%;
}

.era-ico i {
  font-size: 1.55rem;
  background: linear-gradient(180deg, #34d399 0%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.era-item h3 {
  margin: 0 0 10px;
  color: var(--title);
  font-size: 1.08rem;
}

.era-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}


.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 16px;
  background: #fff;
  border: 1px solid rgb(191 191 191);
  border-radius: 16px;
}

.voice-mark {
  display: block;
  margin-bottom: 4px;
  color: #10b981;
  font-size: 2.4rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.8;
}

.voice-card > p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--title);
  font-size: 0.95rem;
  line-height: 1.65;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.voice-avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.voice-mint { background: #e8f7ee; color: #15803d; }
.voice-blue { background: #eaf3ff; color: #1d4ed8; }
.voice-peach { background: #f8eee4; color: #b45309; }

.voice-person div {
  min-width: 0;
  flex: 1;
}

.voice-person strong {
  display: block;
  color: var(--title);
  font-size: 0.92rem;
}

.voice-person span {
  display: block;
  color: #6b7280;
  font-size: 0.75rem;
}

.voice-stars {
  color: #10b981;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 1px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  padding: 22px 20px 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
}

.reason-card:hover {
  border-color: rgba(15, 23, 42, 0.16);
}

.reason-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.reason-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1rem;
}

.reason-no {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.reason-card h3 {
  margin: 0 0 8px;
  color: var(--title);
  font-size: 1.12rem;
}

.reason-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.reason-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.reason-foot span {
  color: #6b7280;
  font-size: 0.75rem;
}

.reason-foot b {
  font-size: 0.82rem;
  font-weight: 700;
}

.reason-mint .reason-ico { background: #e8f7ee; color: #15803d; }
.reason-mint .reason-foot b { color: #15803d; }

.reason-blue .reason-ico { background: #eaf3ff; color: #1d4ed8; }
.reason-blue .reason-foot b { color: #1d4ed8; }

.reason-peach .reason-ico { background: #f8eee4; color: #b45309; }
.reason-peach .reason-foot b { color: #b45309; }

.company-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.section-padding{
  padding:50px 0px;
}

.board-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  color: inherit;
}

.board-card:hover {
  border-color: #c7d0c8;
  background: #fbfcfb;
}

.board-logo {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #dadada;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.board-logo img{
  width: 35px;
}

.board-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.board-card:has(.board-tag) .board-body {
  padding-right: 72px;
}

.board-body strong {
  color: var(--title);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.board-body span {
  color: #6b7280;
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board-body em {
  font-style: normal;
  font-weight: 600;
  margin-right: 8px;
}

.board-body em.up { color: #15803d; }
.board-body em.down { color: #b91c1c; }
.board-body em.flat { color: #a16207; }

.board-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border: 1px solid #ddd6fe;
  border-radius: 4px;
  background: #f5f3ff;
  color: #5b21b6;
  font-size: 0.68rem;
  font-weight: 600;
}

.company-board-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.board-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid #0f172a;
  border-radius: 999px;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
}

.board-more:hover {
  background: #0f172a;
  color: #fff;
}

@media (max-width: 1100px) {
  .nav-links,
  .header-search-group,
  .nav-actions .ghost-btn,
  .nav-actions .auth-link {
    display: none;
  }

  .nav-actions {
    margin-right: 0;
  }

  .mobile-toggle,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    width: 100%;
    margin: 12px auto 0;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--panel-strong);
    backdrop-filter: blur(20px);
    display: none;
  }

  .mobile-menu.open {
    display: grid;
    gap: 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .detail-grid,
  .split-grid,
  .contact-grid,
  .company-grid,
  .dashboard-layout,
  .auth-card,
  .footer-grid,
  .dashboard-grid,
  .profile-grid,
  .faq-split,
  .about-split {
    grid-template-columns: 1fr;
  }

  .faq-visual img {
    min-height: 240px;
  }

  .brand-header .brand-badge img {
    height: 40px;
  }

  .stats-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three,
  .three-grid,
  .pricing-grid,
  .portfolio-grid,
  .company-board,
  .deal-grid,
  .live-grid,
  .reason-grid,
  .era-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .nav-wrap {
    padding: 12px 14px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    min-width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
  }

  .hero-brand-card img {
    width: min(280px, 100%);
  }

  .stats-grid,
  .card-grid.three,
  .three-grid,
  .pricing-grid,
  .portfolio-grid,
  .form-grid.two,
  .social-row,
  .company-board,
  .deal-grid,
  .reason-grid,
  .era-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .research-head {
    display: none;
  }

  .research-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .research-tag,
  .research-open {
    grid-column: 2;
  }

  .research-open {
    text-align: left;
  }

  .dashboard-mock {
    min-height: auto;
  }

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

  .value-spark {
    height: 40px;
  }

  .screen-top {
    flex-direction: column;
  }

  .pulse-cats .screen-row {
    grid-template-columns: 1fr 1fr;
  }
}
