  /* Custom fonts */
  @font-face {
    font-family: 'Martina Plantijn';
    src: url('assets2026/fonts/MartinaPlantijn-Regular__e02ea76d18e952604fbe5636471d4c7e48f8db1c01fa15ee0e0170347f966405.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Phonic';
    src: url('assets2026/fonts/RHPhonic-Light__75529e64c5aae148387880374e90821d1b8f4e857e8e8b9697743ed012821bf8.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Phonic';
    src: url('assets2026/fonts/RHPhonic-Regular__66da8fcfda05a8b53afe5c8697bdb1b2fd883e748a29f65a628d7a98aad40982.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Phonic';
    src: url('assets2026/fonts/RHPhonic-Medium__b146c4b5c0392dc58deb21a59e200a74fba29467dc36e355a781fbc4694e5325.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Phonic';
    src: url('assets2026/fonts/RHPhonic-Bold__7f2cc2d831ae8cb196f347fee306ddd1ce4eb72b3dd76a05e28720a23f5a4ee3.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

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

  :root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #c1c0c0;
    --border-color: #333333;
    --gold: #c9a962;
    --gold-light: #e8d5a3;
    --primary-color: var(--gold);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  }

  body {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Header */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
  }

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

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo-image {
    height: 28px;
    width: auto;
    object-fit: contain;
  }

  .signup-btn {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: #000000;
    color: var(--text-primary);
    border: 1px solid #000000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .signup-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
  }

  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Adjust hero image position independently (e.g. center, 50% 50%, 30% 20%) */
    --hero-image-position: center;
    /* Adjust hero video position/offset independently */
    --hero-video-position: center;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-background img,
  .hero-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-background img {
    z-index: 0;
    object-position: var(--hero-image-position);
  }

  .hero-background video {
    z-index: 1;
    object-position: var(--hero-video-position);
    transition: opacity 0.5s ease;
  }

  .hero-background video.hero-video-ended {
    opacity: 0;
    pointer-events: none;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
  }

  .hero-text {
    max-width: 600px;
  }

  .hero-title {
    font-family: 'Martina Plantijn', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }

  .coming-soon-btn {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .coming-soon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }

  /* Tagline Section */
  .tagline-section {
    background: var(--bg-primary);
    padding: 4rem 2rem;
    text-align: center;
  }

  .tagline-section .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .tagline {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  @keyframes tagline-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  /* Day trading composition (Robinhood-style block) */
  .day-trading-section {
    background: #000000;
    padding: 4rem 2rem 5rem;
    text-align: center;
  }
  .day-trading-section .container {
    max-width: 720px;
    margin: 0 auto;
  }
  .day-trading-section .composition-title {
    position: relative;
    z-index: 1;
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .day-trading-section .composition-text {
    position: relative;
    z-index: 1;
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
    color: #a1a1a6;
    margin-bottom: 3rem;
  }
  .day-trading-section .composition-image-wrap {
    position: relative;
    z-index: 0;
    margin-top: -4rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: block;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .day-trading-section .composition-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    vertical-align: top;
    object-fit: contain;
    object-position: center center;
  }
  .day-trading-section .composition-title-below {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    margin-top: 6rem;
    margin-bottom: 0;
  }

  /* Feature boxes (card style) */
  .feature-boxes-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
  }
  .feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .feature-box {
    background: #130F08;
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .feature-box:nth-child(1) { transition-delay: 0s; }
  .feature-box:nth-child(2) { transition-delay: 0.1s; }
  .feature-box:nth-child(3) { transition-delay: 0.2s; }
  .feature-box:nth-child(4) { transition-delay: 0.3s; }
  .feature-boxes-grid.is-visible .feature-box {
    opacity: 1;
    transform: translateY(0);
  }
  .feature-box-text {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #a1a1a6;
    margin: 0;
    padding: 1.5rem 1.5rem 0 1.5rem;
    flex: 1;
  }
  .feature-box-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    object-fit: contain;
  }

  /* Complex / until now section */
  .complex-section {
    background: #000000;
    padding: 0 2rem 4rem;
    text-align: center;
  }
  .complex-section .container {
    max-width: 720px;
    margin: 0 auto;
  }
  .complex-section-title {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.02em;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .complex-section-reveal {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    display: inline;
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .complex-section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Introducing Beymann section */
  .introducing-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets2026/gold.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 2rem 0 2rem;
  }
  .introducing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
  }
  .introducing-section .intro-content {
    order: 2;
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .introducing-section .intro-content.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
  .introducing-section .intro-title {
    font-family: 'Martina Plantijn', serif;
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .introducing-section .intro-title-logo {
    height: 1.15em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
  }
  .introducing-section .intro-text {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
    color: #a1a1a6;
    margin: 0;
  }
  .introducing-section .intro-image-wrap {
    order: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
    outline: none;
  }
  .introducing-section .intro-image {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    outline: none;
  }

  /* How It Works section */
  .how-it-works-section {
    background: #000000;
    padding: 4rem 2rem 5rem;
    text-align: center;
  }
  .how-it-works-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  .how-it-works-section .how-title {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .how-it-works-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }
  .how-it-works-section .step-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .how-it-works-section .step-card:nth-child(1) { transition-delay: 0s; }
  .how-it-works-section .step-card:nth-child(2) { transition-delay: 0.12s; }
  .how-it-works-section .step-card:nth-child(3) { transition-delay: 0.24s; }
  .how-it-works-section .steps-grid.is-visible .step-card {
    opacity: 1;
    transform: translateY(0);
  }
  .how-it-works-section .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #857049, #B39B66);
    color: #000;
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }
  .how-it-works-section .step-card-title {
    font-family: 'Martina Plantijn', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .how-it-works-section .step-card-text {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #e5e5e5;
    margin: 0;
  }

  /* Beta form section */
  .beta-form {
    padding: 12rem 2rem;
    background: #0d2847;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url('assets2026/mountains.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
  }
  .beta-form .container {
    max-width: 720px;
    margin: 0 auto;
  }
  .beta-form h2,
  .beta-form-title {
    font-family: 'Martina Plantijn', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .beta-form-title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .beta-form-title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .beta-form p {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 1.1rem;
    color: #a1a1a6;
    margin: 0 0 3.5rem 0;
    line-height: 1.5;
  }
  .beta-form .form-container {
    max-width: 560px;
    margin: 0 auto;
  }
  .beta-form .form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .beta-form #email {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-weight: 400;
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .beta-form #email::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .beta-form #email:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(13, 40, 71, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
  }
  .beta-form .submit-button {
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: linear-gradient(to bottom right, #857049, #B39B66);
    color: #000;
    border: none;
    padding: 1rem 1.75rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    animation: join-pulse 2.5s ease-in-out infinite;
  }
  .beta-form .submit-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
  }
  @keyframes join-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(179, 155, 102, 0.35); }
    50% { box-shadow: 0 0 18px 4px rgba(179, 155, 102, 0.5); }
  }
  @media (max-width: 768px) {
    .beta-form {
      background-position: 40% center;
    }
    .beta-form .form-group {
      flex-direction: column;
    }
    .beta-form #email {
      min-width: 100%;
    }
    .beta-form h2 {
      font-size: 2.75rem;
    }
  }

  /* Blog section (same as index-product) */
  .blog-section {
    padding: 4rem 2rem;
    background: #000000;
  }
  .blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .blog-section h2 {
    text-align: center;
    font-family: Phonic, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
  }
  .blog-loading {
    text-align: center;
    padding: 3rem 0;
  }
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top-color: #B39B66;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  .blog-loading p {
    color: #a1a1a6;
    font-size: 1.1rem;
  }
  .blog-error {
    text-align: center;
    padding: 3rem 0;
    color: #a1a1a6;
  }
  .blog-error .retry-button {
    font-family: Phonic, Helvetica, system-ui, sans-serif;
    background: linear-gradient(to bottom right, #857049, #B39B66);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }
  .blog-error .retry-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .blog-post {
    position: relative;
    display: grid;
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 1rem;
    row-gap: 0.75rem;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 1.25rem;
  }
  .blog-post:nth-child(1) { transition-delay: 0s; }
  .blog-post:nth-child(2) { transition-delay: 0.1s; }
  .blog-post:nth-child(3) { transition-delay: 0.2s; }
  .blog-post:nth-child(4) { transition-delay: 0.3s; }
  .blog-post:nth-child(5) { transition-delay: 0.4s; }
  .blog-post:nth-child(6) { transition-delay: 0.5s; }
  .blog-post:nth-child(7) { transition-delay: 0.6s; }
  .blog-post:nth-child(8) { transition-delay: 0.7s; }
  .blog-grid.is-visible .blog-post {
    opacity: 1;
    transform: translateY(0);
  }
  .blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .blog-arrow-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #857049, #B39B66);
    color: #000;
    font-size: 0.75rem;
    pointer-events: none;
  }
  .blog-image {
    width: 88px;
    height: 88px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    grid-column: 1;
    grid-row: 1;
  }
  .blog-content {
    display: contents;
  }
  .blog-content h3 {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Martina Plantijn', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .blog-content h3 a {
    text-decoration: none;
    background-image: linear-gradient(110deg, #857049, #B39B66, #C8B377, #B39B66);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tagline-gradient 6s ease infinite;
    transition: opacity 0.2s ease;
  }
  .blog-content h3 a:hover {
    opacity: 0.9;
  }
  .blog-content p {
    grid-column: 1 / -1;
    grid-row: 2;
    color: #a1a1a6;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .blog-content .blog-meta,
  .blog-meta {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #a1a1a6;
  }
  .blog-cta {
    text-align: center;
  }
  .blog-cta .view-all-button {
    font-family: Phonic, Helvetica, system-ui, sans-serif;
    background: transparent;
    color: #B39B66;
    border: 1px solid #B39B66;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .blog-cta .view-all-button:hover {
    background: linear-gradient(to bottom right, #857049, #B39B66);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
  }

  /* Footer */
  .footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .footer {
    background: var(--bg-primary);
    padding: 3rem 0 2rem;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
  }
  .footer i {
    color: var(--primary-color);
    margin: 0 0.25rem;
  }
  .social-links h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
  }
  .social-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .social-list li {
    margin: 0;
  }
  .social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
  }
  .social-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
  }
  .social-list a[aria-label="TikTok"]:hover { background: #000000; }
  .social-list a[aria-label="YouTube"]:hover { background: #FF0000; }
  .social-list a[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
  .social-list a[aria-label="Twitter"]:hover { background: #1DA1F2; }
  .social-list a[aria-label="LinkedIn"]:hover { background: #0077B5; }
  .social-list a[aria-label="Discord"]:hover { background: #5865F2; }
  .social-list a[aria-label="Substack"]:hover { background: #FF6719; }
  .social-list a[aria-label="Medium"]:hover { background: #00ab6c; }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-title {
      font-size: 3.5rem;
    }

    .tagline {
      font-size: 1.5rem;
    }

    .day-trading-section .composition-title {
      font-size: 2rem;
    }
    .day-trading-section .composition-text {
      font-size: 1rem;
    }

    .feature-boxes-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .complex-section-title {
      font-size: 2rem;
    }
    .complex-section-reveal {
      font-size: 2rem;
    }

    .introducing-section .container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .introducing-section .intro-content {
      text-align: center;
    }
    .introducing-section .intro-image-wrap {
      justify-content: center;
      order: 2;
    }
    .introducing-section .intro-title {
      font-size: 3rem;
    }

    .how-it-works-section .steps-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .how-it-works-section .how-title {
      font-size: 2.25rem;
    }

    .hero {
      --hero-image-position: 70% center;
      --hero-video-position: 40% center;
      min-height: 80vh;
    }
  }

  @media (max-width: 768px) {
    .header {
      padding: 1rem 1.25rem;
    }

    .hero {
      --hero-image-position: 67% center;
      --hero-video-position: 37% center;
    }

    .hero-content {
      padding: 0 1.25rem;
    }

    .hero {
      min-height: 70vh;
    }

    .hero-text {
      margin-top: 15rem;
    }

    .hero-title {
      font-size: 2.75rem;
    }

    .hero-subtitle {
      font-size: 1rem;
    }

    .tagline {
      font-size: 1.25rem;
    }

    .tagline-section {
      padding: 3rem 1.25rem;
    }

    .day-trading-section {
      padding: 3rem 1.25rem 4rem;
    }
    .day-trading-section .composition-title {
      font-size: 1.75rem;
    }
    .day-trading-section .composition-text {
      font-size: 0.9375rem;
      margin-bottom: 1rem;
    }
    .day-trading-section .composition-image-wrap {
      margin-top: 0;
      overflow: visible;
    }
    .day-trading-section .composition-image {
      width: 140%;
      max-width: none;
      height: auto;
      margin-left: 50%;
      transform: translateX(-50%);
      object-fit: contain;
      object-position: center center;
    }

    .feature-boxes-wrap {
      padding: 2rem 1.25rem 3rem;
    }
    .feature-boxes-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    .feature-box-text {
      font-size: 0.9375rem;
      padding: 1.25rem 1.25rem 0 1.25rem;
    }
    .feature-box-image {
      max-width: 60%;
      margin-left: auto;
      margin-right: auto;
    }

    .complex-section {
      padding: 0 1.25rem 3rem;
    }
    .complex-section-title {
      font-size: 1.75rem;
    }
    .complex-section-reveal {
      font-size: 1.75rem;
    }

    .introducing-section {
      padding: 3rem 1.25rem 0 1.25rem;
    }
    .introducing-section .intro-title {
      font-size: 2.75rem;
    }
    .introducing-section .intro-text {
      font-size: 0.9375rem;
    }
    .introducing-section .intro-content {
      text-align: center;
    }

    .how-it-works-section {
      padding: 3rem 1.25rem 4rem;
    }
    .how-it-works-section .how-title {
      font-size: 1.875rem;
      margin-bottom: 2rem;
    }
    .how-it-works-section .step-card {
      padding: 1.5rem 1.25rem;
    }
    .how-it-works-section .step-card-title {
      font-size: 1.2rem;
    }
    .how-it-works-section .step-card-text {
      font-size: 0.875rem;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    .social-list a {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }
  }

  /* Bottom logo custom $ cursor */
  .bottom-logo-wrap {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='central' text-anchor='middle' font-family='Arial, sans-serif' font-size='24' font-weight='bold' fill='%23B39B66'%3E%24%3C/text%3E%3C/svg%3E") 16 16, auto;
    position: relative;
  }

  /* $ particle effect (disabled on mobile via JS; hidden here as fallback) */
  .dollar-particle {
    position: fixed;
    pointer-events: none;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #B39B66;
    z-index: 9999;
    animation: dollar-fade 1s ease-out forwards;
    user-select: none;
  }
  @media (max-width: 767px) {
    .dollar-particle {
      display: none !important;
    }
  }

  @keyframes dollar-fade {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -100%) scale(0.5);
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.25rem;
    }
    .introducing-section .intro-title {
      font-size: 2.5rem;
    }
    .complex-section-reveal {
      font-size: 1.75rem;
    }

    .logo-image {
      height: 22px;
    }

    .signup-btn {
      padding: 0.5rem 1.25rem;
      font-size: 0.875rem;
    }
    .social-list {
      gap: 0.75rem;
    }
    .social-list a {
      width: 36px;
      height: 36px;
      font-size: 1rem;
    }
  }
