/*
Theme Name: Viraj Damani
Theme URI: https://virajdamani.com
Author: Viraj Damani
Author URI: https://virajdamani.com
Description: Personal brand WordPress theme for Viraj Damani - AI Entrepreneur, Investor, and Growth Strategist. Features navy and gold color palette, elegant typography with Cormorant Garamond and DM Sans.
Version: 2.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virajdamani
*/

/* ========================================
   CSS VARIABLES & BASE STYLES
   ======================================== */

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

:root {
  --navy: #0a1628;
  --slate: #1e3a5f;
  --gold: #c8964c;
  --gold-light: #f5e6d0;
  --off-white: #f8f9fc;
  --white: #ffffff;
  --body: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f0f2f5;
  color: var(--body);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--gold);
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 60px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-bg {
  background: var(--white);
}

.section-bg-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label.light {
  color: rgba(200, 150, 76, 0.8);
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  background: var(--navy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.site-branding a {
  color: white;
}

.site-branding span {
  color: var(--gold);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--gold);
}

.header-cta {
  background: var(--gold);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

.header-cta:hover {
  background: #b88942;
  color: white;
  opacity: 1;
}

/* ========================================
   BUTTONS
   ======================================== */

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn,
.btn-primary,
.wp-block-button__link {
  background: var(--gold);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn:hover,
.btn-primary:hover,
.wp-block-button__link:hover {
  background: #b88942;
  color: white;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 13px 31px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--gold);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: white;
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: white;
  padding: 13px 31px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 150, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 700;
  color: white;
  line-height: 0.95;
  margin-bottom: 20px;
}

.hero-role {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-role span {
  color: var(--gold);
}

.hero-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
}

.hero-headshot {
  width: 100%;
  aspect-ratio: 1;
  background: var(--slate);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ========================================
   VENTURES SECTION
   ======================================== */

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.venture-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.venture-card.primary {
  border-color: var(--gold);
  border-width: 1.5px;
}

.venture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
}

.venture-card.primary::before {
  background: var(--gold);
}

.venture-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.venture-name {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.venture-role {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.venture-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}

.venture-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.venture-link:hover {
  text-decoration: underline;
}

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

.portfolio-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.portfolio-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate);
  background: rgba(30, 58, 95, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.portfolio-name {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.portfolio-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.portfolio-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 14px;
}

/* ========================================
   METRICS SECTION
   ======================================== */

.metrics-strip {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-val {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 4px;
}

.metric-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* ========================================
   INSIGHTS / BLOG SECTION
   ======================================== */

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

.insight-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.insight-card.winner {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf5 0%, white 100%);
}

.insight-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.insight-badge.winner-badge {
  color: #7a4a00;
  background: var(--gold-light);
}

.insight-badge.alt-badge {
  color: var(--muted);
  background: var(--off-white);
}

.insight-name {
  font-family: "DM Serif Display", serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 6px;
}

.insight-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ========================================
   BLOG ARCHIVE TEMPLATE
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 180px;
  background: var(--off-white);
  object-fit: cover;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: "DM Serif Display", serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--navy);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ========================================
   SINGLE BLOG POST
   ======================================== */

.single-hero {
  background: var(--navy);
  padding: 60px 0 40px;
}

.single-hero-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.single-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.single-hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.single-content {
  background: white;
  padding: 60px 0;
}

.single-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.single-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body);
}

.single-body h2 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  color: var(--navy);
  margin: 40px 0 20px;
}

.single-body h3 {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 16px;
}

.single-body p {
  margin-bottom: 20px;
}

.single-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--slate);
}

.single-body code {
  font-family: "JetBrains Mono", monospace;
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.single-body pre {
  background: var(--navy);
  color: white;
  padding: 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.single-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--navy);
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.footer-brand span {
  color: var(--gold);
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-navigation a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-navigation a:hover {
  color: var(--gold);
}

/* ========================================
   WORDPRESS DEFAULTS
   ======================================== */

.alignleft {
  float: left;
  margin-right: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-headshot {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-row {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .insight-options,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container,
  .header-container,
  .hero-container,
  .footer-container,
  .single-container {
    padding: 0 20px;
  }

  .hero-name {
    font-size: 48px;
  }

  .section-title {
    font-size: 26px;
  }

  .header-container {
    gap: 16px;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .insight-options,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .single-hero-title {
    font-size: 36px;
  }

  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 40px;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
  }

  .single-hero-title {
    font-size: 28px;
  }
}

/* ========================================
   V7 DESIGN STYLES - APPENDED
   ======================================== */

/* Additional Variables */
:root {
  --gold2: #d4a55e;
  --gold-pale: #fdf6ed;
  --green: #1db87e;
  --meraaki-purple: #7b2fe0;
  --meraaki-pink: #e040a0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* NAV - Scroll Effect */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 64px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition:
    background 0.4s,
    box-shadow 0.4s;
  background: transparent;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding a {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-branding a span {
  color: var(--gold);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(200, 150, 76, 0.15);
}

.site-header.scrolled .site-branding a {
  color: white;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation .nav-links,
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-navigation a:hover {
  color: var(--gold);
}

.main-navigation .nav-cta {
  background: var(--gold);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.main-navigation .nav-cta:hover {
  background: var(--gold2);
  color: white;
}

/* HERO v7 - Full width with canvas */
#hero {
/*   min-height: 100vh; */
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 64px 80px;
}

#hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

#hero-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    rgba(10, 22, 40, 0.85) 40%,
    rgba(10, 22, 40, 0.4) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

#hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, var(--navy) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

h1.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(68px, 8vw, 108px);
  font-weight: 700;
  color: var(--white);
  line-height: normal;
  margin-bottom: 24px;
  letter-spacing: -2.5px;
  /* white-space: nowrap; */
}

.hero-subrole {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.4px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

#hero .hero-tagline {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
  margin-bottom: 40px;
}

#hero .hero-tagline strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

#hero .hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* Buttons v7 */
.btn-gold {
  background: var(--gold);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 150, 76, 0.3);
  color: white;
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(200, 150, 76, 0.5);
  color: var(--gold);
}

.hero-trust-label {
  color: rgba(255, 255, 255, 0.65);
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 125% */
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#hero .hero-inner .hero-logo-strip {
  display: flex;
  flex-wrap: wrap;
  /* gap: 16px 28px; */
  align-items: center;
  background-color: #fff;
  width: fit-content;
}

.hero-logo-strip .logo-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* SECTIONS v7 */
section {
  padding: 96px 64px;
}

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

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.sec-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sec-title.light {
  color: var(--white);
}

/* ABOUT v7 */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  /* aspect-ratio: 1; */
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 128px;
  height: 128px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.25);
  border: 1.5px solid rgba(200, 150, 76, 0.2);
}

.about-accent .val {
  font-family: "DM Serif Display", serif;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}

.about-accent .lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.5;
}

.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  margin-bottom: 28px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a4e;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-body p strong {
  color: var(--navy);
  font-weight: 600;
}

.geo-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.geo-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  background: rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}

.geo-flag {
  font-size: 14px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 6px 14px;
  border-radius: 100px;
}

/* VENTURES v7 */
#ventures {
  background: var(--off-white);
}

.card-primary {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(200, 150, 76, 0.2);
  margin-bottom: 20px;
}

.card-primary-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

.card-primary-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 150, 76, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.card-primary-inner {
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.vc-logo {
  margin-bottom: 14px;
}

.vrole-p {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.vdesc-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
}

.vcaps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}

.vcap {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 4px 11px;
  border-radius: 4px;
}

.vlinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.vlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s;
}

.vlink:hover {
  gap: 11px;
}

.vlink-sec {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.vlink-sec:hover {
  color: rgba(255, 255, 255, 0.75);
}

.vstats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
}

.vstat {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vstat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vstat:first-child {
  padding-top: 0;
}

.vstat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 5px;
}

.vstat-v {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-weight: 400;
}

.vstat-sub {
  font-size: 11px;
  color: var(--gold);
  margin-top: 3px;
}

/* Secondary venture card */
.card-secondary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-secondary-inner {
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.vrole-s {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.vdesc-s {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #4a4a5e;
  margin-bottom: 20px;
}

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

.result-cell {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.rv {
  font-family: "DM Serif Display", serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.rl {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

/* Tru card */
.card-tru {
  position: relative;
}

.card-tru::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8964c, #1e3a5f);
  border-radius: 20px 20px 0 0;
}

.tru-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(30, 58, 95, 0.07);
  border: 1px solid rgba(30, 58, 95, 0.18);
  padding: 4px 11px;
  border-radius: 4px;
}

.tru-link {
  color: var(--navy) !important;
}

.tru-link:hover {
  color: var(--gold) !important;
}

/* Meraaki card */
.card-meraaki {
  position: relative;
}

.card-meraaki::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7b2fe0, #e040a0);
  border-radius: 20px 20px 0 0;
}

.meraaki-tag {
  font-size: 11px;
  font-weight: 500;
  color: #7b2fe0;
  background: rgba(123, 47, 224, 0.07);
  border: 1px solid rgba(123, 47, 224, 0.18);
  padding: 4px 11px;
  border-radius: 4px;
}

.meraaki-link {
  color: #7b2fe0 !important;
}

.meraaki-link:hover {
  color: #e040a0 !important;
}

/* Portfolio grid */
.port-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.port-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.port-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.port-card:hover {
  border-color: rgba(200, 150, 76, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.port-card:hover::before {
  transform: scaleX(1);
}

.port-card.iris {
  border-color: rgba(29, 184, 126, 0.2);
}

.port-card.iris::before {
  background: var(--green);
}

.pc-logo-wrap {
  height: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.pc-logo-ph {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--slate), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.pc-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate);
  background: rgba(30, 58, 95, 0.07);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.pc-cat.green {
  color: #0d5c3a;
  background: rgba(29, 184, 126, 0.08);
}

.pc-name {
  font-family: "DM Serif Display", serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.2;
}

.pc-desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}

.pc-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.pc-link:hover {
  gap: 9px;
}

.pc-link.green {
  color: var(--green);
}

/* IMPACT v7 */
#impact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#impact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 150, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.metric-cell {
  padding: 36px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  transition: background 0.3s;
}

.metric-cell:last-child {
  border-right: none;
}

.metric-cell:hover {
  background: rgba(200, 150, 76, 0.04);
}

.metric-num {
  font-family: "DM Serif Display", serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

.section-sublabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 36px;
  position: relative;
  z-index: 2;
}

.clients-strip .logo-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  position: relative;
  z-index: 2;
}

.partner-strip .logo-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* Testimonials */
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.testi-nav {
  display: flex;
  gap: 10px;
}

.tbn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.tbn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.testi-outer {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.testi-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
  flex-shrink: 0;
  width: calc(50% - 9px);
}

.testi-card:hover {
  border-color: rgba(200, 150, 76, 0.2);
}

.tqm {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
  user-select: none;
}

.ttext {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  font-style: italic;
}

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

.tav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--slate);
  border: 1.5px solid rgba(200, 150, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.tname {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.ttitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* INSIGHTS v7 */
#insights {
  background: var(--white);
}

.insights-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ac {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.ac:hover {
  border-color: rgba(200, 150, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.ac-img {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ac-img-1 {
  background: linear-gradient(135deg, #0a1628, #1e3a5f);
}
.ac-img-2 {
  background: linear-gradient(135deg, #1a2d47, #0a1628);
}
.ac-img-3 {
  background: linear-gradient(135deg, #1a2807, #1a2d47);
}

.ac-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 150, 76, 0.25);
  padding: 4px 10px;
  border-radius: 4px;
}

.ac-body {
  padding: 20px;
}

.ac-title {
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 9px;
}

.ac-title a {
  color: var(--navy);
}

.ac-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.ac-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ac-time {
  font-size: 11px;
  color: var(--muted);
}

.ac-arrow {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.ac:hover .ac-arrow {
  gap: 9px;
}

/* CONTACT v7 */
#contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 150, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.contact-title em {
  color: var(--gold);
  font-style: italic;
}

.contact-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.contact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold);
}

.cl-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
  flex-shrink: 0;
}

.contact-link:hover .cl-icon {
  background: rgba(200, 150, 76, 0.12);
  border-color: rgba(200, 150, 76, 0.25);
}

/* FOOTER v7 */
.site-footer {
  background: #060e1a;
  padding: 32px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-right {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--gold);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}
.rd4 {
  transition-delay: 0.4s;
}

/* MOBILE v7 */
@media (max-width: 960px) {
  .site-header {
    padding: 0 24px;
  }

  section {
    padding: 64px 24px;
  }

  #hero {
    padding: 100px 24px 60px;
  }

  h1.hero-name {
    white-space: normal;
    font-size: 64px;
    letter-spacing: -1.5px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .vstats {
    display: none;
  }

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

  .metrics-row {
    grid-template-columns: 1fr 1fr;
  }

  .metric-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .port-grid {
    grid-template-columns: 1fr 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    width: 100%;
  }

  .testi-track {
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .contact-ctas {
    flex-direction: column;
    align-items: center;
  }

  .insights-header {
    grid-template-columns: 1fr;
  }

  .contact-links {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .port-grid {
    grid-template-columns: 1fr;
  }

  .hero-subrole {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-dot {
    display: none;
  }
  .card-secondary-inner {
    padding: 24px;
  }

  h1.hero-name {
    font-size: 48px;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }
}
