:root {
        --primary-color: #d4920a;
        --secondary-color: #b5711c;
        --bg-dark: #0c0c0e;
        --bg-surface: #161618;
        --border-color: #2a2720;
        --text-primary: #f0e8d5;
        --text-secondary: #9a8f7a;
        --gradient-gold: linear-gradient(135deg, #d4920a 0%, #f5c842 100%);

        --font-display: "Cinzel Decorative", serif;
        --font-body: "DM Sans", sans-serif;
        --font-accent: "Bebas Neue", sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        background-color: var(--bg-dark);
        color: var(--text-primary);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
        scroll-behavior: smooth;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h2 {
        border-left: 3px solid var(--primary-color);
        padding-left: 1rem;
        text-transform: uppercase;
        margin-bottom: 2rem;
        font-size: 32px;
        font-family: var(--font-body);
      }
      h2.center-title {
        border-left: none;
        padding-left: 0;
        text-align: center;
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-family: var(--font-body);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
      }
      .btn-type-a {
        background-color: var(--primary-color);
        color: #000;
        border: none;
      }
      .btn-type-a:hover {
        filter: brightness(1.1);
      }
      .btn-type-b {
        background-color: transparent;
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
      }
      .btn-type-b:hover {
        background-color: rgba(212, 146, 10, 0.12);
      }

      .btn-large {
        padding: 16px 40px;
        font-size: 1.1rem;
      }

      /* Navbar */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        z-index: 1000;
        background-color: rgba(12, 12, 14, 0.5);
        backdrop-filter: blur(10px);
        transition: background-color 0.3s ease;
      }
      .navbar.scrolled {
        background-color: var(--bg-dark);
      }
      .nav-brand img {
        height: 40px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        gap: 2rem;
      }
      .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
      }
      .nav-links a:hover {
        color: var(--primary-color);
      }
      .nav-actions {
        display: flex;
        gap: 1rem;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
      }
      .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        transition: 0.3s;
      }

      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding: 100px 5% 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
      }
      .mobile-menu.active {
        transform: translateY(0);
      }

      /* General Layout */
      .section {
        padding: 80px 5%;
      }
      .bg-dark {
        background-color: var(--bg-dark);
      }
      .bg-surface {
        background-color: var(--bg-surface);
      }
      .text-center {
        text-align: center;
      }

      /* HERO - Agent Specific */
      .hero-agent {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        background-color: var(--bg-dark);
        padding-top: 80px;
        overflow: hidden;
      }
      .hero-agent::after {
        content: "";
        position: absolute;
        right: -10%;
        top: 50%;
        transform: translateY(-50%);
        width: 50vw;
        height: 60vw;
        background: radial-gradient(
          circle,
          rgba(212, 146, 10, 0.18) 0%,
          transparent 65%
        );
        z-index: 0;
        pointer-events: none;
      }
      .hero-agent-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        padding: 0 5%;
      }
      .hero-agent-content {
        width: 55%;
        padding-right: 2rem;
      }
      .hero-agent h1 {
        font-size: 44px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.15;
      }
      .hero-agent p {
        font-size: 18px;
        color: var(--text-primary);
        max-width: 480px;
        margin-bottom: 2.5rem;
      }

      .hero-agent-diagram {
        width: 45%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
      }
      .network-svg {
        width: 400px;
        height: 320px;
      }

      /* WHAT IS AN AGENT - Section 2 */
      .what-agent-content {
        max-width: 800px;
        margin: 0 auto;
      }
      .what-agent-content p {
        font-size: 17px;
        line-height: 2;
        color: var(--text-secondary);
        margin-bottom: 20px;
      }
      .what-agent-content p:last-child {
        margin-bottom: 0;
      }
      .agent-quote {
        border-left: 3px solid var(--primary-color);
        padding-left: 20px;
        margin: 30px 0;
        color: var(--text-primary);
        font-size: 18px;
      }

      /* WHY CHOOSE - Section 3 */
      .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }
      .trust-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .trust-icon svg {
        width: 40px;
        height: 40px;
        stroke: var(--primary-color);
        stroke-width: 1.5;
        fill: none;
      }
      .trust-item h3 {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 700;
      }
      .trust-item p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
      }

      /* COMMISSION STRUCTURE - Section 4 */
      .split-wrapper {
        display: flex;
        align-items: center;
        gap: 48px;
      }
      .split-img {
        width: 40%;
        position: relative;
        z-index: 1;
      }
      .split-content {
        width: 60%;
        z-index: 2;
      }
      .split-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 0 30px rgba(212, 146, 10, 0.15);
      }
      .comm-intro {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        font-size: 16px;
        line-height: 1.7;
      }
      .comm-list {
        margin-bottom: 2rem;
      }
      .comm-item {
        border-left: 3px solid var(--primary-color);
        padding-left: 16px;
        margin-bottom: 20px;
      }
      .comm-item:last-child {
        margin-bottom: 0;
      }
      .comm-item-title {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 16px;
        color: var(--primary-color);
        margin-bottom: 0.25rem;
        display: block;
      }
      .comm-item-desc {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
      }

      /* HOW TO JOIN - Section 5 */
      .steps-container {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-bottom: 3rem;
      }
      .steps-container::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 1px;
        border-top: 1px dashed var(--primary-color);
        z-index: 0;
      }
      .step-item {
        flex: 1;
        text-align: center;
        padding: 0 1rem;
        position: relative;
        z-index: 1;
        background-color: var(--bg-dark);
      }
      .step-number {
        font-family: var(--font-accent);
        font-size: 64px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
        display: inline-block;
      }
      .step-item h3 {
        font-family: var(--font-body);
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
      }
      .step-item p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.6;
      }
      .step-cta-wrapper {
        text-align: center;
      }

      /* AGENT TOOLS - Section 6 */
      .tools-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 2rem;
      }
      .tool-card {
        background-color: var(--bg-dark);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        padding: 24px 20px;
        transition: border-color 0.25s ease;
        display: flex;
        flex-direction: column;
      }
      .tool-card:hover {
        border-color: var(--primary-color);
      }
      .tool-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--primary-color);
        stroke-width: 1.5;
        fill: none;
        margin-bottom: 16px;
      }
      .tool-card h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 17px;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
      }
      .tool-card p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
        flex-grow: 1;
      }

      /* WHO SHOULD APPLY - Section 7 */
      .profiles-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 2rem;
        margin-bottom: 3rem;
      }
      .profile-card {
        background-color: var(--bg-surface);
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        padding: 24px 20px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
      }
      .profile-num {
        font-family: var(--font-accent);
        font-size: 32px;
        color: var(--primary-color);
        line-height: 1;
        margin-bottom: 8px;
      }
      .profile-card h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 18px;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
      }
      .profile-card p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
        flex-grow: 1;
      }

      /* FAQ */
      .faq-wrapper {
        max-width: 800px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--border-color);
      }
      .faq-question {
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 600;
      }
      .faq-icon {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-answer-inner {
        padding: 0 24px 20px 24px;
        color: var(--text-secondary);
      }

      /* Footer */
      .footer {
        background-color: #000;
        padding: 80px 5% 40px;
        border-top: 1px solid var(--border-color);
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
      }
      .footer-links li {
        margin-bottom: 0.75rem;
      }
      .footer-links a {
        color: var(--text-secondary);
        font-size: 0.9rem;
        transition: color 0.3s;
      }
      .footer-links a:hover {
        color: var(--primary-color);
      }
      .license-badge {
        display: inline-block;
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        padding: 0.4rem 0.8rem;
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 600;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
      }
      .footer-bottom {
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
        text-align: center;
        color: var(--text-secondary);
        font-size: 0.85rem;
      }

      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999;
        background-color: var(--primary-color);
        color: #000;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(212, 146, 10, 0.4);
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0.4);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(212, 146, 10, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0);
        }
      }

      /* Responsive */
      @media (max-width: 1023px) {
        .hero-agent h1 {
          font-size: 36px;
        }
        .hero-agent-content {
          width: 60%;
        }
        .hero-agent-diagram {
          width: 40%;
        }
        .network-svg {
          width: 300px;
          height: 240px;
        }

        .trust-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .split-wrapper {
          flex-direction: column;
          gap: 32px;
        }
        .split-img,
        .split-content {
          width: 100%;
        }

        .tools-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        .section {
          padding: 48px 5%;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: flex;
        }

        .hero-agent {
          padding-top: 120px;
          flex-direction: column;
          justify-content: center;
          text-align: center;
          min-height: auto;
        }
        .hero-agent-container {
          flex-direction: column;
        }
        .hero-agent-content {
          width: 100%;
          padding-right: 0;
        }
        .hero-agent h1 {
          font-size: 28px;
        }
        .hero-agent p {
          margin: 0 auto 2rem;
        }
        .hero-agent-diagram {
          display: none;
        }

        h2 {
          font-size: 26px;
        }
        .btn {
          width: 100%;
        }

        .trust-grid {
          grid-template-columns: 1fr;
        }

        .steps-container {
          flex-direction: column;
          gap: 2rem;
          border-left: 1px dashed var(--primary-color);
          margin-left: 1rem;
          padding-left: 1rem;
        }
        .steps-container::before {
          display: none;
        }
        .step-item {
          text-align: left;
          padding: 0;
        }

        .tools-grid,
        .profiles-grid {
          grid-template-columns: 1fr;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }
        .floating-cta {
          bottom: 1rem;
          right: 1rem;
          padding: 0.75rem 1.5rem;
        }
      }
