    /* -------------------- RESET & MODERN VARIABLES -------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --deep-navy: #0f1a2f;
      --rich-gold: #e4b363;
      --soft-coral: #ff7b6b;
      --mist-aqua: #6c9ebf;
      --fresh-lavender: #9b8cbc;
      --warm-sand: #f4efe9;
      --pure-white: #ffffff;
      --charcoal: #2e3532;
      --gradient-1: linear-gradient(135deg, #0f1a2f 0%, #1d3355 100%);
      --gradient-2: linear-gradient(120deg, #ff7b6b 0%, #e4b363 100%);
      --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.2);
      --shadow-md: 0 20px 40px -20px rgba(0,0,0,0.3);
      --shadow-glow: 0 0 0 2px rgba(228, 179, 99, 0.3);
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--warm-sand);
      color: var(--deep-navy);
      line-height: 1.5;
      overflow-x: hidden;
    }

    
.section-eyebrow.rich-gold {
    color: var(--rich-gold);
}

.section-title.pure-white {
    color: var(--pure-white);
}

    .custom-aside {
      text-align: center;
      margin-top: 3rem;
      color: #6b7280;
    }

    .collection-par-text {
      color: #4a5568;
      max-width: 600px;
      margin: 0 auto;
    }

    .hero-p-div {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .hero-p-text {
      margin-top: 1rem;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* Import Inter font */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

    /* -------------------- CONTAINER & UTILITY -------------------- */
    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
    }

    /* -------------------- DECORATIVE BACKGROUND ELEMENTS -------------------- */
    .bg-pattern {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
      background: 
        radial-gradient(circle at 20% 30%, rgba(228, 179, 99, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(108, 158, 191, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(155, 140, 188, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.01) 0px, rgba(0,0,0,0.01) 2px, transparent 2px, transparent 8px);
    }

    /* -------------------- HEADER & NAV -------------------- */
    .site-header {
      padding: 2rem 0 1rem;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(228, 179, 99, 0.2);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .breadcrumb {
      margin-bottom: 1.5rem;
    }

    .breadcrumb ol {
      display: flex;
      list-style: none;
      gap: 0.5rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .breadcrumb li {
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .breadcrumb li:not(:last-child)::after {
      content: "→";
      margin-left: 0.5rem;
      color: var(--rich-gold);
      font-weight: 300;
    }

    .breadcrumb a {
      color: var(--deep-navy);
      text-decoration: none;
      font-weight: 500;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .breadcrumb a:hover {
      background: rgba(228, 179, 99, 0.15);
      color: var(--rich-gold);
    }

    .breadcrumb li[aria-current="page"] {
      color: var(--mist-aqua);
      font-weight: 600;
      background: rgba(108, 158, 191, 0.1);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
    }

    .header-content {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .title-group {
      display: flex;
      flex-direction: column;
    }

    .page-title {
      font-size: 4.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .page-sigil {
      font-size: 1rem;
      font-weight: 400;
      color: var(--mist-aqua);
      letter-spacing: 0.4em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    .header-accent {
      display: flex;
      gap: 1rem;
    }

    .pill {
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 0.9rem;
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(228,179,99,0.3);
      color: var(--deep-navy);
    }

    .pill-highlight {
      background: var(--gradient-2);
      color: var(--deep-navy);
      border: none;
      font-weight: 600;
    }

    /* -------------------- HERO SECTION -------------------- */
    .hero {
      padding: 3rem 0 2rem;
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }

    .hero-text {
      flex: 2;
      min-width: 300px;
    }

    .hero-tagline {
      display: inline-block;
      background: rgba(228,179,99,0.2);
      color: var(--rich-gold);
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(228,179,99,0.4);
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--deep-navy);
    }

    .hero-title span {
      color: var(--soft-coral);
      background: linear-gradient(145deg, var(--soft-coral), var(--rich-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.25rem;
      color: #4a5568;
      max-width: 600px;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--deep-navy);
      line-height: 1.2;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-visual {
      flex: 1;
      min-width: 250px;
      background: var(--gradient-2);
      padding: 2rem;
      border-radius: 30px;
      color: var(--deep-navy);
      box-shadow: var(--shadow-md);
      transform: rotate(2deg);
      transition: transform 0.3s ease;
    }

    .hero-visual:hover {
      transform: rotate(0deg) scale(1.02);
    }

    .visual-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .visual-block {
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(4px);
      border-radius: 16px;
      padding: 1rem;
      font-weight: 600;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.4);
      transition: all 0.2s ease;
      text-decoration: none;
      color: var(--deep-navy);
      display: block;
    }

    .visual-block:hover {
      background: rgba(255,255,255,0.4);
      transform: scale(1.05);
      border-color: var(--deep-navy);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* -------------------- TOOLS SECTION -------------------- */
    .tools-section {
      padding: 4rem 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-eyebrow {
      color: var(--mist-aqua);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--deep-navy);
      margin-bottom: 1rem;
    }

    .section-divider {
      width: 80px;
      height: 4px;
      background: var(--gradient-2);
      margin: 1.5rem auto;
      border-radius: 2px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .tool-card {
      background: var(--pure-white);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(228,179,99,0.1);
      position: relative;
      overflow: hidden;
    }

    .tool-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-2);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .tool-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
      border-color: rgba(228,179,99,0.3);
    }

    .tool-card:hover::before {
      opacity: 1;
    }

    .tool-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      background: rgba(228,179,99,0.1);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
    }

    .tool-name {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--deep-navy);
      margin-bottom: 1rem;
    }

    .tool-name a {
      color: inherit;
      text-decoration: none;
    }

    .tool-name a:hover {
      color: var(--rich-gold);
    }

    .tool-summary {
      color: #4a5568;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .tool-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: auto;
    }

    .tool-tag {
      background: var(--warm-sand);
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.85rem;
      color: var(--deep-navy);
      font-weight: 500;
      border: 1px solid rgba(0,0,0,0.05);
    }

    /* -------------------- FEATURES SECTION -------------------- */
    .features-section {
      background: var(--deep-navy);
      color: var(--pure-white);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .features-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 50%, rgba(228,179,99,0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .feature-item {
      text-align: center;
    }

    .feature-emoji {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      background: rgba(255,255,255,0.1);
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 40px;
      margin: 0 auto 1.5rem;
      border: 1px solid rgba(228,179,99,0.3);
    }

    .feature-title {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--rich-gold);
    }

    .feature-desc {
      color: #a0aec0;
      line-height: 1.6;
    }

    /* -------------------- CTA SECTION -------------------- */
    .cta-section {
      padding: 5rem 0;
      background: linear-gradient(145deg, var(--warm-sand) 0%, #fff 100%);
      text-align: center;
    }

    .cta-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--deep-navy);
      margin-bottom: 1.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .custom-cta-p {
      font-size: 1.2rem;
      color: #4a5568;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary {
      background: var(--gradient-2);
      color: var(--deep-navy);
      box-shadow: 0 10px 20px -8px rgba(228,179,99,0.4);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 30px -8px rgba(228,179,99,0.6);
    }

    .btn-secondary {
      background: transparent;
      color: var(--deep-navy);
      border: 2px solid var(--rich-gold);
    }

    .btn-secondary:hover {
      background: var(--rich-gold);
      color: var(--deep-navy);
    }

    /* -------------------- FOOTER -------------------- */
    .site-footer {
      background: var(--pure-white);
      padding: 3rem 0;
      border-top: 1px solid rgba(228,179,99,0.2);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 700;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
    }

    .footer-links a {
      color: var(--charcoal);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--rich-gold);
    }

    .footer-legal {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    /* -------------------- RESPONSIVE -------------------- */
    @media (max-width: 768px) {
      .page-title {
        font-size: 3rem;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-visual {
        transform: none;
      }
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }