:root {
      --red: #e8433a;
      --orange: #f07444;
      --dark: #0f0f0f;
      --dark2: #1a1a1a;
      --mid: #666;
      --light: #999;
      --bg: #fafaf8;
      --border: #e8e4df;
      --white: #ffffff;
      --grad: linear-gradient(135deg, #e8433a 0%, #f07444 100%);
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--dark);
      overflow-x: hidden;
      line-height: 1.6
    }

    /* ─── NOISE TEXTURE ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 0 clamp(1.5rem, 5vw, 5rem);
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }

    nav.scrolled {
      background: rgba(250, 250, 248, 0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .nav-logo img {
      height: 34px;
      width: 34px;
      object-fit: contain;
      border-radius: 8px
    }

    .nav-logo span {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--dark);
      letter-spacing: -0.02em
    }

    .nav-links {
      display: flex;
      gap: 1.6rem;
      align-items: center
    }

    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s
    }

    nav.scrolled .nav-links a {
      color: var(--mid)
    }

    .nav-links a:hover {
      color: var(--red)
    }

    .nav-dl {
      background: var(--grad);
      color: #fff;
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 14px rgba(232, 67, 58, 0.35);
      transition: opacity 0.2s, transform 0.2s;
    }

    .nav-dl:hover {
      opacity: 0.88;
      transform: translateY(-1px)
    }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 2px;
      transition: all 0.3s;
    }

    nav.scrolled .ham span {
      background: var(--dark)
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .ham.open span:nth-child(2) {
      opacity: 0
    }

    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* Mobile drawer */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: rgba(15, 15, 15, 0.98);
      backdrop-filter: blur(20px);
      padding: 1.5rem 2rem;
      flex-direction: column;
      gap: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      z-index: 199;
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mobile-menu a:last-child {
      border-bottom: none;
      margin-top: 0.5rem
    }

    .mobile-menu a:hover {
      color: #fff
    }

    .mobile-menu .m-dl {
      background: var(--grad);
      color: #fff;
      border-radius: 10px;
      padding: 12px 20px;
      justify-content: center;
      font-weight: 600;
      border-bottom: none;
      margin-top: 0.5rem;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px clamp(1.5rem, 8vw, 8rem) 0;
      position: relative;
      overflow: hidden;
      background: #0f0f0f;
    }

    .hero-orb1 {
      position: absolute;
      top: -200px;
      right: -100px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232, 67, 58, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-orb2 {
      position: absolute;
      bottom: -200px;
      left: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 116, 68, 0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-grid-line {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1.5rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--orange);
      display: inline-block;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: rgba(255, 255, 255, 0.45);
      max-width: 460px;
      line-height: 1.8;
      margin: 1.5rem 0 2.5rem;
      font-weight: 300;
    }

    .hero-pills {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
    }

    .pill span {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--grad);
      color: #fff;
      padding: 14px 26px;
      border-radius: 10px;
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(232, 67, 58, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(232, 67, 58, 0.5)
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.8);
      padding: 14px 26px;
      border-radius: 10px;
      font-size: 0.92rem;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3)
    }

    /* ─── GITHUB STATS BADGES ─── */
    .hero-github-stats {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }

    .gh-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 100px;
      padding: 7px 16px 7px 12px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      backdrop-filter: blur(6px);
    }

    .gh-badge:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      color: #fff;
    }

    .gh-badge-label {
      color: rgba(255, 255, 255, 0.45);
      font-weight: 400;
    }

    .gh-badge-value {
      font-weight: 700;
      color: #fff;
      font-family: 'Syne', sans-serif;
      min-width: 28px;
      display: inline-block;
    }

    .gh-skeleton {
      display: inline-block;
      width: 32px;
      height: 12px;
      background: linear-gradient(90deg, rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.08) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      border-radius: 4px;
      vertical-align: middle;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0 }
      100% { background-position: -200% 0 }
    }

    /* PHONE VISUAL */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center
    }

    .phone-wrap {
      position: relative
    }

    .phone-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(ellipse, rgba(232, 67, 58, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .phone {
      width: 240px;
      height: 490px;
      background: #1a1a1a;
      border-radius: 38px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      overflow: hidden;
      position: relative;
      transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
      transition: transform 0.5s ease;
    }

    .phone:hover {
      transform: perspective(1000px) rotateY(-3deg) rotateX(1deg)
    }

    .phone-notch {
      position: absolute;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: 72px;
      height: 20px;
      background: #0f0f0f;
      border-radius: 20px;
      z-index: 10;
    }

    .phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .floating-badge {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 10px 14px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--dark);
      animation: float 3s ease-in-out infinite;
    }

    .floating-badge.b1 {
      top: 60px;
      right: -30px;
      animation-delay: 0s
    }

    .floating-badge.b2 {
      bottom: 80px;
      left: -40px;
      animation-delay: 1.5s
    }

    .floating-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ade80
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    /* ─── SECTION BASE ─── */
    section {
      padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem)
    }

    .container {
      max-width: 1200px;
      margin: 0 auto
    }

    .section-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 1.5px;
      background: var(--red)
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    /* ─── FEATURES ─── */
    #features {
      background: #fff
    }

    .features-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 4rem
    }

    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .feat-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: padding-left 0.3s;
    }

    .feat-item:first-child {
      padding-top: 0
    }

    .feat-item:last-child {
      border-bottom: none
    }

    .feat-item:hover {
      padding-left: 6px
    }

    .feat-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--red);
      letter-spacing: 0.08em;
      flex-shrink: 0;
      padding-top: 4px;
    }

    .feat-body h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.3rem
    }

    .feat-body p {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.7;
      font-weight: 300
    }

    .features-mockup {
      background: var(--dark);
      border-radius: 24px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }

    .mockup-header {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 1.5rem;
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .mockup-dot:nth-child(1) {
      background: #ff5f56
    }

    .mockup-dot:nth-child(2) {
      background: #ffbd2e
    }

    .mockup-dot:nth-child(3) {
      background: #27c93f
    }

    .mockup-title-bar {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      height: 24px;
      margin-left: 6px;
      display: flex;
      align-items: center;
      padding: 0 10px;
    }

    .mockup-title-bar span {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.3)
    }

    .mockup-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.2rem
    }

    .mstat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 1rem;
    }

    .mstat-val {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1
    }

    .mstat-val.accent {
      color: var(--orange)
    }

    .mstat-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.35);
      margin-top: 4px
    }

    .mockup-bar-row {
      margin-bottom: 0.8rem
    }

    .bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 4px
    }

    .bar-track {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 100px;
      height: 6px
    }

    .bar-fill {
      height: 6px;
      border-radius: 100px;
      background: var(--grad)
    }

    /* ─── STATS ─── */
    #stats {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .stats-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Playfair Display', serif;
      font-size: 18vw;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.02);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -0.05em;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      padding: 3rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      display: block;
      margin-bottom: 0.4rem;
    }

    .stat-lbl {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 300;
      line-height: 1.4
    }

    .compare-wrap {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 4rem;
    }

    .compare-wrap table {
      width: 100%;
      border-collapse: collapse
    }

    .compare-wrap th {
      padding: 1.1rem 1.5rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.03);
    }

    .compare-wrap th:first-child {
      text-align: left;
      color: rgba(255, 255, 255, 0.35)
    }

    .compare-wrap th.h-adhyay {
      color: var(--orange);
      text-align: center
    }

    .compare-wrap th.h-others {
      color: rgba(255, 255, 255, 0.3);
      text-align: center
    }

    .compare-wrap td {
      padding: 1rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 0.9rem;
    }

    .compare-wrap td:first-child {
      color: rgba(255, 255, 255, 0.55)
    }

    .compare-wrap td.c-good {
      color: #4ade80;
      font-weight: 600;
      text-align: center
    }

    .compare-wrap td.c-bad {
      color: rgba(255, 255, 255, 0.2);
      text-align: center
    }

    /* ─── SCREENSHOTS ─── */
    #screenshots {
      background: var(--bg)
    }

    .shots-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .shot-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .shot-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12)
    }

    .shot-card:nth-child(2) {
      transform: translateY(20px)
    }

    .shot-card:nth-child(2):hover {
      transform: translateY(12px)
    }

    .shot-img {
      width: 100%;
      height: 420px;
      object-fit: contain;
      display: block;
      background: #f0eef8
    }

    .shot-info {
      padding: 1.2rem 1.4rem
    }

    .shot-info h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 2px
    }

    .shot-info p {
      font-size: 0.78rem;
      color: var(--light);
      font-weight: 300
    }

    /* ─── ECOSYSTEM ─── */
    #ecosystem {
      background: #fff
    }

    .eco-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 3.5rem;
    }

    .eco-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem 1.6rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
    }

    .eco-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08)
    }

    .eco-card.active {
      background: var(--dark);
      border-color: var(--dark)
    }

    .eco-card.active h3 {
      color: #fff
    }

    .eco-card.active p {
      color: rgba(255, 255, 255, 0.5)
    }

    .eco-badge-pill {
      display: inline-block;
      padding: 3px 12px;
      border-radius: 100px;
      font-family: 'Syne', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .badge-live {
      background: #dcfce7;
      color: #16a34a
    }

    .badge-next {
      background: #fef3c7;
      color: #d97706
    }

    .badge-soon {
      background: #e0e7ff;
      color: #4338ca
    }

    .badge-future {
      background: #f3f4f6;
      color: #6b7280
    }

    .eco-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--dark)
    }

    .eco-card p {
      font-size: 0.82rem;
      color: var(--mid);
      line-height: 1.6;
      font-weight: 300
    }

    .eco-arrow {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: background 0.2s;
    }

    .eco-card.active .eco-arrow {
      background: rgba(255, 255, 255, 0.1)
    }

    /* ─── ABOUT / PHILOSOPHY ─── */
    #about {
      background: var(--dark);
      position: relative;
      overflow: hidden
    }

    .about-arc {
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    .about-arc2 {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-left {
      display: flex;
      flex-direction: column;
    }

    .about-logo-box {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      overflow: hidden;
    }

    .about-logo-box img {
      width: 56px;
      height: 56px;
      object-fit: contain
    }

    .about-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.4rem;
      letter-spacing: -0.02em;
    }

    .about-tagline {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.3);
      font-weight: 300
    }

    .about-philosophy {
      border-left: 2px solid var(--orange);
      padding-left: 2.5rem;
    }

    .about-philosophy blockquote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .philosophy-points {
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .phil-point {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .phil-point::before {
      content: '✦';
      color: var(--orange);
      font-size: 0.7rem;
      flex-shrink: 0;
    }

    /* ─── FEEDBACK ─── */
    #feedback {
      background: var(--bg)
    }

    .feedback-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .feedback-left {
      display: flex;
      gap: 1rem;
    }

    .feedback-left h2 {
      margin-bottom: 1rem
    }

    .feedback-left p {
      font-size: 0.95rem;
      color: var(--mid);
      line-height: 1.75;
      font-weight: 300;
      margin-bottom: 2rem
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--mid);
    }

    .contact-row a {
      color: var(--red);
      text-decoration: none
    }

    .contact-row a:hover {
      text-decoration: underline
    }

    .form-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    }

    .form-field {
      margin-bottom: 1.2rem
    }

    .form-field label {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 6px;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--dark);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--red)
    }

    .form-field textarea {
      resize: vertical;
      min-height: 120px
    }

    .form-btn {
      width: 100%;
      background: var(--grad);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px;
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 8px 24px rgba(232, 67, 58, 0.3);
    }

    .form-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px)
    }

    /* Support Button Container */
    .support-container {
      margin: 20px 0;
    }

    /* main button style */
    .support-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #000000;
      color: #ffffff;
      padding: 12px 24px;
      border: 2px solid #000000;
      border-radius: 30px;
      font-family: inherit;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 10px rgba(255, 255, 255, 0.05);
    }

    /* Hover effect */
    .support-button:hover {
      background-color: #ffffff;
      color: #000000;
      border-color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 74, 74, 0.4);
    }

    /* click effect */
    .supread-support-btn:active {
      transform: translateY(0);
    }

    /* GitHub small badge in support area */
    .github-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg,#24292f,#2b3036);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 30px;
    }
    .gh-badge-small {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.06);
      color: #fff;
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 13px;
      margin-left: 6px;
    }
    .gh-inline-stars { font-weight:600; margin-left:6px; }
    .github-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }


    /* ─── CTA ─── */
    #cta {
      background: var(--dark);
      text-align: center;
      padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 8rem);
      position: relative;
      overflow: hidden;
    }

    .cta-orb {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(232, 67, 58, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    #cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
      line-height: 1.1;
    }

    #cta h2 em {
      font-style: italic;
      color: var(--orange)
    }

    #cta p {
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 2.5rem;
      font-size: 1rem;
      font-weight: 300;
      position: relative;
      z-index: 1
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1
    }

    .btn-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--grad);
      color: #fff;
      padding: 15px 30px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(232, 67, 58, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(232, 67, 58, 0.5)
    }

    .btn-cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 15px 30px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-cta-secondary:hover {
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff
    }

    /* ─── FOOTER ─── */
    footer {
      background: #0a0a0a;
      padding: 2.5rem clamp(1.5rem, 8vw, 8rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .footer-logo img {
      height: 28px;
      width: 28px;
      object-fit: contain;
      border-radius: 6px
    }

    .footer-logo span {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: #fff
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .footer-links a:hover {
      color: #fff
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.2);
      font-size: 0.78rem
    }

    /* ─── MODAL ─── */
    #modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    #modal {
      background: #fff;
      border-radius: 24px;
      max-width: 520px;
      width: 100%;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(0.85) translateY(20px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .modal-top {
      background: var(--dark);
      padding: 2rem 2rem 1.8rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .modal-top-logo {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-top-logo img {
      width: 36px;
      height: 36px;
      object-fit: contain
    }

    .modal-top-text h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 2px
    }

    .modal-top-text p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 300
    }

    .modal-body {
      padding: 1.8rem 2rem
    }

    .modal-scroll {
      height: 200px;
      overflow-y: auto;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 1.2rem 1.4rem;
      font-size: 0.86rem;
      color: var(--mid);
      line-height: 1.8;
      background: var(--bg);
      margin-bottom: 1.2rem;
    }

    .modal-scroll::-webkit-scrollbar {
      width: 4px
    }

    .modal-scroll::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px
    }

    .modal-scroll h3 {
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      color: var(--dark);
      margin: 1rem 0 0.3rem;
      font-weight: 700
    }

    .modal-scroll h3:first-child {
      margin-top: 0
    }

    .modal-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--mid);
      cursor: pointer;
      margin-bottom: 1.2rem;
    }

    .modal-check input[type=checkbox] {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      accent-color: var(--red);
      margin-top: 2px;
      cursor: pointer
    }

    .modal-check a {
      color: var(--red);
      text-decoration: underline
    }

    .modal-agree {
      width: 100%;
      background: var(--grad);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px;
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      opacity: 0.4;
      pointer-events: none;
    }

    .modal-agree.on {
      opacity: 1;
      pointer-events: all
    }

    .modal-agree.on:hover {
      transform: translateY(-1px)
    }

    .modal-foot {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.78rem;
      color: var(--light)
    }

    .modal-foot a {
      color: var(--red);
      text-decoration: none;
      margin: 0 5px
    }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease
    }

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

    /* ─── RESPONSIVE ─── */
    @media(max-width:900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
      }

      .hero-sub {
        margin: 1.5rem auto 2.5rem
      }

      .hero-pills {
        justify-content: center
      }

      .hero-btns {
        justify-content: center
      }

      .hero-eyebrow {
        justify-content: center
      }

      .hero-visual {
        display: none
      }

      .features-layout {
        grid-template-columns: 1fr
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06)
      }

      .shots-row {
        grid-template-columns: 1fr
      }

      .shot-card:nth-child(2) {
        transform: none
      }

      .eco-grid {
        grid-template-columns: 1fr 1fr
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .feedback-inner {
        grid-template-columns: 1fr
      }

      .nav-links {
        display: none
      }

      .ham {
        display: flex
      }
    }

    @media(max-width:600px) {
      .stats-grid {
        grid-template-columns: 1fr 1fr
      }

      .eco-grid {
        grid-template-columns: 1fr
      }
    }