
    :root {
      --color-text-primary: #111;
      --color-text-secondary: #555;
      --color-text-tertiary: #999;
      --color-danger: #d32f2f;
      --color-positive: #2e7d32;
      --color-warning: #ed6c02;
      --color-border: #e5e5e5;
      --color-surface: #fff;
      --color-surface-raised: #fafafa;
      --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

      --font-Roboto-Condensed: 'Roboto-Condensed', 'Segoe UI', 'Helvetica Neue' , sans-serif;

      --color-primary: #00a2ff;
      --color-secondary: #000000;
      --bg-primary: #000000;
      --bg-secondary: #00a2ff;

      --noisy-bg: url("../images/svg/noise-scrambled.svg"), #00a2ff;
      --noisy-bg-only: url("../images/svg/noise-scrambled.svg");

     

      --navy: #071a30;
      --navy2: #0a2342;
      --cyan: #27c8e8;
      --cyan2: #8cecf8;
      --green: #1bc98e;
      --ink: #0c1b2a;
      --muted: #657487;
      --line: #e4ebf2;
      --paper: #f7f9fc;

      --primary: #0D9488;
      --primary-dark: #0F766E;
      --primary-light: #14B8A6;
      --accent: #ffd900;
      --accent-dark: #f1e10a;
      --bg: #F8FAFC;
      --card: #FFFFFF;
      --text: #0F172A;
      --text-muted: #64748B;
      --border: #E2E8F0;
      --gradient: linear-gradient(170deg, #00a2ff  0%, #0a3178 50%, #0a3178 50%, #00a2ff 100%, #0a3178 20%);
      --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
      --shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.12);
    }

    h1, h2, h3{
      font-family: 'Roboto-Condensed', 'Segoe UI', 'Helvetica Neue' , sans-serif !important;
    }

    /*Paddings*/
    .padding-6{
      padding: 6px;
    }

    .padding-8{
      padding: 8px;
    }

    .padding-14{
      padding: 14px;
    }

    .padding-20{
      padding: 20px;
    }

    /*Margins*/
    .margin-6{
    margin: 6px;
    }

    .margin-14{
    margin: 14px;
    }

    .margin-20{
    margin: 20px;
    }

    /*Default Widths*/
    .w-full {
    width: 100%;}

    /*Default Heights*/
    .h-full {
    height: 100%;}


    .to-blue-50 {background: var(--noisy-bg);
  color: var(--color-secondary);}

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


    /* ========== CYCLING WORD =======*/
    #cyclingWord, #cyclingWord2 {
    display: inline-block;
    color: #ffd900;
    transition: color 0.3s ease;
    }

    #cyclingWord.scrambling, #cyclingWord2.scrambling {
    opacity: 0.85;
    }

    #cyclingWord.settled,  #cyclingWord2.settled  {
    animation: wordSettle 0.45s ease;
    color: var(--accent);
    }

    @keyframes wordSettle {
    0% {
        transform: scale(0.96);
        opacity: 0.7;
    }

    60% {
        transform: scale(1.04);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
    }


    .proof {
      font-size: 12px;
      color: #ba0000;
      display: flex;
      gap: 18px;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-content: center;
      font-family: var(--font-Roboto-Condensed);
      text-transform: capitalize;
    }

    /* ========== Header ========== */
    header {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);        
        border-radius: 0 0 14px 14px;
        position: sticky;
        top: 0;
        z-index: 100;
        transition: box-shadow 0.3s ease;
    }
    
    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px !important;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.3rem;
        color: var(--color-primary);
        text-decoration: none;
        transition: opacity 0.2s ease;
    }
    
    .logo:hover {
        opacity: 0.85;
    }
    
    .logo-icon {        
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .logo-icon img {
        width: 110px;
        height: auto;
        object-fit: contain;
    }
    
    .nav-cta {
        padding: 12px 18px;
        border: none;
        border-radius: 10px;
        background: var(--noisy-bg);
        color: var(--color-secondary);
        text-decoration: none;
        font-size: 14px;
        font-family: var(--font-sans);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(13, 148, 136, 0.25);
    }
    
    .nav-cta:hover {        
        background: var(--bg-secondary);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
    }

    body {      
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    button, input {
      font: inherit;
    }

    #main.container {
      max-width: 720px;
      margin: 0 auto;
      padding: 0px;
    }

     /* ========== Hero ========== */
    .hero{
      background: var(--noisy-bg);
      color: var(--color-secondary);
      padding: 20px 20px 50px;
      position: relative;
      overflow: hidden;
      border-radius: 14px;
    }

    .salepitch {
      padding: 20px 0 110px 20px;
      position: relative;
      overflow: hidden;
      padding: 20px;
      animation: fadeInUp 0.6s 0.1s ease both;
    }
    
    /*.hero::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -15%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 65%);
      border-radius: 50%;
      animation: pulse-glow 8s ease-in-out infinite;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }*/
    
    @keyframes pulse-glow {
      0%, 100% { opacity: 0.7; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.05); }
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 740px;
    }
    
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      padding: 7px 10px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      animation: fadeInUp 0.6s ease both;
      border-radius: 6px;
    }
    
    .hero h1, h1 em {
      font-size: 36px;
      line-height: 40px;
      font-weight: 600;
      margin: 30px 0;
      animation: fadeInUp 0.6s 0.1s ease both;
      font-family: var(--font-Roboto-Condensed);
      text-align: center;
    }
    
    .hero p {
      font-size: 1.2rem;
      opacity: 0.92;
      margin-bottom: 36px;
      max-width: 600px;
      animation: fadeInUp 0.6s 0.2s ease both;
      font-family: var(--font-sans);
    }
    
    .hero-stats {
      display: flex;
      gap: 36px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      animation: fadeInUp 0.6s 0.3s ease both;
      justify-content: center;
      align-content: center;
      text-align: center;
    }


  .hero-badge {
  transition: color 0.5s ease, background 0.5s ease;
  }

  .hero-badge.pulse {
  animation: badgePulse 0.6s ease;
  }

  @keyframes badgePulse {
  0% {
      transform: scale(1);
      opacity: 1;
  }

  40% {
      transform: scale(1.08);
      opacity: 0.65;
  }

  70% {
      transform: scale(0.98);
      opacity: 1;
  }

  100% {
      transform: scale(1);
      opacity: 1;
  }
  }


  
  .stat-number {
      font-size: 46px;
      font-weight: 700;
      color: var(--accent);
      
      line-height: 1.1;
  }
  
  .stat-label {
      font-size: 0.9rem;
      opacity: 0.8;
      margin-top: 4px;
  }
  
  .cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeInUp 0.6s 0.4s ease both;
      padding:40px 20px 0 20px;
  }
  
  .btn-primary {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: url("../images/svg/noise-scrambled.svg"), var(--accent);
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }
  
  .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(245, 158, 11, 0.4);
  }
  
  .btn-secondary {
      background: #edf4f8;
      padding: 10px 20px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(8px);
  }
  
  .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(24px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* ========== Progress ========== */
  .progress-section {
      background: white;
      border-radius: 20px;
      padding: 36px;
      margin: -55px auto 70px;
      max-width: 1072px;
      box-shadow: var(--shadow);
      position: relative;
      z-index: 10;
      border: 1px solid rgba(226, 232, 240, 0.8);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .progress-section:hover {
      box-shadow: var(--shadow-hover);
  }
  
  .progress-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 18px;
      flex-wrap: wrap;
      gap: 12px;
  }
  
  .raised {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary);
      
  }
  
  .goal {
      color: var(--text-muted);
      font-size: 1rem;
  }
  
  .progress-bar {
      height: 14px;
      background: #E2E8F0;
      border-radius: 50px;
      overflow: hidden;
      margin-bottom: 14px;
  }
  
  .progress-fill {
      height: 100%;
      width: 34%;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
      border-radius: 50px;
      transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }
  
  .progress-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
  }
  
  .progress-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      color: var(--text-muted);
  }
  
  /* ========== Sections ========== */
  .section {
      padding: 90px 0;
  }
  
  .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 56px;
      padding: 0 20px;
  }
  
  .section-header h2 {
      font-size: clamp(1.9rem, 4vw, 2.4rem);
      margin-bottom: 16px;
      color: var(--text);
      font-weight: normal;
  }
  
  .section-header p {
      color: var(--text-muted);
      font-size: 16px;
  }
  
  /* ========== Problem Cards ========== */
  .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
  }
  
  .problem-card {
      background: white;
      border-radius: 18px;
      padding: 30px;
      border: 1px solid var(--border);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }
  
  .problem-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .problem-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: transparent;
  }
  
  .problem-card:hover::before {
      transform: scaleX(1);
  }
  
  .problem-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
  }
  
  .problem-card:hover .problem-icon {
      transform: scale(1.08);
  }
  
  .icon-men { background: #DBEAFE; }
  .icon-women { background: #FCE7F3; }
  .icon-teens { background: #FEF3C7; }
  
  .problem-card h3 {
      font-size: 1.25rem;
      margin-bottom: 14px;
  }
  
  .problem-card ul {
      list-style: none;
      color: var(--text-muted);
      font-size: 0.95rem;
  }
  
  .problem-card li {
      padding: 7px 0;
      padding-left: 18px;
      position: relative;
  }
  
  .problem-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 14px;
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
  }
  
  /* ========== Universal ========== */
  .universal {
      background: var(--noisy-bg);
      color: var(--bg-primary);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
      border-radius: 16px;
  }
  
  .universal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  }
  
  .universal h2 {
      text-align: center;
      font-size: clamp(1.8rem, 3.5vw, 2.2rem);
      margin-bottom: 48px;
      padding: 0 30px;
  }
  
  .universal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 22px;
      padding: 0 20px;
  }
  
  .universal-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .universal-item:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-4px);
  }
  
  .universal-item .num {
      font-size: 2.4rem;
      margin-bottom: 12px;
      display: block;
  }
  
  .universal-item p {
      font-size: 0.95rem;
      opacity: 0.85;
      line-height: 1.55;
  }
  
  /* ========== Solution ========== */
  .solution-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
  }
  
  .solution-card {
      background: white;
      border-radius: 18px;
      padding: 32px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .solution-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary), var(--primary-light));
      transition: width 0.3s ease;
  }
  
  .solution-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: transparent;
  }
  
  .solution-card:hover::before {
      width: 5px;
  }
  
  .solution-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
  }
  
  .solution-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 18px;
      line-height: 1.6;
  }
  
  .solution-card .tag {
      display: inline-block;
      background: #ECFDF5;
      color: var(--primary-dark);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: background 0.2s ease;
  }
  
  .solution-card:hover .tag {
      background: #D1FAE5;
  }
  
  /* ========== Impact ========== */
  .impact {
      background: linear-gradient(180deg, #F0FDFA 0%, var(--bg) 100%);
  }
  
  .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 28px;
      text-align: center;
  }
  
  .impact-item {
      padding: 28px 16px;
      transition: transform 0.3s ease;
  }
  
  .impact-item:hover {
      transform: scale(1.04);
  }
  
  .impact-item .value {
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--primary);
      
      line-height: 1.1;
  }
  
  .impact-item .label {
      color: var(--text-muted);
      margin-top: 10px;
      font-size: 0.95rem;
  }
  
  /* ========== Donation CTA ========== */
  .final-cta {
      background: var(--gradient);
      color: white;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
      border-radius: 50%;
  }
  
  .final-cta h2 {
      font-size: clamp(1.9rem, 4vw, 2.4rem);
      margin-bottom: 16px;
      position: relative;
  }
  
  .final-cta > .container > p {
      font-size: 1.15rem;
      opacity: 0.9;
      max-width: 560px;
      margin: 0 auto 36px;
      position: relative;
  }
  
  .tiers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin: 48px 0 0;
      text-align: left;
      position: relative;
  }
  
  .tier {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 28px;
      backdrop-filter: blur(12px);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tier:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }
  
  .tier h4 {
      font-size: 1.15rem;
      margin-bottom: 6px;
  }
  
  .tier .amount {
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 16px;
      
  }
  
  .tier ul {
      list-style: none;
      font-size: 0.92rem;
      opacity: 0.9;
  }
  
  .tier li {
      padding: 5px 0;
      padding-left: 22px;
      position: relative;
  }
  
  .tier li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
  }

  /* Hero */
  .hero-badge {
      position: relative;
      display: inline-flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items:center;            
      justify-items: center;
      justify-content: center;
      align-content: center;
      align-self: flex-end;
      justify-self:right;
      font-size: 12px;
      font-weight: 500;
      color: var(--accent);
      background: color-mix(in srgb, var(--color-danger) 10%, transparent);      
      border-radius: 6px;
      letter-spacing: 0.02em;            
      /*width: 100px;*/
      height: auto;
      padding: 6px;
  }

  .hero-badge {
  transition: color 0.8s ease, background 0.8s ease;
}

.hero-badge.pulse {
  animation: badgePulse 0.8s ease;
}

@keyframes badgePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}


    .hero-badge svg {
      width: 14px;
      height: 14px;
    }

    .hero-title {
      font-size: 36px;
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      color: var(--color-text-primary);
    }

    .hero-sub {
      font-size: 16px;
      line-height: 24px;
      color: var(--color-text-secondary);
      margin-bottom: 28px;
      max-width: 560px;
      animation: fadeInUp 0.6s 0.1s ease both;
    }

    /* Email Form */
    .signup-card {
      border: 1px solid var(--color-border);
      border-radius: 12px;
      padding: 20px;
      background: var(--color-surface-raised);
      margin-bottom: 32px;
    }

    .signup-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text-primary);
      margin-bottom: 10px;
      display: block;
    }

    .input-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .email-input {
      flex: 1 1 220px;
      padding: 10px 14px;
      border: 1px solid var(--color-border);
      border-radius: 10px;
      font-size: 15px;
      outline: none;
      background: var(--color-surface);
      color: var(--color-text-primary);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .email-input::placeholder {
      color: var(--color-text-tertiary);
    }

    .email-input:focus {
      border-color: var(--color-text-primary);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-text-primary) 8%, transparent);
    }

    .email-input.error {
      border-color: var(--color-danger);
    }

    .submit-btn {
      padding: 10px 20px;
      border: none;
      border-radius: 10px;
      background: var(--noisy-bg);
      color: var(--color-surface);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .submit-btn:hover {
      opacity: 0.85;
    }

    .submit-btn:active {
      transform: scale(0.98);
    }

    .submit-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .submit-btn svg {
      width: 16px;
      height: 16px;
    }

    .error-msg {
      font-size: 12px;
      color: var(--color-danger);
      margin-top: 6px;
      display: none;
    }

    .success-state {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 14px;
      border-radius: 10px;
      background: color-mix(in srgb, var(--color-positive) 8%, transparent);
      border: 1px solid color-mix(in srgb, var(--color-positive) 20%, transparent);
      color: var(--color-positive);
      font-size: 14px;
      font-weight: 500;
    }

    .success-state svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* Alert Ticker */
    .ticker-wrap {
      overflow: hidden;
      /*border-top: 1px solid var(--color-border);*/
      /*border-bottom: 1px solid var(--color-border);*/
      padding: 10px 0;
      margin: 0 -20px;
      background: var(--color-surface);
    }

    .ticker-track {
      display: flex;
      gap: 32px;
      width: max-content;
      animation: scroll 28s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--color-text-secondary);
      white-space: nowrap;
      font-family: var(--font-sans);
    }

    .ticker-item .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-danger);
      flex-shrink: 0;
    }

    .ticker-item .time {
      color: var(--color-text-tertiary);
      font-size: 12px;
    }

    /* Stats */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
      padding: 0 20px;
      margin-bottom: 32px;
    }

    .stat-box {
      text-align: center;
      padding: 16px;
      border: 1px solid var(--color-border);
      border-radius: 10px;
    }

    .stat-num {
      font-size: 28px;
      font-weight: 500;
      line-height: 1.1;
      color: var(--color-text-primary);
      font-variant-numeric: tabular-nums;
      font-feature-settings: 'tnum' 1;
    }

    .stat-label {
      font-size: 16px;
      color: var(--color-text-primary);
      margin-top: 4px;
    }

    /* Features */
    .section-title {
      font-size: 17px;
      font-weight: 500;
      margin-bottom: 14px;
      color: var(--color-text-primary);
      padding: 40px 20px 0 20px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 12px;
      margin-bottom: 32px;
      padding: 0 20px;
    }

    .feature-card {
      border: 1px solid var(--color-border);
      border-radius: 10px;
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      transition: background 0.2s;
    }

    .feature-card:hover {
      background: var(--color-surface-raised);
    }

    .feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: color-mix(in srgb, var(--color-text-primary) 6%, transparent);
      color: var(--color-text-primary);
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
    }

    .feature-icon.red {
      background: color-mix(in srgb, var(--color-danger) 10%, transparent);
      color: var(--color-danger);
    }

    .feature-icon.green {
      background: color-mix(in srgb, var(--color-positive) 10%, transparent);
      color: var(--color-positive);
    }

    .feature-icon.orange {
      background: color-mix(in srgb, var(--color-warning) 10%, transparent);
      color: var(--color-warning);
    }

    .feature-title {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 2px;
      color: var(--color-text-primary);
    }

    .feature-desc {
      font-size: 13px;
      color: var(--color-text-secondary);
      line-height: 1.45;
    }

    /* Trust footer */
    .trust-bar {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 16px;
      border-top: 1px solid var(--color-border);
      font-size: 12px;
      color: var(--color-text-tertiary);
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .trust-item svg {
      width: 14px;
      height: 14px;
    }

    @media (max-width: 480px) {
      
      .hero-title {
        font-size: 34px;
        padding: 20px 0;
        animation: fadeInUp 0.6s 0.1s ease both;
      }
      .container {
        animation: fadeInUp 0.6s 0.1s ease both;
        /*padding-top: 32px;*/
      }
      .input-row {
        flex-direction: row;
        animation: fadeInUp 0.6s 0.1s ease both;
      }
      .submit-btn {
        width: 100%;
        justify-content: center;
        animation: fadeInUp 0.6s 0.1s ease both;
      }
    }





    /* extra */
      
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        color: var(--ink); 
        font-family: var(--font-sans);       
      }

      a {
        text-decoration: none;
        color: inherit;
      }
      .top {
        height: 42px;
        background: var(--navy);
        color: #d9e7f4;
        display: grid;
        place-items: center;
        font-size: 13px;
      }
      .top i {
        display: inline-block;
        width: 7px;
        height: 7px;
        background: var(--cyan);
        border-radius: 50%;
        margin-right: 8px;
        box-shadow: 0 0 15px var(--cyan);
      }
      nav {
        height: 76px;
        max-width: 1200px;
        margin: auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;              
        border-radius: 0 0 14px 14px;
      }
      .navwrap {
        position: sticky;
        top: 0;
        z-index: 10;
        background: #fff;
        border-bottom: 1px solid var(--line);        
        border-radius: 0 0 14px 14px;
      }
      
      .brand {
        font: 800 20px Manrope;
        letter-spacing: -0.05em;
        display: flex;
        align-items: center;
        gap: 9px;
      }
      .brand b {
        color: var(--cyan);
      }
      .mark {
        width: 34px;
        height: 40px;
      }
      .links {
        display: flex;
        gap: 30px;
        color: #566679;
        font-size: 14px;
        font-weight: 600;
      }

      .links a:hover {
        color: var(--navy);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 10px;
        padding: 12px 18px;
        font-size: 14px;
        cursor: pointer;
      }

      .dark {
        background: url("../images/svg/noise-scrambled.svg"), var(--accent);
      }

      .soft {
        background: #edf4f8;
        color: var(--navy);
      }

      .cyan {
        background: var(--cyan);
        color: #06202a;
      }
      
      /*.hero {
        overflow: hidden;
        background:
          radial-gradient(circle at 78% 25%, #27c8e81e, transparent 30%),
          linear-gradient(#fff, #f7fbfd);
      }*/

      .hero-inner {
        max-width: 1200px;
        margin: auto;
        padding: 92px 24px 72px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 65px;
        align-items: center;
      }


      .eyebrow {
        display: inline-flex;
        align-items: center;        
        border: 1px solid #dce8ee;
        border-radius: 999px;
        padding: 7px 11px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #456172;
        gap: 8px;
      }

      .eyebrow i {
        width: 7px;
        height: 7px;
        background: var(--green);
        border-radius: 50%;
        font-family: "DM Sans",sans-serif;
        /*font-family: var(--font-sans);*/
      }

      /*h1 {
        font: 800 clamp(48px, 6vw, 78px)/0.98 Manrope;
        letter-spacing: -0.065em;
        color: var(--navy);
        margin: 22px 0;
      }*/
      h1 em {
        color: var(--color-secondary);
        font-style: normal;
      }

      .lead {
        max-width: 610px;
        color: var(--color-secondary);
        font-size: 18px;
        line-height: 1.7;
      }
      .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin: 28px 0;
      }
      .proof {
        font-size: 14px;
        display: flex;
        gap: 18px;
      }
      .proof b {
        color: var(--color-secondary);
      }
      .stage {
        min-height: 470px;
        display: grid;
        place-items: center;
        position: relative;
      }
      .orbit {
        position: absolute;
        width: 430px;
        height: 430px;
        border: 1px solid #27c8e82d;
        border-radius: 50%;
      }
      .orbit:after {
        content: "";
        position: absolute;
        inset: -42px;
        border: 1px solid #071a3010;
        border-radius: 50%;
      }
      .shield {
        width: 350px;
        aspect-ratio: 1/1.08;
        border-radius: 32px;
        background: linear-gradient(145deg, #0d3156, #061629);
        box-shadow: 0 35px 80px #071a303d;
        display: grid;
        place-items: center;
        position: relative;
        overflow: hidden;
      }
      .shield svg {
        width: 205px;
        filter: drop-shadow(0 15px 25px #27c8e83d);
      }
      .status {
        position: absolute;
        bottom: 22px;
        left: 22px;
        right: 22px;
        padding: 12px 14px;
        background: #ffffff10;
        border: 1px solid #ffffff1c;
        border-radius: 14px;
        color: #fff;
        font-size: 12px;
        display: flex;
        justify-content: space-between;
      }
      .status span:before {
        content: "";
        display: inline-block;
        width: 7px;
        height: 7px;
        background: var(--green);
        border-radius: 50%;
        margin-right: 7px;
      }
      .scan {
        max-width: 1040px;
        margin: -18px auto 0;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 25px 70px #071a3014;
        padding: 27px;
        position: relative;
      }
      /* .scan h2 {
       font: 700 24px Manrope;
        margin: 0;
      }
      .scan p {
        color: var(--muted);
        font-size: 13px;
        margin: 7px 0 18px;
      }*/
      .form {
        display: flex;
        gap: 10px;
      }
      .form input {
        flex: 1;
        border: 1px solid #dce4eb;
        border-radius: 13px;
        padding: 15px;
        outline: none;
      }
      .form input:focus {
        border-color: var(--cyan);
        box-shadow: 0 0 0 4px #27c8e81a;
      }
      .result {
        display: none;
        margin-top: 12px;
        background: #eafaf4;
        color: #126d51;
        padding: 13px;
        border-radius: 12px;
        font-size: 13px;
      }
      .result.show {
        display: block;
      }
      .stats {
        max-width: 1200px;
        margin: auto;
        padding: 72px 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .stat {
        padding: 10px 25px;
        /*border-left: 1px solid var(--line);*/
      }
      .stat:first-child {
        border: 0;
      }
      .stat strong {
        display: block;
        /*font: 800 36px Manrope;*/
        letter-spacing: -0.05em;
        color: var(--navy);
      }
      .stat span {
        font-size: 13px;
        color: var(--muted);
      }
      section.block {
        padding: 90px 24px;
        border-radius: 14px;
        background: var(--noisy-bg-only);
      }
      .alt {
        background: var(--paper);
      }
      .inner {
        max-width: 1150px;
        margin: auto;
      }
      .kicker {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #138da7;
      }
      .block h2 {
       /* font: 800 clamp(35px, 4vw, 54px)/1.04 Manrope;
        letter-spacing: -0.06em;*/
        color: var(--navy);
        max-width: 760px;
        margin: 12px 0 18px;
      }

      .intro {
        color: var(--muted);
        max-width: 680px;
        line-height: 1.7;
      }

      .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 45px;
      }

      .card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 21px;
        padding: 27px;
        min-height: 220px;
      }

      .icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: #e8faff;
        color: #0888a5;
        display: grid;
        place-items: center;
        font-weight: 800;
        font-size: 20px;
        margin-bottom: 24px;
      }

      .card h3 {
        /*font: 700 19px Manrope;*/
        color: var(--navy);
        margin: 0 0 9px;
      }

      .card p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--muted);
        margin: 0;
      }

      .split {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 70px;
        align-items: center;
      }

      .checks {
        display: grid;
        gap: 15px;
        margin-top: 27px;
      }

      .check {
        display: flex;
        gap: 11px;
        color: #536477;
        font-size: 14px;
        line-height: 1.5;
      }

      .check b {
        width: 23px;
        height: 23px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #e8faf4;
        color: #14966d;
        flex: 0 0 23px;
      }

      .dash {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 25px 65px #071a3012;
        padding: 18px;
      }

      .dashhead {
        display: flex;
        justify-content: space-between;
        padding: 7px 5px 17px;
        border-bottom: 1px solid var(--line);
        font: 700 14px Manrope;
      }

      .live {
        font: 600 11px;
        color: #148861;
        background: #e8faf4;
        padding: 7px 10px;
        border-radius: 99px;
      }

      .dashgrid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 12px;
        padding-top: 12px;
      }

      .panel {
        background: #f8fafc;
        border: 1px solid #edf1f5;
        border-radius: 15px;
        padding: 15px;
      }

      .label {
        font-size: 11px;
        color: #788798;
      }

      .num {
        /*font: 800 29px Manrope;*/
        color: var(--navy);
        margin: 7px 0 15px;
      }

      .bars {
        height: 80px;
        display: flex;
        gap: 7px;
        align-items: end;
      }

      .bars i {
        flex: 1;
        background: linear-gradient(#28cce9, #0b86a4);
        border-radius: 6px 6px 2px 2px;
      }

      .threat {
        background: #fff;
        border: 1px solid #e8edf2;
        border-radius: 9px;
        padding: 9px;
        font-size: 10px;
        margin-top: 7px;
        display: flex;
        justify-content: space-between;
      }

      .threat b {
        color: #d65b5b;
      }

      .cta {
        max-width: 1150px;
        margin: auto;
        border-radius: 28px;
        padding: 65px 50px;
        background:
          radial-gradient(circle at 85% 20%, #27c8e82e, transparent 28%),
          linear-gradient(135deg, #071a30, #0d3154);
        color: #fff;
      }

      .cta h2 {
        color: #fff;
        margin: 12px 0;
      }

      .cta p {
        color: #b8c8d8;
        max-width: 650px;
        line-height: 1.7;
      }

      footer {
        background: #061522;
        color: #98adbf;
        padding: 48px 24px 28px;        
        border-radius: 14px;
      }

      .foot {
        max-width: 1150px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        gap: 40px;
      }

      .foot p {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.6;
      }

      .footlinks {
        display: flex;
        gap: 55px;
      }

      .footcol {
        display: grid;
        gap: 10px;
        font-size: 13px;
      }

      .footcol strong {
        color: #fff;
      }

      .bottom {
        max-width: 1150px;
        margin: 35px auto 0;
        padding-top: 18px;
        border-top: 1px solid #ffffff12;
        font-size: 11px;
        display: flex;
        justify-content: space-between;
      }

      .mobile {
        display: none;
      }

      @media (max-width: 850px) {
        .links {
          display: none;
        }
        .hero-inner,
        .split {
          grid-template-columns: 1fr;
        }
        .hero-inner {
          padding-top: 55px;
        }
        .stage {
          min-height: 400px;
        }
        .cards {
          grid-template-columns: 1fr 1fr;
        }
        .stats {
          grid-template-columns: 1fr 1fr;
        }
        .stat:nth-child(3) {
          border: 0;
        }
        .foot {
          flex-direction: column;
        }
        .mobile {
          display: block;
        }
        .mobile nav {
          height: auto;
          padding: 14px 24px;
        }
        .mobile .links {
          display: grid;
          padding: 10px 24px 20px;
          gap: 15px;
        }
      }
      @media (max-width: 600px) {
        nav {
          padding: 0 18px;
        }
        .hero-inner {
          padding: 55px 18px 45px;
        }
        .stage {
          min-height: 350px;
        }
        .shield {
          width: 285px;
        }
        .orbit {
          width: 330px;
          height: 330px;
        }
        .scan {
          margin: 15px;
          padding: 20px;
        }
        .form {
          flex-direction: column;
        }
        .stats {
          padding: 55px 18px;
        }
        .stat {
          padding: 10px 14px;
        }
        .stat strong {
          font-size: 28px;
        }
        .cards {
          grid-template-columns: 1fr;
        }
        .block {
          padding-left: 18px !important;
          padding-right: 18px !important;
        }
        .dashgrid {
          grid-template-columns: 1fr;
        }
        .cta {
          padding: 45px 25px;
        }
        .footlinks {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 25px;
        }
        .bottom {
          display: block;
        }
        .bottom span {
          display: block;
          margin-top: 8px;
        }
      }