:root {
      --main: #1c3d5d;
      --main-soft: rgba(28, 61, 93, 0.08);
      --accent: #fe9623;
      --accent-soft: rgba(254, 150, 35, 0.13);
      --bg: #f5f7fb;
      --bg-card: #ffffff;
      --text-main: #07131f;
      --text-muted: #5b6b7a;
      --border-subtle: rgba(12, 25, 40, 0.09);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --shadow-soft: 0 30px 80px rgba(6, 20, 35, 0.2);
      --shadow-subtle: 0 18px 40px rgba(6, 20, 35, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text-main);
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--accent-soft);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout shell */
    .page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px 0;
    position: relative;
    z-index: 1;
}
    /* Background layers (expensive but minimal) */
    .bg-layer {
      position: fixed;
      inset: -40%;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 5% 0, rgba(28, 61, 93, 0.16), transparent 55%),
        radial-gradient(circle at 90% 0, rgba(254, 150, 35, 0.18), transparent 60%),
        radial-gradient(circle at 50% 110%, rgba(28, 61, 93, 0.16), transparent 60%);
      opacity: 0.9;
    }

    .bg-grid {
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(5, 19, 33, 0.03) 1px, transparent 1px),
        linear-gradient(to right, rgba(5, 19, 33, 0.024) 1px, transparent 1px);
      background-size: 100% 56px, 64px 100%;
      opacity: 0.7;
      pointer-events: none;
      z-index: 0;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 25% 20%, #fff, #fe9623 40%, #1c3d5d 100%);
      box-shadow: 0 16px 34px rgba(6, 20, 35, 0.3);
      position: relative;
      overflow: hidden;
    }

    .brand-icon::after {
      content: "";
      position: absolute;
      inset: 7px;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.7);
      opacity: 0.8;
    }

    .brand-name {
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--main);
    }

    .brand-tagline {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 1rem;
    }

    .nav a {
      position: relative;
      padding-bottom: 3px;
      color: var(--text-muted);
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), var(--main));
      transition: width 0.25s ease;
    }

    .nav a:hover::after {
      width: 100%;
    }

.nav-cta {
    border: 1px solid rgba(28, 61, 93, 0.2);
    background: rgba(255, 255, 255, 0.96);
    color: var(--main);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(6, 20, 35, 0.22);
      border-color: rgba(28, 61, 93, 0.35);
    }

    /* Hero */
    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 44px;
      align-items: center;
      margin-bottom: 90px;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px 5px 5px;
      border-radius: 999px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(255, 255, 255, 0.96);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .hero-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff, var(--accent));
      box-shadow: 0 0 14px rgba(254, 150, 35, 0.9);
      animation: dotPulse 2s infinite ease-in-out;
    }

    @keyframes dotPulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.6; }
      100% { transform: scale(1); opacity: 1; }
    }
.hero-title {
    font-size: clamp(2.8rem, 4vw + 0.4rem, 3.9rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 16px;
}
    .hero-title span {
      color: var(--main);
    }

    .hero-sub {
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 34rem;
      margin-bottom: 16px;
    }

    .hero-support {
      font-size: 0.96rem;
      line-height: 1.8;
      color: #27394b;
      max-width: 34rem;
      margin-bottom: 24px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 16px;
    }

    .btn-primary {
      position: relative;
      padding: 13px 26px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(120deg, var(--main), #0f2436);
      color: #fff;
      font-size: 0.96rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 60%);
      opacity: 0;
      transform: translateX(-40%);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 36px 80px rgba(6, 20, 35, 0.35);
    }

    .btn-primary:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
.btn-secondary {
    border: 1px solid rgba(28, 61, 93, 0.2);
    background: rgba(255, 255, 255, 0.96);
    color: var(--main);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

    .btn-secondary:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-subtle);
      border-color: rgba(28, 61, 93, 0.4);
    }

    .hero-footnote {
      font-size: 0.84rem;
      color: var(--text-muted);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .hero-chip {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(255, 255, 255, 0.96);
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--main);
    }

    /* HERO VISUAL (images & animation) */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1200px;
    }

.hero-layer {
    border-radius: 32px;
    overflow: hidden;
    animation: panelFloat 18s infinite ease-in-out;
}

    @keyframes panelFloat {
      0% { transform: translate3d(0, 8px, 0) rotateX(14deg) rotateY(-12deg); }
      50% { transform: translate3d(0, -6px, 0) rotateX(10deg) rotateY(-4deg); }
      100% { transform: translate3d(0, 8px, 0) rotateX(14deg) rotateY(-12deg); }
    }

    .hero-layer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 0 0, rgba(254, 150, 35, 0.18), transparent 55%),
        radial-gradient(circle at 120% 100%, rgba(28, 61, 93, 0.2), transparent 60%);
      opacity: 0.9;
    }

    .hero-mini-card {
      border-radius: 20px;
      padding: 14px 14px 12px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(28, 61, 93, 0.1);
      box-shadow: 0 18px 40px rgba(6, 20, 35, 0.12);
    }

    .hero-mini-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--main);
      margin-bottom: 4px;
    }

    .hero-mini-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .hero-mini-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      margin-bottom: 4px;
    }

    .hero-mini-label {
      color: var(--text-muted);
    }

    .hero-mini-value.bad {
      color: #c5333e;
      font-weight: 600;
    }

    .hero-mini-value.good {
      color: var(--accent);
      font-weight: 600;
    }

    .hero-score-bar {
      position: relative;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, #c5333e, #ffc457, #37b777);
      margin-top: 8px;
      overflow: hidden;
    }

    .hero-score-dot {
      position: absolute;
      top: -4px;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      border: 2px solid #fff;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(254, 150, 35, 0.25);
      transform: translateX(60%);
      animation: scoreDrift 4.5s infinite ease-in-out;
    }

    @keyframes scoreDrift {
      0% { transform: translateX(52%); }
      50% { transform: translateX(70%); }
      100% { transform: translateX(52%); }
    }

    .hero-note {
      margin-top: 8px;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-note strong {
      color: var(--main);
    }
    .hero-content-inner img {
    width: 100%;
}

    /* Inline "image" – stylized SVG device/dashboard */
    .hero-illustration {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(28, 61, 93, 0.1);
      padding: 12px;
      box-shadow: 0 22px 45px rgba(6, 20, 35, 0.16);
      position: relative;
      overflow: hidden;
    }

    .hero-illustration svg {
      width: 100%;
      display: block;
    }

    .hero-tag-float {
      position: absolute;
      right: 12px;
      bottom: 10px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(28, 61, 93, 0.96);
      color: #fff;
      font-size: 0.72rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 14px 35px rgba(6, 20, 35, 0.4);
      animation: floatTag 9s infinite ease-in-out;
    }

    .hero-tag-float::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 9px rgba(254, 150, 35, 0.9);
    }

    @keyframes floatTag {
      0% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(-6px); opacity: 0.96; }
      100% { transform: translateY(0); opacity: 1; }
    }

    .hero-avatar-row {
      position: absolute;
      left: 16px;
      bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .hero-avatar-stack {
      display: flex;
    }

    .hero-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: linear-gradient(135deg, #fe9623, #fdd3a0);
      box-shadow: 0 4px 10px rgba(6, 20, 35, 0.35);
      margin-left: -8px;
    }

    .hero-avatar:first-child {
      margin-left: 0;
      background: linear-gradient(135deg, #1c3d5d, #3f6f9c);
    }

    /* Sections */
    section {
      margin-bottom: 80px;
      position: relative;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .section-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 1.85rem;
      letter-spacing: -0.03em;
      color: var(--main);
    }

    .section-sub {
      max-width: 26rem;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .card-block {
      border-radius: var(--radius-xl);
      padding: 22px 24px 24px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: var(--shadow-subtle);
      border: 1px solid var(--border-subtle);
      position: relative;
      overflow: hidden;
    }

    .card-block::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 0 0, rgba(254, 150, 35, 0.12), transparent 65%),
        radial-gradient(circle at 100% 100%, rgba(28, 61, 93, 0.12), transparent 60%);
      opacity: 0.7;
      pointer-events: none;
    }

    /* How it works steps */
    .steps-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step-card {
      border-radius: var(--radius-lg);
      padding: 16px 14px 16px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(252, 254, 255, 0.98);
      position: relative;
      overflow: hidden;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .step-number {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(28, 61, 93, 0.3);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--main);
      background: #fff;
      margin-bottom: 6px;
    }

    .step-title {
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
      font-size: 0.95rem;
    }

    .step-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(254, 150, 35, 0.2), transparent 60%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .step-card:hover::before {
      opacity: 1;
    }

    /* Who it's for */
    .who-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .who-card {
      border-radius: var(--radius-lg);
      padding: 18px 16px 16px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(252, 254, 255, 0.98);
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .who-card h3 {
      font-size: 1.02rem;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .who-cta {
      margin-top: 18px;
      font-size: 0.93rem;
      color: var(--text-main);
    }

    .who-cta span {
      color: var(--accent);
      font-weight: 600;
    }

    /* Benefits */
    .benefit-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .benefit-card {
      border-radius: var(--radius-lg);
      padding: 16px 14px 16px;
      border: 1px solid rgba(28, 61, 93, 0.14);
      background: rgba(252, 254, 255, 0.99);
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
      position: relative;
      overflow: hidden;
    }

    .benefit-card h3 {
      font-size: 1rem;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .benefit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0 0, rgba(254, 150, 35, 0.16), transparent 65%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .benefit-card:hover::before {
      opacity: 1;
    }

    .benefit-cta-row {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    /* Platform & app */
    .platform-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 20px;
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.9;
    }
.platform-grid ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.platform-grid ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    flex-direction: column;
    border: 1px solid #dce4e8;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    width: 32%;
    flex-wrap: wrap;
}
.platform-grid ul li i {
    width: 50px;
    height: 50px;
    background-color: #ff9638;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
    .platform-note {
      margin-top: 16px;
      font-size: 0.93rem;
      color: var(--text-main);
    }

    /* About */
    .about-body {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.9;
      max-width: 48rem;
    }

    .mission-box {
      margin-top: 4px;
      padding: 12px 13px;
      border-radius: 14px;
      border-left: 3px solid var(--accent);
      background: rgba(252, 254, 255, 0.98);
      color: var(--text-main);
      font-size: 0.92rem;
    }

    /* FAQ */
    .faq-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .faq-item {
      border-radius: var(--radius-lg);
      padding: 16px 14px 15px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(252, 254, 255, 0.98);
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .faq-item h3 {
      font-size: 0.98rem;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    /* Waitlist */
    .waitlist-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: flex-start;
    }

    .waitlist-copy {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.9;
    }

    form {
      display: grid;
      gap: 12px;
      font-size: 0.9rem;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    label {
      font-size: 0.86rem;
      color: var(--text-main);
    }

    input, select, textarea {
      border-radius: 14px;
      border: 1px solid rgba(28, 61, 93, 0.16);
      background: rgba(252, 254, 255, 0.98);
      padding: 9px 11px;
      font: inherit;
      color: var(--text-main);
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(91, 107, 122, 0.7);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--main);
      box-shadow: 0 0 0 1px rgba(28, 61, 93, 0.22);
      background: #ffffff;
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    .helper-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .footer {
      margin-top: 30px;
      padding: 18px 0;
      border-top: 1px solid rgba(28, 61, 93, 0.16);
      font-size: 0.82rem;
      color: var(--text-muted);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer a {
      color: var(--main);
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .reveal-stagger.visible > * {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
    .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
    .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
    .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
    .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.brand img {
    width: auto;
    height: 70px;
}
#how-it-works .step-card {
    position: relative;
    z-index: 9;
}
#how-it-works .step-card i {
    position: absolute;
    right: 0px;
    font-size: 1.7rem;
    color: #fff;
    z-index: -1;
    width: 60px;
    height: 60px;
    display: flex;
    background-color: #ff9638;
    top: 0;
    border-radius: 0 18px 0 100px;
    justify-content: end;
    align-items: start;
    padding: 10px 10px 0 0;
}
#who .who-grid .who-card img {
    width: 100%;
    border-radius: 20px;
}
#benefits .benefit-grid .benefit-cta-row {
    align-items: center;
    justify-content: center;
}
#benefits .benefit-grid .benefit-cta-row {
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 10px;
    flex-direction: column;
}
#benefits .benefit-grid .benefit-cta-row  img {
    width: 100%;
    border-radius: 20px;
}
#benefits .benefit-grid .benefit-card i {
    width: 50px;
    height: 50px;
    background-color: #ff9638;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
#about .card-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#about .card-block .about-body,
#about .card-block .about-image {
    width: 50%;
    max-width: none;
}
#about .card-block .about-image img {
    width: 100%;
    border-radius: 20px;
}
#faq .faq-grid .faq-item {
    position: relative;
    z-index: 1;
}
#faq .faq-grid .faq-item:before {
    position: absolute;
    z-index: -1;
    content: "\f059";
    font-weight: 900;
    font-family: "Font Awesome 7 Free";
    top: 10px;
    font-size: 2rem;
    color: #ff9746;
    opacity: 0.1;
    right: 10px;
    line-height: 1;
    transition: font-size 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#faq .faq-grid .faq-item:hover:before {
    font-size: 5rem;
    opacity: 0.15;
}
#waitlist .waitlist-grid .waitlist-copy img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
}
#waitlist {
    margin-bottom: 0;
}
.main-header.sticky {
    position: sticky;
    background-color: #f4ece5;
    box-shadow: 0 0 0 100vmax #f4ece5;
    clip-path: inset(0 -100vmax);
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}
    /* Responsive */
    @media(max-width:1199px){
      .platform-grid ul li {
    width: 47%;
}
    }
    @media (max-width: 1060px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-visual {
        order: -1;
      }
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .platform-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .waitlist-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 780px) {
      .main-header.sticky .brand img {
    width: auto;
    height: 45px;
}
      #about .card-block .about-body, #about .card-block .about-image {
    width: 100%;
}
      #about .card-block {
    flex-direction: column;
}
      .platform-grid ul li {
    width: 100%;
}
      header {
        align-items: flex-start;
        gap: 14px;
      }
      .nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      .hero-title {
        font-size: 2.5rem;
      }
      .steps-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .who-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .benefit-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .faq-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }