/* Aloomii design tokens and reusable components. Extracted verbatim from index.html. */
:root {
    --bg: #0b0b14;
    --bg-card: rgba(255,255,255,0.07);
    --bg-card-hover: rgba(255,255,255,0.11);
    --border: rgba(255,255,255,0.12);
    --border-hover: rgba(0,200,190,0.35);
    --text: #f0f0f0;
    --text-body: rgba(255,255,255,0.75);
    --text-muted: rgba(255,255,255,0.4);
    --accent: #00c8be;
    --accent-dark: #009e96;
    --purple: #663399;
    --purple-light: #a87fdb;
    --nav-height: 72px;
    --section-pad-h: 48px;
    --mobile-pad-h: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
  body { overflow-x: hidden; width: 100%; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ==================== CANVAS ==================== */
  #ghostCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .page-content {
    position: relative;
    z-index: 2;
  }

  /* ==================== NAV ==================== */
  nav {
    position: sticky;
    top: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 48px;
    background: #0b0b14;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo { text-decoration: none; }
  .nav-logo img { height: 36px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { color: var(--text-body); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-links .nav-cta {
    background: var(--accent); color: #000; padding: 10px 22px;
    border-radius: 10px; font-weight: 600; font-size: 13px; transition: all 0.25s;
  }
  .nav-links .nav-cta:hover { background: #00e0d5; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,200,190,0.3); }
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .mobile-menu {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(11,11,20,0.95); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); padding: 24px 40px;
    border-bottom: 1px solid var(--border); z-index: 99;
  }
  .mobile-menu.active { display: block; }
  .mobile-menu a { display: block; padding: 14px 0; color: var(--text-body); text-decoration: none; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: #fff; }

  /* ==================== GLASS CARD ==================== */
  .glass {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.35s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(0,200,190,0.45); }

  /* ==================== CONTENT WRAPPER ==================== */
  .content-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

  /* ==================== HERO ==================== */
  .hero {
    padding: 80px 48px 60px;
    max-width: 1100px; margin: 0 auto; text-align: center;
  }
  @keyframes heroFadeIn { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
  .hero h1 {
    font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; line-height: 1.08;
    letter-spacing: -2.5px; color: #fff; margin-bottom: 24px;
    max-width: 820px; margin-left: auto; margin-right: auto;
  }
  .hero h1 .highlight { color: var(--accent); }
  .hero .sub { font-size: 18px; color: var(--text-body); max-width: 620px; margin: 0 auto 40px; line-height: 1.75; }
  .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block; background: var(--accent); color: #000;
    padding: 16px 36px; border-radius: 10px; font-size: 15px;
    font-weight: 600; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,200,190,0.2);
  }
  .btn-primary:hover { background: #00e0d5; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,200,190,0.3); }
  .btn-secondary {
    display: inline-block; background: transparent; color: var(--accent);
    padding: 16px 36px; border-radius: 10px; font-size: 15px;
    font-weight: 600; text-decoration: none;
    border: 2px solid var(--accent); transition: all 0.3s;
  }
  .btn-secondary:hover { background: rgba(0,200,190,0.1); transform: translateY(-2px); }

  /* ==================== SOCIAL PROOF ==================== */
  .proof-bar { padding: 48px; text-align: center; border-top: 1px solid var(--border); }
  .proof-bar .label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
  .proof-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
  .proof-logos img {
    height: 75px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.3s;
  }
  .proof-logos img:hover { opacity: 0.75; }

  /* ==================== SECTION UTILITIES ==================== */
  .section-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); text-align: center; margin-bottom: 12px; }
  .section-heading { font-size: clamp(30px, 4vw, 42px); font-weight: 800; letter-spacing: -1.5px; text-align: center; margin-bottom: 16px; color: #fff; }
  .section-sub { font-size: 17px; color: var(--text-body); text-align: center; max-width: 600px; margin: 0 auto 60px; line-height: 1.7; }

  /* ==================== PROBLEM ==================== */
  .problem { padding: 80px var(--section-pad-h); text-align: center; }
  .problem-inner { max-width: 900px; margin: 0 auto; padding: 56px 48px; }
  .problem h2 { font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 20px; color: #fff; }
  .problem p { font-size: 16px; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }
  .stat-row { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
  .stat-card {
    padding: 32px 28px; text-align: center; flex: 1; min-width: 180px;
  }
  .stat-card .num {
    font-size: 42px; font-weight: 800; letter-spacing: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, var(--accent) 50%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 10px;
  }
  .stat-card .desc { font-size: 13px; color: var(--text-body); max-width: 170px; margin: 0 auto; line-height: 1.5; }

  /* ==================== OFFERINGS ==================== */
  .offerings { padding: 80px var(--section-pad-h) 100px; }
  .offerings-inner { max-width: 1100px; margin: 0 auto; }
  .offering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .offering-card { padding: 44px 40px; display: flex; flex-direction: column; width: 100%; }
  .offering-card.full-width { grid-column: 1 / -1; max-width: 800px; margin: 0 auto; }
  .offering-card .card-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 6px; margin-bottom: 20px;
  }
  .offering-card.founders .card-tag { background: rgba(0,200,190,0.1); color: var(--accent); }
  .offering-card.businesses .card-tag { background: rgba(102,51,153,0.15); color: var(--purple-light); }
  .offering-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 8px; color: #fff; }
  .offering-card.founders .price { font-size: 15px; color: var(--accent); font-weight: 700; margin-bottom: 16px; }
  .offering-card.businesses .price { font-size: 15px; color: var(--purple-light); font-weight: 700; margin-bottom: 16px; }
  .offering-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
  .offering-card .features { list-style: none; margin-bottom: 28px; }
  .offering-card .features li {
    font-size: 14px; color: var(--text); padding: 8px 0;
    border-bottom: 1px solid var(--border); padding-left: 24px; position: relative;
  }
  .offering-card.founders .features li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
  .offering-card.businesses .features li::before { content: "\2713"; position: absolute; left: 0; color: var(--purple-light); font-weight: 700; }
  .card-cta {
    display: inline-block; padding: 14px 28px; border-radius: 10px;
    font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s;
  }
  .card-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .offering-card.founders .card-cta { background: var(--accent); color: #000; box-shadow: 0 4px 16px rgba(0,200,190,0.2); }
  .offering-card.founders .card-cta:hover { background: #00e0d5; transform: translateY(-1px); }
  .offering-card.founders .card-cta-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); box-shadow: none; }
  .offering-card.founders .card-cta-outline:hover { background: rgba(0,200,190,0.1); transform: translateY(-1px); }
  .offering-card.businesses .card-cta { background: var(--purple); color: #fff; box-shadow: 0 4px 16px rgba(102,51,153,0.3); border: none; }
  .offering-card.businesses .card-cta:hover { background: var(--purple-light); transform: translateY(-1px); }

  /* ==================== HOW IT WORKS ==================== */
  .how-it-works { padding: 80px var(--section-pad-h) 100px; max-width: 1000px; margin: 0 auto; }
  .how-it-works .glass { padding: 56px 48px; }
  .steps { display: flex; flex-direction: column; }
  .step { display: flex; gap: 32px; align-items: flex-start; padding: 36px 0; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-size: 52px; font-weight: 800; line-height: 1; min-width: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, var(--accent) 45%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
  .step-content p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

  /* ==================== DIFFERENTIATOR ==================== */
  .differentiator { padding: 80px var(--section-pad-h) 100px; }
  .differentiator-inner { max-width: 1100px; margin: 0 auto; }
  .diff-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; row-gap: 48px; }
  .diff-card { padding: 36px 32px; }
  .diff-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--accent); }
  .diff-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

  /* ==================== SCROLLING TICKER ==================== */
  .ticker-wrap {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    max-width: 100%;
    width: 100%;
  }
  .ticker-wrap::before, .ticker-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
  }
  .ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .ticker-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
  .ticker { display: flex; gap: 48px; animation: tickerScroll 30s linear infinite; white-space: nowrap; width: max-content; max-width: 100%; }
  .ticker span { font-size: 15px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); display: inline-flex; align-items: center; gap: 48px; }
  .ticker span::after { content: '\00B7'; color: var(--accent); font-size: 24px; }
  @keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ==================== VERTICALS ==================== */
  .verticals { padding: 80px var(--section-pad-h); text-align: center; }
  .verticals h2 { font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; color: #fff; }
  .verticals .sub { font-size: 15px; color: var(--text-body); margin-bottom: 36px; }
  .vertical-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
  .vertical-pill {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 40px; padding: 10px 22px;
    font-size: 13px; font-weight: 600; color: var(--text); transition: all 0.3s;
  }
  .vertical-pill:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 2px 12px rgba(0,200,190,0.1); transform: translateY(-1px); }

  .trades-spotlight { max-width: 820px; margin: 56px auto 0; padding: 36px 40px; text-align: left; border-left: 3px solid var(--accent); }
  .team { padding: 80px var(--section-pad-h); max-width: 1000px; margin: 0 auto; }
  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .team-member { padding: 36px 32px; }
  .team-member h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: #fff; }
  .team-member .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
  .team-member p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
  .team-bottom { text-align: center; margin-top: 28px; padding: 32px; }
  .team-bottom p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
  .team-bottom strong { color: #fff; }

  /* ==================== NEWSLETTER ==================== */
  .newsletter { padding: 80px var(--section-pad-h); }
  .newsletter-inner {
    max-width: 640px; margin: 0 auto; text-align: center; padding: 56px 48px;
  }
  .newsletter-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--accent);
    background: rgba(0,200,190,0.1); padding: 5px 14px;
    border-radius: 20px; margin-bottom: 24px;
  }
  .newsletter h2 { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; color: #fff; }
  .newsletter p { font-size: 16px; color: var(--text-body); line-height: 1.7; margin-bottom: 8px; }
  .newsletter .bonus {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 20px 0 28px; padding: 14px 22px;
    background: rgba(0,200,190,0.08); border: 1px solid rgba(0,200,190,0.15);
    border-radius: 12px; font-size: 14px; color: var(--accent); font-weight: 500;
  }
  .newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
  .newsletter-form input {
    flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.06);
    border: 1px solid var(--border); border-radius: 10px;
    color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s;
  }
  .newsletter-form input::placeholder { color: var(--text-muted); }
  .newsletter-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,200,190,0.1); }
  .newsletter-form button {
    padding: 14px 28px; background: var(--accent); color: #000;
    border: none; border-radius: 10px; font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all 0.3s; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,200,190,0.2);
  }
  .newsletter-form button:hover { background: #00e0d5; transform: translateY(-1px); }
  .newsletter-form button:disabled { opacity: 0.5; cursor: not-allowed; }
  .newsletter-success { display: none; padding: 20px; text-align: center; color: var(--accent); font-weight: 600; }
  .newsletter-success.visible { display: block; }
  .newsletter .fine-print { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

  /* ==================== CONTACT FORM ==================== */
  .contact-section { padding: 80px var(--section-pad-h); }
  .contact-header { text-align: center; margin-bottom: 56px; }
  .contact-header h2 {
    font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1.5px;
    color: #fff; margin-bottom: 16px;
  }
  .contact-header p {
    font-size: 17px; color: var(--text-body); line-height: 1.7;
    max-width: 520px; margin: 0 auto;
  }
  .consultation-form { max-width: 880px; margin: 0 auto; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .form-group { margin-bottom: 24px; }
  .form-group label {
    display: block; font-size: 0.82rem; font-weight: 600; color: #fff;
    margin-bottom: 8px; letter-spacing: 0.01em; text-transform: uppercase;
  }
  .form-group .required { color: #c0392b; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 14px 16px; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; color: #fff; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; appearance: none;
  }
  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 40px; cursor: pointer; background-color: rgba(255,255,255,0.06);
  }
  .form-group select option { background: #1a1a2e; color: #fff; }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
  }
  .form-submit { text-align: center; margin-top: 16px; }
  .form-submit button {
    display: inline-block; padding: 16px 48px; font-family: 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 600; color: #fff; background: #fff;
    color: #0b0b14; border: none; border-radius: 8px; cursor: pointer;
    transition: background 0.2s, transform 0.15s; letter-spacing: 0.01em;
  }
  .form-submit button:hover { background: #e0e0e0; transform: translateY(-1px); }
  .form-submit button:active { transform: translateY(0); }
  .form-submit button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-success { display: none; text-align: center; padding: 40px 20px; }
  .form-success.visible { display: block; }
  .form-success .success-icon {
    width: 56px; height: 56px; margin: 0 auto 16px; background: #fff;
    color: #0b0b14; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.4rem; font-weight: 700;
  }
  .form-success p { font-size: 17px; color: var(--text-body); }


  /* ==================== FOOTER ==================== */
  .site-footer { color: var(--text-muted); padding: 64px 48px 40px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  .footer-brand .footer-logo img { height: 28px; width: auto; margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; color: var(--text-muted); max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 14px; color: var(--text-muted); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; font-size: 13px;
  }
  .footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--accent); }
  .footer-social { display: flex; gap: 16px; }

  .pillars { padding: 80px var(--section-pad-h); }
  .pillars-inner { max-width: 1100px; margin: 0 auto; }
  .pillars .offering-card { padding: 32px; }
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger children */
  .reveal-stagger .reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.visible .reveal-child:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.visible .reveal-child:nth-child(2) { transition-delay: 0.12s; }
  .reveal-stagger.visible .reveal-child:nth-child(3) { transition-delay: 0.19s; }
  .reveal-stagger.visible .reveal-child:nth-child(4) { transition-delay: 0.26s; }
  .reveal-stagger.visible .reveal-child:nth-child(5) { transition-delay: 0.33s; }
  .reveal-stagger.visible .reveal-child:nth-child(6) { transition-delay: 0.4s; }
  .reveal-stagger.visible .reveal-child:nth-child(7) { transition-delay: 0.47s; }
  .reveal-stagger.visible .reveal-child:nth-child(8) { transition-delay: 0.54s; }
  .reveal-stagger.visible .reveal-child:nth-child(9) { transition-delay: 0.61s; }
  .reveal-stagger.visible .reveal-child:nth-child(10) { transition-delay: 0.68s; }

  /* Scale-up variant */
  .reveal-scale {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-scale.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  /* ==================== PROOF ==================== */
  .proof { padding: 100px var(--section-pad-h); }
  .proof .content-wrapper { max-width: 1100px; margin: 0 auto; width: 100%; }
  .receipt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .receipt-card {
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
  }
  .receipt-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(0,200,190,0.12);
  }
  .receipt-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(0,200,190,0.3);
  }
  .receipt-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 20px;
    opacity: 0.7;
  }
  .receipt-number {
    font-size: 56px; font-weight: 800;
    letter-spacing: -2px; line-height: 1;
    color: #fff; margin-bottom: 6px;
  }
  .receipt-label {
    font-size: 15px; font-weight: 600;
    color: #fff; margin-bottom: 16px;
  }
  .receipt-body {
    font-size: 14px; color: var(--text-body);
    line-height: 1.65; flex-grow: 1;
  }
  .receipt-tags {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .receipt-tags span {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.05em; color: var(--text-muted);
  }
  .proof-bottom-line {
    margin-top: 56px;
    padding: 40px 44px;
    border-left: 3px solid var(--accent);
    background: rgba(0,200,190,0.04);
    border-radius: 0 16px 16px 0;
  }
  .proof-bottom-line p {
    font-size: 18px;
    color: #fff; line-height: 1.7;
    font-style: italic; margin: 0;
    font-weight: 500;
  }

  /* ==================== PROOF POINT (legacy) ==================== */

  .proof-point { padding: 80px 48px; }
  .proof-point-inner { max-width: 1000px; margin: 0 auto; }
  .proof-point .section-heading { margin-bottom: 40px; }
  .proof-story { padding: 40px 36px; }
  .proof-story .eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  }
  .proof-story h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; color: #fff; }
  .proof-story p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
  .proof-story .proof-highlight {
    display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600;
    color: var(--accent); border-bottom: 1px solid rgba(0,200,190,0.3); padding-bottom: 2px;
  }

  /* ==================== TEAM WITH PHOTOS ==================== */
  .team-member {
    display: flex; gap: 24px; align-items: flex-start;
  }
  .team-member-photo {
    width: 88px; height: 88px; border-radius: 14px; object-fit: cover;
    flex-shrink: 0; border: 2px solid rgba(255,255,255,0.12);
  }
  .team-member-info { flex: 1; }

  /* ==================== BLOG PREVIEW ==================== */
  .blog-preview { padding: 80px var(--section-pad-h); }
  .blog-preview-inner { max-width: 1100px; margin: 0 auto; }
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
  .blog-card {
    padding: 32px 28px; display: flex; flex-direction: column;
  }
  .blog-card .blog-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
  }
  .blog-card h3 {
    font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px;
    line-height: 1.35; letter-spacing: -0.3px;
  }
  .blog-card p {
    font-size: 13px; color: var(--text-body); line-height: 1.6; flex: 1; margin-bottom: 16px;
  }
  .blog-card .blog-link {
    font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none;
    transition: opacity 0.2s;
  }
  .blog-card .blog-link:hover { opacity: 0.75; }
  .blog-view-all {
    text-align: center; margin-top: 36px;
  }
  .blog-view-all a {
    display: inline-block; padding: 12px 32px; border-radius: 10px;
    font-size: 14px; font-weight: 600; text-decoration: none; color: #fff;
    border: 2px solid rgba(255,255,255,0.35); transition: all 0.3s;
  }
  .blog-view-all a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

  /* ==================== FREE SCAN ==================== */
  .free-scan { padding: 80px var(--section-pad-h); }
  .free-scan-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 56px 48px; }
  .free-scan-inner .scan-badge {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  }
  .free-scan-inner h2 { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; color: #fff; }
  .free-scan-inner p { font-size: 16px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
  .free-scan-inner .scan-details {
    text-align: left; margin: 24px 0 28px; padding: 20px 24px;
    background: rgba(0,200,190,0.06); border: 1px solid rgba(0,200,190,0.12);
    border-radius: 12px;
  }
  .free-scan-inner .scan-details li {
    font-size: 14px; color: var(--text); padding: 6px 0; list-style: none;
    padding-left: 20px; position: relative;
  }
  .free-scan-inner .scan-details li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
  .free-scan-inner .scan-cta {
    display: inline-block; background: var(--accent); color: #000;
    padding: 16px 36px; border-radius: 10px; font-size: 15px;
    font-weight: 600; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,200,190,0.2);
  }
  .free-scan-inner .scan-cta:hover { background: #00e0d5; transform: translateY(-2px); }
  .free-scan-inner .no-commitment { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

  /* ==================== GTM BANNER ==================== */
  .gtm-banner {
    background: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-align: center;
    z-index: 99;
    position: sticky;
    top: 72px;
    transition: filter 0.2s ease;
  }
  .gtm-banner:hover { filter: brightness(0.95); }
  .gtm-banner-eyebrow {
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
  }
  .gtm-banner-sep {
    opacity: 0.7;
  }
  .gtm-banner-arrow {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
  }


  .studio-promo { padding: 0 var(--section-pad-h) 80px; }
  .studio-promo-inner { max-width: 900px; margin: 0 auto; padding: 40px 48px; display: flex; align-items: center; gap: 40px; border: 1px solid rgba(0,200,190,0.25); border-radius: 16px; transition: border-color 0.2s; position: relative; overflow: hidden; }
  /* ==================== RESPONSIVE ==================== */
  @media (max-width: 768px) {
    :root {
      --nav-height: 64px;
    }

    nav { padding: 14px 20px !important; width: 100% !important; left: 0 !important; }
    .nav-logo img { height: 28px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Root-level overflow control */
    html, body {
      overflow-x: hidden !important;
      width: 100% !important;
      position: relative;
    }

    /* Standardized Section Containers */
    .content-wrapper, .offerings-inner, .problem-inner, .team, .free-scan-inner, .differentiator-inner, .pillars-inner {
      max-width: 100% !important;
      width: 100% !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
      margin: 0 !important;
      box-sizing: border-box !important;
    }

    /* Uniform section vertical spacing */
    section, .problem, .pillars, .offerings, .how-it-works, .differentiator, .verticals, .team, .newsletter, .blog-preview, .free-scan, .contact-section, .proof {
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-top: 60px !important;
      padding-bottom: 60px !important;
    }

    /* Grid & Flex Reset */
    .offering-grid, .diff-grid, .team-grid, .blog-grid, .receipt-grid, .stat-row, .form-grid, .steps, .tier-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 24px !important;
      width: 100% !important;
      padding: 0 20px !important;
      margin: 0 !important;
      box-sizing: border-box !important;
    }

    /* Card/Box Styling */
    .offering-card, .receipt-card, .diff-card, .team-member, .blog-card, .stat-card, .glass, .trades-spotlight, .proof-story, .proof-bottom-line {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      box-sizing: border-box !important;
      padding: 32px 24px !important;
      grid-column: auto !important;
    }

    /* FORCED TEXT WRAPPING */
    h1, h2, h3, h4, p, span, strong, li, blockquote, div {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      white-space: normal !important;
      max-width: 100% !important;
    }

    /* Fix nested tier divs specifically */
    .tier-grid > div {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 0 16px 0 !important;
      padding: 0 !important;
      box-sizing: border-box !important;
    }

    /* Special case for Velocity Pro (Card C) */
    .tier-grid > div[style*="border: 1px solid"] {
      padding: 24px !important;
      margin-top: 12px !important;
      width: 100% !important;
    }

    /* Typography scale-down */
    .hero h1 { font-size: 34px !important; line-height: 1.1; letter-spacing: -1px; padding: 0 20px; text-align: center; }
    .section-heading { font-size: 28px !important; line-height: 1.2; padding: 0 20px; text-align: center; }
    .section-sub { padding: 0 24px; font-size: 16px; text-align: center; }

    /* Studio Highlight Card (Jim Rogers) */
    .offering-card[href="/studio/"] > div {
      grid-template-columns: 1fr !important;
      padding: 24px !important;
      gap: 20px !important;
    }

    /* Fix Ticker */
    .ticker-wrap { width: 100% !important; max-width: 100% !important; overflow: hidden !important; }

    /* GTM Banner */
    .gtm-banner { font-size: 12px !important; padding: 10px 16px !important; top: 56px !important; }

    /* Global Overrides for Inline Styles */
    [style*="max-width"] { max-width: 100% !important; }
    [style*="padding: 56px 48px"] { padding: 32px 20px !important; }
    [style*="padding: 36px 40px"] { padding: 32px 20px !important; }
    [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  }

  .linkedin-link { display:inline-flex; align-items:center; margin-top:6px; padding:8px; transition:opacity .2s; }
  .linkedin-link:hover { opacity:1; }
  .linkedin-link svg { width:20px; height:20px; fill:var(--accent); opacity:.7; transition:opacity .2s, fill .2s; }
  .linkedin-link:hover svg { opacity:1; fill:#fff; }
  @media (max-width: 480px) {
    .linkedin-link { padding:12px; }
    .linkedin-link svg { width:22px; height:22px; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 28px !important; }
    .receipt-number { font-size: 38px !important; }
  }

  /* ==================== DIAGNOSE HERO BAND (scoped) ==================== */
  .diagnose-hero {
    position: relative; overflow: hidden; color: #f5f6f8;
    padding: 96px 28px 104px; text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    background:
      radial-gradient(820px 520px at 72% 6%, rgba(52,227,176,.10), transparent),
      radial-gradient(680px 480px at 12% 96%, rgba(45,212,191,.07), transparent),
      #0b0b14;
  }
  .diagnose-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(1px 1px at 16% 26%, rgba(255,255,255,.5), transparent),
      radial-gradient(1px 1px at 34% 70%, rgba(255,255,255,.32), transparent),
      radial-gradient(1.4px 1.4px at 66% 30%, rgba(52,227,176,.5), transparent),
      radial-gradient(1px 1px at 84% 64%, rgba(255,255,255,.34), transparent),
      radial-gradient(1px 1px at 52% 16%, rgba(255,255,255,.3), transparent);
  }
  .dh-inner { position: relative; max-width: 880px; margin: 0 auto; }
  .dh-eyes { display: inline-flex; gap: 11px; margin-bottom: 22px; }
  .dh-eyes i {
    display: block; width: 13px; height: 13px; border-radius: 50%;
    background: #34e3b0; box-shadow: 0 0 14px 2px rgba(52,227,176,.7);
    animation: dhblink 5.5s infinite;
  }
  .dh-eyes i:nth-child(2) { animation-delay: .12s; }
  @keyframes dhblink { 0%,92%,100%{transform:scaleY(1)} 95%{transform:scaleY(.1)} }
  .dh-eyebrow { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #34e3b0; margin-bottom: 18px; }
  .diagnose-hero h1 {
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-weight: 800; line-height: 1.04; letter-spacing: -.02em;
    font-size: clamp(34px,5.6vw,60px); max-width: 16ch; margin: 0 auto;
    color: #f5f6f8;
  }
  .diagnose-hero h1 .dh-hl { color: #34e3b0; }
  .dh-sub {
    font-family: 'Hanken Grotesk', -apple-system, sans-serif;
    font-size: clamp(16px,2vw,19px); color: #9aa0ad;
    max-width: 54ch; margin: 22px auto 0; line-height: 1.55;
  }
  .dh-sub b { color: #f5f6f8; font-weight: 600; }
  .dh-cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .dh-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #0a0a0f;
    font-family: 'Hanken Grotesk', -apple-system, sans-serif;
    font-weight: 600; font-size: 17px; text-decoration: none;
    padding: 18px 36px; border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 18px 50px -18px rgba(52,227,176,.5);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .dh-btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(52,227,176,.4), 0 26px 60px -16px rgba(52,227,176,.65); }
  .dh-btn .dh-price { opacity: .5; font-weight: 500; }
  .dh-micro { font-size: 13.5px; color: #6b7280; }
  .dh-micro span { color: #2dd4bf; }
  .dh-proof { margin-top: 46px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; opacity: .72; }
  .dh-proof span { font-family: 'Bricolage Grotesque', Georgia, serif; font-weight: 600; font-size: 14.5px; color: #c4c8d2; white-space: nowrap; }
  .dh-proof .dh-lbl { width: 100%; font-family: 'Hanken Grotesk', -apple-system, sans-serif; font-weight: 400; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #6b7280; margin-bottom: 4px; }

  /* ==================== REUSABLE TABLE ==================== */
  .rates-table { width: 100%; border-collapse: collapse; color: var(--text); font-size: 15px; }
  .rates-table th, .rates-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
  .rates-table th { color: var(--text-muted); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
  .rates-table td:last-child, .rates-table th:last-child { text-align: right; white-space: nowrap; }
  .rates-table tr:last-child td { border-bottom: none; }
  .rates-table td:last-child { color: var(--accent); font-weight: 700; }
  @media (max-width: 768px) {
    .rates-table th, .rates-table td { padding: 14px 12px; }
    .rates-table { font-size: 14px; }
  }
