  :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 SLIDER ── */
  .hero-slider {
      position: relative;
      min-height: 190px;
  }

  .hero-slide {
      display: none;
  }

  .hero-slide.active {
      display: block;
      animation: heroSlideFade .6s ease;
  }

  @keyframes heroSlideFade {
      from {
          opacity: 0;
          transform: translateY(8px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 40px;
  }

  .hero-slider-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--gray-300);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gray-900);
      flex-shrink: 0;
      transition: border-color .2s, transform .15s;
  }

  .hero-slider-arrow:hover {
      border-color: var(--gray-900);
      transform: translateY(-1px);
  }

  .hero-slider-arrow svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .hero-dots {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gray-300);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background .2s, width .2s;
  }

  .hero-dot.active {
      width: 22px;
      border-radius: 100px;
      background: var(--grad);
  }

  .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);
  }

  /* ── MODULES (home) ── */
  .modules-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      flex-wrap: wrap;
  }

  .modules-head .section-title {
      margin-bottom: 0;
  }

  .modules-head .section-sub {
      max-width: 380px;
  }

  .modules-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
      align-items: stretch;
  }

  .modules-bento .module-card:nth-child(1) {
      grid-column: span 2;
  }

  .module-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: 20px;
      padding: 32px;
      text-decoration: none;
      color: inherit;
      overflow: hidden;
      transition: box-shadow .25s, transform .2s, border-color .2s;
  }

  a.module-card:hover {
      box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
      border-color: var(--gray-300);
  }

  .module-card-index {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--gray-300);
      margin-bottom: 16px;
      display: block;
  }

  .module-card-index .idx-total {
      color: var(--gray-100);
  }

  .module-card-photo {
      margin: -32px -32px 20px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
  }

  .module-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  }

  a.module-card:hover .module-card-photo img {
      transform: scale(1.06);
  }

  .module-card-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.6) 100%);
      pointer-events: none;
      z-index: 1;
  }

  .module-card-photo .module-card-index {
      position: absolute;
      z-index: 2;
      top: 14px;
      left: 16px;
      margin-bottom: 0;
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-radius: 100px;
      padding: 4px 11px;
      color: #fff;
  }

  .module-card-photo .module-card-index .idx-total {
      color: rgba(255, 255, 255, 0.6);
  }

  .module-card-photo .module-card-top {
      position: absolute;
      z-index: 2;
      left: 16px;
      right: 16px;
      bottom: 14px;
      margin-bottom: 0;
  }

  .module-card-photo .module-icon {
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-color: rgba(255, 255, 255, 0.35);
  }

  .module-card-photo .module-icon svg {
      stroke: #fff;
  }

  .module-card-photo .module-status {
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
  }

  .module-card-photo .module-status.available {
      background: #fff;
      border-color: #fff;
      color: var(--gray-900);
  }

  .module-card-feature .module-card-photo {
      margin: -40px -40px 24px;
  }

  /* Featured (largest) module card — same white card, marked by size + a thin top accent only */
  .module-card-feature {
      position: relative;
      padding: 40px;
      padding-top: 44px;
      overflow: hidden;
  }

  .module-card-feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--grad);
  }

  .module-card-feature .module-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
  }

  .module-card-feature .module-icon svg {
      width: 28px;
      height: 28px;
  }

  .module-card-feature h3 {
      font-size: 1.7rem;
      margin-bottom: 14px;
  }

  .module-card-feature>p {
      font-size: 1rem;
      max-width: 480px;
  }

  .module-card-feature .module-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px 20px;
  }

  a.module-card-feature:hover {
      border-color: var(--gray-300);
      box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
  }

  .module-card.coming {
      opacity: 0.7;
  }

  .module-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
  }

  .module-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .module-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--gray-900);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .module-status {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      color: var(--gray-500);
      white-space: nowrap;
  }

  .module-status.available {
      background: var(--gray-900);
      border-color: var(--gray-900);
      color: #fff;
  }

  .module-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
  }

  .module-card>p {
      font-size: 0.92rem;
      color: var(--gray-500);
      line-height: 1.65;
      margin-bottom: 20px;
  }

  .module-highlights {
      list-style: none;
      margin-bottom: 26px;
      flex: 1;
  }

  .module-highlights li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.85rem;
      color: var(--gray-900);
      padding: 6px 0;
      line-height: 1.4;
  }

  .module-highlights li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
      margin-top: 7px;
  }

  .module-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--gray-900);
      margin-top: auto;
      padding-top: 20px;
  }

  .module-card-feature .module-card-cta {
      color: #fff;
  }

  .module-card-cta svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform .2s;
  }

  a.module-card:hover .module-card-cta svg {
      transform: translateX(3px);
  }

  /* ── MODULES ROADMAP (home) ── */
  .modules-roadmap {
      margin-top: 28px;
  }

  .modules-roadmap-label {
      display: block;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-300);
      margin-bottom: 14px;
  }

  .roadmap-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 24px;
      border: 1.5px dashed var(--gray-100);
      border-radius: 16px;
  }

  .roadmap-item .module-icon {
      background: var(--gray-50);
  }

  .roadmap-item-text {
      flex: 1;
  }

  .roadmap-item-text h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 3px;
  }

  .roadmap-item-text p {
      font-size: 0.85rem;
      color: var(--gray-500);
  }

  .roadmap-item .module-status {
      flex-shrink: 0;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--gray-500);
      margin-bottom: 28px;
      font-weight: 500;
      flex-wrap: wrap;
  }

  .breadcrumb a {
      color: var(--gray-500);
      text-decoration: none;
      transition: color .2s;
  }

  .breadcrumb a:hover {
      color: var(--gray-900);
  }

  .breadcrumb .sep {
      color: var(--gray-300);
  }

  .breadcrumb .current {
      color: var(--gray-900);
      font-weight: 600;
  }

  /* ── MODULE HERO ── */
  .module-hero {
      padding: 152px 5% 72px;
      position: relative;
      overflow: hidden;
      background: var(--white);
  }

  .module-hero-inner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 48px;
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
  }

  .module-hero-text {
      display: flex;
      align-items: center;
      gap: 44px;
  }

  .module-hero-photo {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      border: 1px solid var(--gray-100);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  }

  .module-hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .module-hero-icon-big {
      width: 100px;
      height: 100px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255, 0, 153, 0.08), rgba(255, 153, 0, 0.08));
      border: 1px solid var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .module-hero-icon-big svg {
      width: 46px;
      height: 46px;
      stroke: var(--gray-900);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  .module-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 18px;
      font-size: 0.78rem;
      font-weight: 600;
      font-family: 'Space Grotesk', sans-serif;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      color: var(--gray-900);
  }

  .module-hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.1rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      color: var(--gray-900);
  }

  .module-hero-desc {
      font-size: clamp(0.98rem, 1.6vw, 1.1rem);
      line-height: 1.7;
      color: var(--gray-500);
      max-width: 560px;
      margin-bottom: 32px;
  }

  .module-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .module-hero-inner .hero-slider {
      min-height: 168px;
  }

  .module-hero-inner .hero-slider-controls {
      justify-content: flex-start;
      margin-top: 28px;
      margin-left: 0;
  }

  /* ── RELATED MODULES ── */
  .related-modules-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 44px;
  }

  .related-chip {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: 100px;
      padding: 11px 20px 11px 14px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray-900);
      text-decoration: none;
      transition: border-color .2s, box-shadow .2s, transform .2s;
  }

  a.related-chip:hover {
      border-color: var(--gray-300);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      transform: translateY(-2px);
  }

  .related-chip.coming {
      opacity: 0.6;
      cursor: default;
  }

  .related-chip .module-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
  }

  .related-chip .module-icon svg {
      width: 15px;
      height: 15px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) and (min-width: 821px) {
      .modules-bento {
          grid-template-columns: repeat(2, 1fr);
      }

      .modules-bento .module-card:nth-child(1) {
          grid-column: span 2;
      }
  }

  @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;
      }

      .module-hero-inner {
          grid-template-columns: 1fr;
          gap: 32px;
          text-align: left;
      }

      .module-hero-text {
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
      }

      .module-hero {
          padding: 130px 6% 56px;
      }

      .modules-head {
          align-items: flex-start;
      }

      .modules-bento {
          grid-template-columns: 1fr;
      }

      .modules-bento .module-card:nth-child(1) {
          grid-column: span 1;
      }

      .roadmap-item {
          flex-wrap: wrap;
      }
  }