  :root {
      --white: #FFFFFF;
      --gray-50: #F5F5F7;
      --gray-100: #EBEBED;
      --gray-300: #C4C4C8;
      --gray-500: #6B6B6B;
      --gray-900: #1A1A1A;
      --grad-start: #FF0099;
      --grad-mid: #FF2200;
      --grad-end: #FF9900;
      --grad: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--gray-900);
      -webkit-font-smoothing: antialiased;
  }

  /* ── SVG ICONS ── */
  .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .icon svg {
      width: 100%;
      height: 100%;
  }

  /* ── NAV ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 5%;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
  }

  .nav-logo-svg {
      width: 34px;
      height: 34px;
  }

  .nav-logo-text {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--gray-900);
      letter-spacing: -0.02em;
  }

  .nav-logo-text span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      align-items: center;
  }

  .nav-links a {
      color: var(--gray-500);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color .2s;
  }

  .nav-links a:hover {
      color: var(--gray-900);
  }

  .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
  }

  .btn-login {
      color: var(--gray-900);
      text-decoration: none;
      border: 1.5px solid var(--gray-300);
      border-radius: 8px;
      padding: 9px 18px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 0.87rem;
      transition: border-color .2s, transform .15s;
  }

  .btn-login:hover {
      border-color: var(--gray-900);
      transform: translateY(-1px);
  }

  .nav-cta {
      background: var(--grad);
      color: #fff;
      border: none;
      cursor: pointer;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 0.87rem;
      transition: opacity .2s, transform .15s;
      display: inline-block;
  }

  .nav-cta:hover {
      opacity: .85;
      transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
      background: var(--white);
  }

  .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.11;
      animation: blobFloat 8s ease-in-out infinite alternate;
      pointer-events: none;
  }

  .hero-blob-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #FF0099, #FF9900);
      top: -100px;
      right: -80px;
      animation-delay: 0s;
  }

  .hero-blob-2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, #FF9900, #FF0099);
      bottom: 0;
      left: -60px;
      animation-delay: -4s;
  }

  @keyframes blobFloat {
      from {
          transform: translate(0, 0) scale(1);
      }

      to {
          transform: translate(30px, -30px) scale(1.08);
      }
  }

  .hero-inner {
      max-width: 860px;
      text-align: center;
      position: relative;
      z-index: 1;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 32px;
      font-size: 0.81rem;
      font-weight: 500;
      color: var(--gray-500);
  }

  .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.5);
          opacity: .6;
      }
  }

  .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      color: var(--gray-900);
  }

  .hero h1 .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero-desc {
      font-size: clamp(1rem, 2vw, 1.18rem);
      line-height: 1.7;
      color: var(--gray-500);
      max-width: 600px;
      margin: 0 auto 44px;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-primary {
      background: var(--grad);
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 15px 32px;
      border-radius: 10px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      transition: opacity .2s, transform .15s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary:hover {
      opacity: .85;
      transform: translateY(-2px);
  }

  .btn-secondary {
      background: transparent;
      color: var(--gray-900);
      border: 1.5px solid var(--gray-300);
      padding: 14px 30px;
      border-radius: 10px;
      cursor: pointer;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      transition: border-color .2s, transform .15s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-secondary:hover {
      border-color: var(--gray-900);
      transform: translateY(-2px);
  }

  .hero-logo-big {
      margin-top: 64px;
      display: flex;
      justify-content: center;
  }

  .hero-logo-big svg {
      width: 110px;
      height: 110px;
      filter: drop-shadow(0 20px 50px rgba(255, 0, 100, 0.18));
      animation: logoFloat 5s ease-in-out infinite;
  }

  @keyframes logoFloat {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-12px);
      }
  }

  /* ── STATS ── */
  .stats {
      background: var(--gray-50);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      padding: 48px 5%;
      display: flex;
      justify-content: center;
      gap: 64px;
      flex-wrap: wrap;
  }

  .stat {
      text-align: center;
  }

  .stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .stat-label {
      font-size: 0.875rem;
      color: var(--gray-500);
      margin-top: 4px;
      font-weight: 500;
  }

  /* ── SECTION SHARED ── */
  section {
      padding: 96px 5%;
  }

  .section-wrap {
      max-width: 1160px;
      margin: 0 auto;
  }

  .section-eyebrow {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 14px;
      display: block;
  }

  .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 18px;
  }

  .section-sub {
      font-size: 1.03rem;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 540px;
  }

  /* ── SERVICES ── */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 52px;
  }

  .service-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 16px;
      padding: 32px;
      transition: box-shadow .25s, transform .2s;
  }

  .service-card:hover {
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.07);
      transform: translateY(-4px);
  }

  .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 11px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
  }

  .service-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gray-900);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .service-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
  }

  .service-card p {
      font-size: 0.9rem;
      color: var(--gray-500);
      line-height: 1.65;
  }

  .service-tag {
      display: inline-block;
      margin-top: 18px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 0.73rem;
      font-weight: 600;
      color: var(--gray-500);
      font-family: 'Space Grotesk', sans-serif;
  }

  .service-tag.available {
      background: #f0fdf4;
      border-color: #bbf7d0;
      color: #15803d;
  }

  /* ── FEATURES ── */
  .features-section {
      background: var(--gray-50);
  }

  .features-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      margin-top: 52px;
  }

  .feature-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 12px;
      transition: box-shadow .2s, transform .2s;
  }

  .feature-item:hover {
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
      transform: translateX(4px);
  }

  .feature-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      flex-shrink: 0;
      padding-top: 3px;
  }

  .feature-item h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 5px;
  }

  .feature-item p {
      font-size: 0.865rem;
      color: var(--gray-500);
      line-height: 1.6;
  }

  .features-visual {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.07);
  }

  .dashboard-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 26px;
  }

  .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .dash-dot-1 {
      background: #FF605C;
  }

  .dash-dot-2 {
      background: #FFBD44;
  }

  .dash-dot-3 {
      background: #00CA4E;
  }

  .dashboard-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gray-500);
      margin-left: 4px;
  }

  .dash-metric {
      background: var(--gray-50);
      border-radius: 10px;
      padding: 16px 18px;
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .dash-metric-label {
      font-size: 0.8rem;
      color: var(--gray-500);
      font-weight: 500;
  }

  .dash-metric-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
  }

  .dash-metric-up {
      font-size: 0.72rem;
      font-weight: 600;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .dash-bar-row {
      margin-top: 18px;
  }

  .dash-bar-label {
      font-size: 0.76rem;
      color: var(--gray-500);
      margin-bottom: 6px;
      font-weight: 500;
  }

  .dash-bar-track {
      height: 7px;
      background: var(--gray-100);
      border-radius: 100px;
      margin-bottom: 10px;
  }

  .dash-bar-fill {
      height: 100%;
      border-radius: 100px;
      background: var(--grad);
      animation: barGrow 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
  }

  @keyframes barGrow {
      from {
          width: 0;
      }
  }

  /* ── PRICING ── */
  .pricing-section {
      background: var(--white);
  }

  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 52px;
  }

  .pricing-card {
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: 20px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      transition: box-shadow .25s, transform .2s;
  }

  .pricing-card:hover {
      box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
  }

  .pricing-card.featured {
      border-color: transparent;
      background: var(--gray-900);
      color: var(--white);
  }

  .pricing-card.featured .pricing-name {
      color: rgba(255, 255, 255, 0.6);
  }

  .pricing-card.featured .pricing-price {
      color: var(--white);
  }

  .pricing-card.featured .pricing-desc {
      color: rgba(255, 255, 255, 0.55);
  }

  .pricing-card.featured .pricing-feature {
      color: rgba(255, 255, 255, 0.85);
      border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .pricing-card.featured .pricing-feature svg {
      stroke: #FF9900;
  }

  .pricing-badge {
      display: inline-block;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--grad);
      color: #fff;
      border-radius: 100px;
      padding: 3px 12px;
      margin-bottom: 20px;
  }

  .pricing-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 8px;
  }

  .pricing-price {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 4px;
  }

  .pricing-price span {
      font-size: 1rem;
      font-weight: 500;
  }

  .pricing-period {
      font-size: 0.82rem;
      color: var(--gray-500);
      margin-bottom: 6px;
  }

  .pricing-desc {
      font-size: 0.88rem;
      color: var(--gray-500);
      line-height: 1.6;
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--gray-100);
  }

  .pricing-features {
      flex: 1;
      list-style: none;
      margin-bottom: 28px;
  }

  .pricing-feature {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 9px 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.875rem;
      line-height: 1.5;
  }

  .pricing-feature:last-child {
      border-bottom: none;
  }

  .pricing-feature svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      stroke: #15803d;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      margin-top: 1px;
  }

  .pricing-toggle {
      display: flex;
      gap: 8px;
      margin-bottom: 28px;
      background: var(--gray-50);
      border-radius: 8px;
      padding: 4px;
  }

  .toggle-btn {
      flex: 1;
      padding: 7px;
      border: none;
      background: transparent;
      border-radius: 6px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gray-500);
      cursor: pointer;
      transition: background .2s, color .2s;
  }

  .toggle-btn.active {
      background: var(--white);
      color: var(--gray-900);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }

  .pricing-card.featured .pricing-toggle {
      background: rgba(255, 255, 255, 0.1);
  }

  .pricing-card.featured .toggle-btn.active {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
  }

  .pricing-card.featured .toggle-btn {
      color: rgba(255, 255, 255, 0.5);
  }

  .pricing-save {
      font-size: 0.72rem;
      font-weight: 700;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  /* ── INTEGRATIONS ── */
  .integrations-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 44px;
  }

  .int-chip {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: 100px;
      padding: 11px 18px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray-900);
      transition: border-color .2s, box-shadow .2s;
  }

  .int-chip:hover {
      border-color: var(--gray-300);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .int-chip svg {
      width: 18px;
      height: 18px;
      stroke: var(--gray-500);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
  }

  /* ── CTA ── */
  .cta-section {
      text-align: center;
      background: var(--gray-900);
      color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .cta-section .hero-blob-1 {
      opacity: 0.07;
      top: -150px;
      right: -100px;
  }

  .cta-section .hero-blob-2 {
      opacity: 0.07;
  }

  .cta-section .section-eyebrow {
      color: rgba(255, 255, 255, 0.4);
  }

  .cta-section .section-title {
      color: var(--white);
      max-width: 560px;
      margin: 0 auto 16px;
  }

  .cta-section .section-sub {
      color: rgba(255, 255, 255, 0.5);
      margin: 0 auto 44px;
      max-width: 480px;
  }

  .cta-inner {
      position: relative;
      z-index: 1;
  }

  .cta-btn-row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
      background: var(--gray-50);
      border-top: 1px solid var(--gray-100);
      padding: 40px 5%;
  }

  .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  .footer-left {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .footer-left svg {
      width: 26px;
      height: 26px;
  }

  .footer-brand {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--gray-900);
  }

  .footer-brand span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .footer-right {
      text-align: right;
  }

  .footer-copy {
      font-size: 0.8rem;
      color: var(--gray-500);
  }

  .footer-dev {
      font-size: 0.78rem;
      color: var(--gray-300);
      margin-top: 4px;
  }

  .footer-dev a {
      color: var(--gray-500);
      text-decoration: none;
      transition: color .2s;
  }

  .footer-dev a:hover {
      color: var(--gray-900);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 820px) {
      nav {
          padding: 14px 4%;
      }

      .nav-links {
          display: none;
      }

      .features-layout {
          grid-template-columns: 1fr;
          gap: 36px;
      }

      .stats {
          gap: 36px;
      }

      .footer-right {
          text-align: left;
      }
  }