/* CSS Variables */
      :root {
        --color-primary: #2d6a4f;
        --color-accent: #d4a012;
        --color-bg: #f7f4ee;
        --color-card-bg: #ffffff;
        --color-surface: #ede8df;
        --color-text-main: #1a1a18;
        --color-text-secondary: #6b6b60;
        --color-border: #d6d1c7;
        --color-dark-bg: #1a2e23;
        --color-accent-wash: rgba(45, 106, 79, 0.1);

        --font-display: "Space Grotesk", sans-serif;
        --font-body: "Inter", sans-serif;
        --font-mono: "Space Mono", monospace;

        --container-max: 1080px;
        --section-padding: 72px;
      }

      /* Reset & Base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--color-bg);
        color: var(--color-text-main);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h1 {
        font-size: 60px;
        line-height: 1.1;
        color: #f5f5f0;
        margin-bottom: 24px;
      }
      h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 24px;
      }
      .section-label {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-text-secondary);
        margin-bottom: 16px;
        display: block;
      }
      p {
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-bottom: 24px;
      }

      /* Layout Utility */
      section {
        padding: var(--section-padding) 0;
      }
      .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Buttons & Links */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 0;
        border: none;
        padding: 16px 32px;
      }
      .btn-primary {
        background-color: var(--color-primary);
        color: #ffffff;
      }
      .btn-primary:hover {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }

      .btn-accent {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }
      .btn-accent:hover {
        background-color: #ffffff;
      }

      .btn-text {
        background: transparent;
        color: var(--color-primary);
        padding: 16px 0;
      }
      .btn-text span {
        display: inline-block;
        transition: transform 0.2s ease;
        margin-left: 8px;
      }
      .btn-text:hover span {
        transform: translateX(4px);
      }

      /* Consistent Section CTA placement */
      .section-cta {
        margin-top: 48px;
      }

      /* Navbar */
      .navbar {
        padding: 24px 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
      }
      .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.5px;
      }
      .nav-links {
        display: flex;
        gap: 40px;
        align-items: center;
      }
      .nav-links a {
        color: #ffffff;
        font-size: 15px;
        opacity: 0.9;
      }
      .nav-links a:hover {
        opacity: 1;
      }
      .nav-auth {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .nav-auth .login {
        color: #ffffff;
        font-size: 15px;
      }
      .nav-auth .register {
        background: var(--color-accent);
        color: var(--color-text-main);
        padding: 10px 24px;
        font-family: var(--font-display);
        font-weight: 500;
      }
      .hamburger {
        display: none;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark-bg);
        z-index: 1000;
        padding: 80px 32px 32px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
      }
      .mobile-menu.active {
        right: 0;
      }
      .close-menu {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 28px;
        cursor: pointer;
      }
      .mobile-menu a {
        display: block;
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 24px;
        font-family: var(--font-display);
      }
      .mobile-menu .auth-group {
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Section 1: Hero (Right-Aligned & Diagonal Bottom) */
      .hero {
        background-color: var(--color-dark-bg);
        padding: 180px 0 140px;
        position: relative;
        /* Diagonal split: left bottom to right top */
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      }
      .hero-layout {
        display: flex;
        align-items: center;
      }
      .hero-left {
        flex: 0 0 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .hero-graphic {
        width: 100%;
        display: flex;
        justify-content: flex-start;
      }
      .hero-graphic svg {
        width: 100%;
        height: auto;
      }
      .hero-right {
        flex: 0 0 55%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        position: relative;
        z-index: 2;
      }
      .hero p {
        color: #c8d0ca;
        font-size: 18px;
        margin-bottom: 40px;
      }

      /* Section 2: Registration Steps (Vertical Timeline) */
      .steps-section {
        padding-top: 40px;
      }
      .steps-intro {
        font-size: 18px;
        margin-bottom: 48px;
      }

      .timeline {
        position: relative;
        margin-top: 48px;
      }
      /* Vertical Line */
      .timeline::before {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        left: 19px; /* Centered in 40px node */
        width: 2px;
        background-color: var(--color-primary);
        z-index: 0;
      }
      .timeline-step {
        position: relative;
        padding-left: 72px; /* 40px for node + 32px gap */
        margin-bottom: 48px;
      }
      .timeline-step:last-child {
        margin-bottom: 0;
      }
      .timeline-node {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: #ffffff;
        font-family: var(--font-mono);
        font-weight: 700;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
      }
      .timeline-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: var(--color-text-main);
      }
      .timeline-content p {
        margin-bottom: 0;
      }

      /* Section 3: What You Get (Surface background, list rows) */
      .what-you-get {
        background-color: var(--color-surface);
      }
      .benefit-list {
        margin-top: 48px;
        border-top: 1px solid var(--color-border);
      }
      .benefit-item {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 24px 0;
        border-bottom: 1px solid var(--color-border);
      }
      .benefit-title-wrapper {
        display: flex;
        align-items: center;
        width: 240px;
        flex-shrink: 0;
      }
      .benefit-indicator {
        width: 8px;
        height: 8px;
        background-color: var(--color-accent);
        margin-right: 12px;
        flex-shrink: 0;
      }
      .benefit-title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
      }
      .benefit-desc {
        flex: 1;
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-left: 48px;
        margin-bottom: 0;
      }

      /* Section 4: Account Security */
      .highlight-term {
        font-family: var(--font-display);
        font-weight: 500;
        color: var(--color-text-main);
      }

      /* Section 5: Requirements (Definition List) */
      .req-list {
        margin-top: 48px;
      }
      .req-item {
        margin-bottom: 32px;
      }
      .req-item:last-child {
        margin-bottom: 0;
      }
      .req-header {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
      }
      .req-line {
        width: 24px;
        height: 2px;
        background-color: var(--color-primary);
        margin-right: 12px;
        flex-shrink: 0;
      }
      .req-title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
      }
      .req-desc {
        margin-left: 36px;
        margin-bottom: 0;
      }

      /* FAQ */
      .faq {
        padding-bottom: 100px;
      }
      .faq-list {
        margin-top: 48px;
      }
      .faq-item {
        border-bottom: 1px solid var(--color-surface);
      }
      .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 24px 0;
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 500;
        color: var(--color-text-main);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }
      .faq-icon {
        color: var(--color-primary);
        transition: transform 0.25s ease-out;
        font-size: 20px;
      }
      .faq-question[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.25s ease-out,
          opacity 0.25s ease-out;
        opacity: 0;
      }
      .faq-answer-inner {
        padding: 0 0 24px 24px;
        border-left: 2px solid var(--color-primary);
        margin-bottom: 24px;
        font-size: 16px;
        color: var(--color-text-secondary);
      }
      .faq-item.active .faq-answer {
        opacity: 1;
      }

      /* Footer */
      .footer {
        background-color: var(--color-dark-bg);
        color: #ffffff;
        padding: 100px 0 40px;
      }
      .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 64px;
        margin-bottom: 80px;
      }
      .footer-brand {
        flex: 0 0 60%;
      }
      .footer-brand .logo {
        display: block;
        margin-bottom: 24px;
      }
      .footer-brand p {
        color: #c8d0ca;
        margin-bottom: 32px;
        font-size: 16px;
      }
      .social-links {
        display: flex;
        gap: 24px;
      }
      .social-links a {
        font-family: var(--font-mono);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-accent);
      }
      .footer-links {
        flex: 0 0 40%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .footer-col h4 {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 2px;
        color: #8a9990;
        margin-bottom: 24px;
        text-transform: uppercase;
      }
      .footer-col ul li {
        margin-bottom: 16px;
      }
      .footer-col ul li a {
        color: #e0e5e2;
        font-size: 15px;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: #ffffff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        font-size: 14px;
        color: #8a9990;
      }
      .disclaimer {
        line-height: 1.5;
      }
      .legal-badges {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .license-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: var(--color-surface);
        color: var(--color-primary);
        font-family: var(--font-mono);
        font-size: 12px;
        font-weight: 700;
        padding: 8px 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .license-badge::before {
        content: "";
        display: block;
        width: 4px;
        height: 4px;
        background-color: var(--color-primary);
      }

      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        background-color: var(--color-dark-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 900;
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      .floating-cta.visible {
        transform: translateY(0);
      }
      .floating-cta a {
        color: #ffffff;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Responsive Breakpoints */
      @media (max-width: 1023px) {
        /* Tablet */
        h1 {
          font-size: 50px;
        }
        .benefit-desc {
          margin-left: 24px;
        }
        .footer-top {
          flex-direction: column;
          gap: 48px;
        }
        .footer-brand,
        .footer-links {
          flex: 1;
        }
      }

      @media (max-width: 767px) {
        /* Mobile */
        h1 {
          font-size: 36px;
        }
        h2 {
          font-size: 32px;
        }

        .nav-links,
        .nav-auth {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero {
          padding: 120px 0 80px;
          clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        }
        .hero-layout {
          flex-direction: column;
          align-items: flex-start;
          text-align: left;
          position: relative;
        }
        .hero-left {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 0;
          opacity: 0.3;
          pointer-events: none;
        }
        .hero-right {
          flex: 1 1 auto;
          align-items: flex-start;
          text-align: left;
          padding-top: 40px;
        }

        .timeline::before {
          left: 15px;
        }
        .timeline-step {
          padding-left: 48px;
          margin-bottom: 40px;
        }
        .timeline-node {
          width: 32px;
          height: 32px;
          font-size: 16px;
        }

        .benefit-item {
          flex-direction: column;
          gap: 8px;
        }
        .benefit-title-wrapper {
          width: 100%;
        }
        .benefit-desc {
          margin-left: 0;
        }

        .req-desc {
          margin-left: 0;
          margin-top: 8px;
        }

        .section-cta .btn {
          width: 100%;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 24px;
        }
      }
