  :root {
    /* Light theme palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fb;
    --bg-tertiary: #f1f3f7;
    --border-light: #e2e6ed;
    --border-subtle: #ebeef3;

    --text-primary: #1a1f2e;
    --text-secondary: #4a5568;
    --text-muted: #8896ab;
    --text-faint: #a0aec0;

    --teal: #0d9488;
    --teal-bright: #14b8a6;
    --teal-soft: rgba(13, 148, 136, 0.08);
    --teal-border: rgba(13, 148, 136, 0.2);

    --gold: #b8860b;
    --gold-bright: #d4a44a;
    --gold-soft: rgba(184, 134, 11, 0.08);
    --gold-border: rgba(184, 134, 11, 0.2);

    --blue: #2563eb;
    --blue-bright: #3b82f6;
    --blue-soft: rgba(37, 99, 235, 0.07);
    --blue-border: rgba(37, 99, 235, 0.2);

    --indigo: #6366f1;
    --indigo-soft: rgba(99, 102, 241, 0.07);

    --rose: #e11d48;
    --amber: #d97706;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
  }

  /* Nav */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
  }

  nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-logo-icon {
    display: grid;
    grid-template-columns: repeat(2, 10px);
    gap: 3px;
  }

  .nav-logo-icon span {
    width: 10px;
    height: 10px;
    transition: background 0.3s;
  }

  .nav-logo-icon span:nth-child(1) { background: var(--teal); }
  .nav-logo-icon span:nth-child(2) { background: var(--blue); }
  .nav-logo-icon span:nth-child(3) { background: var(--gold); }
  .nav-logo-icon span:nth-child(4) { background: var(--text-muted); }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--text-primary); }
  .nav-links a:hover::after { width: 100%; }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 75% 25%, rgba(13, 148, 136, 0.06) 0%, transparent 55%),
      radial-gradient(ellipse 45% 50% at 20% 75%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
      radial-gradient(ellipse 35% 35% at 50% 50%, rgba(184, 134, 11, 0.04) 0%, transparent 45%),
      linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 35%, var(--bg-tertiary) 60%, var(--bg-primary) 100%);
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
  }

  .hero-orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08), transparent 70%);
  }

  .hero-orb-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
    animation-delay: -3s;
  }

  .hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05), transparent 70%);
    animation-delay: -5s;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 900px;
  }

  .hero-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.08em;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--teal), var(--teal-bright));
    border: 1px solid var(--teal);
    border-radius: 2px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .hero-cta:hover {
    background: linear-gradient(135deg, var(--teal-bright), var(--blue-bright));
    border-color: var(--teal-bright);
    gap: 20px;
  }

  .hero-cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--bg-primary);
    transition: transform 0.3s;
  }

  .hero-cta:hover svg { transform: translateX(4px); }

  /* Hero Stat Strip */
  .hero-stat-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border-top: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    z-index: 2;
  }

  .hero-stat {
    flex: 1;
    padding: 36px 60px;
    border-right: 1px solid var(--border-subtle);
    opacity: 0;
    animation: fadeUp 0.6s forwards;
  }

  .hero-stat:nth-child(1) { animation-delay: 1.1s; }
  .hero-stat:nth-child(2) { animation-delay: 1.2s; }
  .hero-stat:nth-child(3) { animation-delay: 1.3s; }
  .hero-stat:nth-child(4) { animation-delay: 1.4s; }
  .hero-stat:last-child { border-right: none; }

  .hero-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
  }

  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Sections */
  section {
    padding: 120px 60px;
    position: relative;
  }

  .section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-primary);
  }

  /* About */
  .about {
    background:
      radial-gradient(ellipse 50% 50% at 80% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
      var(--bg-secondary);
    max-width: 100%;
  }

  .about-text {
    max-width: 680px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 20px;
  }

  /* Approach */
  .approach {
    background:
      radial-gradient(ellipse 40% 40% at 70% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
      var(--bg-primary);
  }

  .approach-header {
    max-width: 600px;
    margin-bottom: 80px;
  }

  .approach-header p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
  }

  .approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 2px;
  }

  .approach-card {
    background: var(--bg-primary);
    padding: 48px 40px;
    position: relative;
    transition: background 0.4s;
    overflow: hidden;
  }

  .approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .approach-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), transparent); }
  .approach-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), transparent); }
  .approach-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), transparent); }

  .approach-card:hover::before { opacity: 1; }

  .approach-card:nth-child(1):hover { background: var(--teal-soft); }
  .approach-card:nth-child(2):hover { background: var(--blue-soft); }
  .approach-card:nth-child(3):hover { background: var(--gold-soft); }

  .approach-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1;
  }

  .approach-card:nth-child(1) .approach-card-num { color: rgba(13, 148, 136, 0.3); }
  .approach-card:nth-child(2) .approach-card-num { color: rgba(37, 99, 235, 0.3); }
  .approach-card:nth-child(3) .approach-card-num { color: rgba(184, 134, 11, 0.3); }

  .approach-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
  }

  .approach-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* Markets */
  .markets {
    background:
      radial-gradient(ellipse 50% 50% at 50% 80%, rgba(13, 148, 136, 0.03) 0%, transparent 60%),
      var(--bg-secondary);
  }

  .markets-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
  }

  .markets-header p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
  }

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

  .market-tile {
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    border-radius: 2px;
    background: var(--bg-primary);
  }

  .market-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .market-tile:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
  .market-tile:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--indigo)); }
  .market-tile:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--amber)); }

  .market-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .market-tile:nth-child(1):hover { border-color: var(--teal-border); }
  .market-tile:nth-child(2):hover { border-color: var(--blue-border); }
  .market-tile:nth-child(3):hover { border-color: var(--gold-border); }

  .market-tile:hover::before { opacity: 1; }

  .market-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .market-tile:nth-child(1) .market-icon { background: var(--teal-soft); color: var(--teal); }
  .market-tile:nth-child(2) .market-icon { background: var(--blue-soft); color: var(--blue); }
  .market-tile:nth-child(3) .market-icon { background: var(--gold-soft); color: var(--gold); }

  .market-tile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--text-primary);
  }

  .market-tile p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ZonifyMo */
  .zonify {
    background:
      radial-gradient(ellipse 50% 50% at 70% 40%, rgba(99, 102, 241, 0.03) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 30% 60%, rgba(13, 148, 136, 0.03) 0%, transparent 50%),
      var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
  }

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

  .zonify-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .zonify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--teal-border);
    background: var(--teal-soft);
    border-radius: 2px;
    margin-top: 16px;
  }

  .zonify-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .zonify-badge span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
  }

  .zonify-visual {
    position: relative;
    height: 400px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-secondary);
  }

  .z-topbar {
    height: 36px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
  }

  .z-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .z-dot:nth-child(1) { background: var(--rose); }
  .z-dot:nth-child(2) { background: var(--amber); }
  .z-dot:nth-child(3) { background: var(--teal); }

  .z-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: calc(100% - 36px);
  }

  .z-sidebar {
    border-right: 1px solid var(--border-subtle);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-primary);
  }

  .z-sidebar-item {
    height: 28px;
    border-radius: 4px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s;
  }

  .z-sidebar-item.active {
    background: var(--teal-soft);
    color: var(--teal);
  }

  .z-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .z-bar {
    height: 22px;
    border-radius: 3px;
    opacity: 0;
    animation: barGrow 0.6s forwards;
  }

  .z-bar:nth-child(1) { width: 65%; background: linear-gradient(90deg, rgba(13, 148, 136, 0.25), rgba(13, 148, 136, 0.08)); animation-delay: 0.2s; }
  .z-bar:nth-child(2) { width: 40%; background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), rgba(37, 99, 235, 0.08)); animation-delay: 0.4s; }
  .z-bar:nth-child(3) { width: 80%; background: linear-gradient(90deg, rgba(184, 134, 11, 0.25), rgba(184, 134, 11, 0.08)); animation-delay: 0.6s; }
  .z-bar:nth-child(4) { width: 55%; background: linear-gradient(90deg, rgba(99, 102, 241, 0.25), rgba(99, 102, 241, 0.08)); animation-delay: 0.8s; }
  .z-bar:nth-child(5) { width: 72%; background: linear-gradient(90deg, rgba(13, 148, 136, 0.2), rgba(37, 99, 235, 0.08)); animation-delay: 1.0s; }

  @keyframes barGrow {
    from { opacity: 0; transform: scaleX(0); transform-origin: left; }
    to { opacity: 1; transform: scaleX(1); }
  }

  .z-chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
  }

  .z-chart-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    opacity: 0;
    animation: chartUp 0.5s forwards;
  }

  .z-chart-bar:nth-child(1) { height: 40%; background: var(--teal); opacity: 0.25; animation-delay: 0.3s; }
  .z-chart-bar:nth-child(2) { height: 65%; background: var(--blue); opacity: 0.25; animation-delay: 0.4s; }
  .z-chart-bar:nth-child(3) { height: 50%; background: var(--indigo); opacity: 0.25; animation-delay: 0.5s; }
  .z-chart-bar:nth-child(4) { height: 80%; background: var(--teal); opacity: 0.3; animation-delay: 0.6s; }
  .z-chart-bar:nth-child(5) { height: 55%; background: var(--gold); opacity: 0.25; animation-delay: 0.7s; }
  .z-chart-bar:nth-child(6) { height: 90%; background: linear-gradient(to top, var(--teal), var(--blue)); opacity: 0.3; animation-delay: 0.8s; }
  .z-chart-bar:nth-child(7) { height: 70%; background: var(--blue); opacity: 0.25; animation-delay: 0.9s; }
  .z-chart-bar:nth-child(8) { height: 45%; background: var(--indigo); opacity: 0.25; animation-delay: 1.0s; }

  @keyframes chartUp {
    from { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
    to { opacity: 1; transform: scaleY(1); }
  }

  /* Contact */
  .contact {
    background:
      radial-gradient(ellipse 50% 50% at 50% 50%, rgba(13, 148, 136, 0.04) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 40%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
      var(--bg-secondary);
    text-align: center;
    padding: 120px 60px 80px;
  }

  .contact .section-title { margin-bottom: 16px; }

  .contact p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    border: 1px solid var(--teal);
    background: linear-gradient(135deg, var(--teal), var(--teal-bright));
    color: #ffffff;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
  }

  .contact-btn:hover {
    background: linear-gradient(135deg, var(--teal-bright), var(--blue-bright));
    border-color: var(--teal-bright);
    color: #fff;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.25);
  }

  footer {
    background: var(--bg-primary);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
  }

  .footer-left {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  .footer-right {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }

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

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 28px; }
    nav.scrolled { padding: 16px 28px; }
    .nav-links { display: none; }
    section { padding: 80px 28px; }
    .hero { align-items: flex-start; padding-top: 120px; padding-bottom: 200px; }
    .hero-content { padding: 0 28px; }
    .hero-title { font-size: 44px; }
    .hero-desc { font-size: 16px; line-height: 1.9; margin-bottom: 32px; }
    .hero-cta { font-size: 12px; letter-spacing: 2px; padding: 16px 28px; gap: 12px; }
    .hero-stat-strip { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 50%; padding: 24px 28px; border-right: 1px solid var(--border-subtle); }
    .hero-stat:nth-child(2), .hero-stat:nth-child(4) { border-right: none; }
    .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-top: 1px solid var(--border-subtle); }
    .approach-grid { grid-template-columns: 1fr; }
    .markets-row { grid-template-columns: 1fr; }
    .zonify-inner { grid-template-columns: 1fr; }
    .zonify-visual { height: 300px; }
    .z-sidebar { display: none; }
    .z-body { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }

  /* Print-friendly overrides */
  @media print {
    body { background: #fff; color: #000; }
    nav, .hero-bg, .hero-orb, .hero-orb-1, .hero-orb-2, .hero-orb-3 { display: none; }
    .reveal { opacity: 1; transform: none; }
    section { padding: 40px 20px; }
    .hero { min-height: auto; padding: 40px 20px; }
    .hero-stat-strip { position: static; backdrop-filter: none; background: #fff; border: 1px solid #ddd; }
  }
