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

    :root{
      /* Light Apple-ish system */
      --bg: #ffffff;
      --bg2: #ffffff;
      --text: rgba(0,0,0,.90);
      --muted: rgba(0,0,0,.62);
      --subtle: rgba(0,0,0,.06);
      --border: rgba(0,0,0,.10);

      /* Accent */
      --accent: #0a84ff;
      --accent2: #5ac8fa;

      /* Surfaces */
      --card: rgba(0,0,0,.03);
      --card2: rgba(0,0,0,.04);

      /* Radius / shadows */
      --shadow-lg: 0 30px 80px rgba(0,0,0,.12);
      --shadow-md: 0 18px 40px rgba(0,0,0,.10);

      --max: 1120px;
    }

    html, body { height: 100%; }

    body{
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .container{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Nav (Apple-like glass bar) */
    nav{
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,.72);
      backdrop-filter: saturate(160%) blur(18px);
      -webkit-backdrop-filter: saturate(160%) blur(18px);
      border-bottom: 1px solid rgba(0,0,0,.08);
      transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    nav.scrolled{
      background: rgba(255,255,255,.88);
      box-shadow: 0 10px 40px rgba(0,0,0,.08);
      border-color: rgba(0,0,0,.10);
    }

    .nav-content{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 18px;
    }

    .logo{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(0,0,0,.88);
      font-weight: 800;
      letter-spacing: -0.02em;
      font-size: 1.05rem;
      white-space: nowrap;
    }
    .logo::before{
      content:"//";
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      font-weight: 700;
      opacity: .8;
      transform: translateY(-.5px);
    }

    .nav-links{
      display: flex;
      gap: 22px;
      align-items: center;
    }
    .nav-links a{
      color: rgba(0,0,0,.70);
      text-decoration: none;
      font-weight: 650;
      font-size: .92rem;
      letter-spacing: -0.01em;
      padding: 10px 10px;
      border-radius: 999px;
      transition: background .2s ease, color .2s ease;
    }
    .nav-links a:hover{
      color: rgba(0,0,0,.90);
      background: rgba(0,0,0,.04);
    }

    .nav-actions{
      display: flex;
      gap: 10px;
      align-items: center;
    }

    /* Buttons */
    .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 750;
      font-size: .95rem;
      letter-spacing: -0.01em;
      text-decoration: none;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:active{ transform: translateY(1px) scale(.99); }

    .btn-ghost{
      color: rgba(0,0,0,.82);
      background: rgba(0,0,0,.03);
      border-color: rgba(0,0,0,.10);
    }
    .btn-ghost:hover{
      background: rgba(0,0,0,.05);
      border-color: rgba(0,0,0,.14);
      box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    .btn-primary{
      color: white;
      background: linear-gradient(180deg, #000000, #000000);
      border-color: rgba(0,0,0,.04);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 60px #rgba(10,132,255,.22);
      transform: translateY(-1px);
    }

    .btn-lg{ padding: 14px 22px; font-size: 1.02rem; }

    /* Hero */
    .hero{
      padding: 120px 0 84px;
      position: relative;
    }

    .hero-grid{
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 44px;
      align-items: center;
    }

    .eyebrow{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.08);
      color: rgba(0,0,0,.70);
      font-weight: 800;
      font-size: .85rem;
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    .eyebrow .dot{
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(10,132,255,.12);
    }

    .hero h1{
      font-size: clamp(2.3rem, 4.4vw, 3.7rem);
      line-height: 1.06;
      letter-spacing: -0.05em;
      font-weight: 850;
      margin-bottom: 14px;
      color: rgba(0,0,0,.92);
    }

    .hero p{
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 50ch;
      margin-bottom: 26px;
    }

    .hero-cta{
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 18px;
    }

    .note{
      font-size: .92rem;
      color: rgba(0,0,0,.58);
    }
    .note strong{ color: rgba(0,0,0,.82); }

    /* Device */
    .phone-container{
      position: relative;
      justify-self: end;
      width: min(420px, 100%);
    }

    .float-stat{
      position: absolute;
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 18px;
      padding: 14px 16px;
      box-shadow: var(--shadow-md);
      animation: float 3.2s ease-in-out infinite;
    }
    @keyframes float{
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    .float-1{ top: -45px; right: -110px; }
    .float-2{ bottom: 24px; left: -100px; animation-delay: 1.1s; }

    .stat-label{ color: rgba(0,0,0,.55); font-size: .82rem; font-weight: 800; }
    .stat-value{
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-top: 3px;
      color: rgba(0,0,0,.88);
    }

    .phone{
      border-radius: 42px;
      padding: 12px;
      background: linear-gradient(180deg, rgba(255,255,255,1), rgba(245,245,247,1));
      border: 1px solid rgba(0,0,0,.10);
      box-shadow: var(--shadow-lg);
      transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
      transition: transform .35s ease;
      overflow: hidden;
      position: relative;
    }
    .phone:hover{ transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }

    .phone::before{
      content:"";
      position:absolute; inset:-2px;
      opacity: .9;
      pointer-events:none;
    }

    .notch{
      width: 140px;
      height: 28px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 0 0 18px 18px;
      margin: 0 auto 12px;
      position: relative;
      z-index: 1;
    }

    .phone-content{
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 30px;
      padding: 18px 16px;
      backdrop-filter: blur(12px) saturate(160%);
      -webkit-backdrop-filter: blur(12px) saturate(160%);
    }

    .phone-header{ text-align: center; margin-bottom: 16px; }

    .balance-label{ color: rgba(0,0,0,.55); font-size: .82rem; font-weight: 800; }
    .balance{
      font-size: 2.2rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      margin-top: 2px;
      color: rgba(0,0,0,.90);
    }

    .tabs{
      display: inline-flex;
      gap: 6px;
      margin-top: 10px;
      padding: 6px;
      border-radius: 999px;
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.08);
    }
    .tab{
      padding: 7px 12px;
      border-radius: 999px;
      font-size: .82rem;
      font-weight: 900;
      color: rgba(0,0,0,.62);
      transition: background .2s ease, color .2s ease;
    }
    .tab.active{
      color: rgba(0,0,0,.92);
      background: rgba(0,0,0,.06);
      border: 1px solid rgba(0,0,0,.08);
    }

    .search-bar{
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 12px;
      border-radius: 16px;
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.08);
      color: rgba(0,0,0,.65);
      margin-bottom: 12px;
    }
    .kbd{
      margin-left: auto;
      font-weight: 900;
      font-size: .78rem;
      opacity: .7;
      padding: 6px 9px;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.70);
    }

    .prompt-card{
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 16px;
      padding: 14px 14px;
      margin-bottom: 10px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      cursor: pointer;
    }
    .prompt-card:hover{
      transform: translateY(-2px);
      background: rgba(0,0,0,.04);
      border-color: rgba(0,0,0,.12);
    }

    .tag{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: .72rem;
      font-weight: 950;
      letter-spacing: .02em;
      margin-bottom: 10px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.65);
      color: rgba(0,0,0,.78);
    }
    .tag::before{
      content:"";
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(10,132,255,.12);
    }
    .tag-claude::before{ background: var(--accent2); box-shadow: 0 0 0 5px rgba(90,200,250,.12); }

    .card-title{
      font-weight: 900;
      letter-spacing: -0.02em;
      font-size: .95rem;
      margin-bottom: 10px;
      color: rgba(0,0,0,.86);
    }
    .lines{ display: flex; flex-direction: column; gap: 6px; }
    .line{ height: 4px; border-radius: 999px; background: rgba(0,0,0,.10); }
    .w90{ width: 90%; } .w75{ width: 75%; } .w60{ width: 60%; }

    .phone-actions{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 14px;
    }
    .pill-btn{
      padding: 12px 12px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(0,0,0,.03);
      color: rgba(0,0,0,.82);
      font-weight: 900;
      cursor: pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .pill-btn:hover{
      transform: translateY(-1px);
      background: rgba(0,0,0,.05);
      border-color: rgba(0,0,0,.14);
    }
    .pill-btn.primary{
      background: linear-gradient(180deg, #000000, #000000);
      color: white;
      border-color: rgba(0,0,0,.04);
    }

    /* Logos */
    .logos{
      padding: 34px 0;
      border-top: 1px solid rgba(0,0,0,.08);
      border-bottom: 1px solid rgba(0,0,0,.08);
      background: rgba(0,0,0,.02);
    }
    .logos-grid{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      opacity: .85;
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .logos-grid span{ color: rgba(0,0,0,.62); }
    .logos-grid span:hover{ color: rgba(0,0,0,.86); }

    /* Sections */
    .section{ padding: 84px 0; }
    .section-header{
      text-align: center;
      max-width: 860px;
      margin: 0 auto 40px;
    }
    .section-header h2{
      font-size: clamp(1.8rem, 3.2vw, 2.7rem);
      letter-spacing: -0.05em;
      line-height: 1.1;
      font-weight: 900;
      margin-bottom: 10px;
      color: rgba(0,0,0,.92);
    }
    .section-header p{
      color: var(--muted);
      font-size: 1.08rem;
    }

    /* Features */
    .feature-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .feature-card{
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 18px 40px rgba(0,0,0,.06);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
      overflow: hidden;
      position: relative;
      min-height: 180px;
    }
    .feature-card::before{
      content:"";
      position:absolute; inset:-1px;
      opacity: 0;
      transition: opacity .22s ease;
      pointer-events:none;
    }
    .feature-card:hover{
      transform: translateY(-6px);
      border-color: rgba(0,0,0,.14);
      background: rgba(255,255,255,.85);
    }
    .feature-card:hover::before{ opacity: 1; }

    .feature-icon{
      width: 44px; height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.25rem;
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.08);
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }
    .feature-card h3{
      font-size: 1.15rem;
      font-weight: 950;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
      color: rgba(0,0,0,.88);
    }
    .feature-card p{
      color: rgba(0,0,0,.62);
      font-size: .98rem;
      position: relative;
      z-index: 1;
    }

    /* Pricing */
    .pricing-wrap{
      display: grid;
      place-items: center;
      margin-top: 34px;
    }
    .price-card{
      width: min(640px, 100%);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .price-card::before{
      content:"";
      position:absolute; inset:-2px;
      opacity: .9;
      pointer-events:none;
    }
    .price-card > *{ position: relative; z-index: 1; }

    .badge{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 950;
      font-size: .82rem;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(0,0,0,.03);
      margin-bottom: 14px;
      color: rgba(0,0,0,.78);
    }
    .badge::before{
      content:"";
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(10,132,255,.12);
    }

    .plan-name{
      font-size: 1.35rem;
      font-weight: 950;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
      color: rgba(0,0,0,.88);
    }
    .plan-price{
      font-size: 2.6rem;
      font-weight: 950;
      letter-spacing: -0.05em;
      margin-bottom: 12px;
      color: rgba(0,0,0,.92);
    }
    .plan-price span{
      font-size: 1rem;
      font-weight: 900;
      color: rgba(0,0,0,.58);
      letter-spacing: -0.02em;
      margin-left: 6px;
    }

    .price-card ul{
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 18px 0 18px;
      padding: 0;
    }
    .price-card li{
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(0,0,0,.70);
      font-weight: 750;
    }
    .price-card li::before{
      content: "✓";
      color: rgba(0,0,0,.86);
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.10);
      width: 22px; height: 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: .9rem;
      flex: 0 0 22px;
      transform: translateY(1px);
    }

    /* FAQ */
    .faq-container{
      max-width: 880px;
      margin: 34px auto 0;
      display: grid;
      gap: 12px;
    }
    .faq-item{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 18px;
      overflow: hidden;
      transition: border-color .2s ease, background .2s ease, transform .2s ease;
      box-shadow: 0 14px 30px rgba(0,0,0,.05);
    }
    .faq-item:hover{
      background: rgba(255,255,255,.92);
      border-color: rgba(0,0,0,.14);
      transform: translateY(-2px);
    }

    .faq-question{
      width: 100%;
      background: transparent;
      border: none;
      color: rgba(0,0,0,.88);
      padding: 16px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 950;
      font-size: 1.02rem;
      letter-spacing: -0.02em;
    }
    .faq-icon{
      width: 36px; height: 36px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.10);
      transition: transform .25s ease;
      flex: 0 0 36px;
      color: rgba(0,0,0,.70);
    }
    .faq-item.open .faq-icon{ transform: rotate(45deg); }

    .faq-answer{
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      color: rgba(0,0,0,.66);
      padding: 0 18px;
      font-weight: 650;
    }
    .faq-item.open .faq-answer{ padding: 0 18px 16px; }

    /* CTA */
    .cta{
      padding: 90px 0;
      text-align: center;
    }
    .cta-card{
      background: rgba(255,255,255,.85);
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 28px;
      padding: 44px 22px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position : relative;
    }
    .cta-card::before{
      content:"";
      position:absolute; inset:-2px;
      opacity: .95;
      pointer-events:none;
    }
    .cta-card > *{ position: relative; z-index: 1; }

    .cta h2{
      font-size: clamp(2.0rem, 3.6vw, 3.1rem);
      letter-spacing: -0.05em;
      font-weight: 950;
      margin-bottom: 10px;
      line-height: 1.06;
      color: rgba(0,0,0,.92);
    }
    .cta p{
      font-size: 1.15rem;
      color: rgba(0,0,0,.62);
      margin-bottom: 20px;
      font-weight: 650;
    }

    /* Footer */
    footer{
      border-top: 1px solid rgba(0,0,0,.08);
      padding: 44px 0 26px;
      background: rgba(0,0,0,.02);
    }

    .footer-grid{
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 22px;
      margin-bottom: 22px;
    }

    .footer-brand{
      font-weight: 950;
      letter-spacing: -0.03em;
      font-size: 1.12rem;
      margin-bottom: 8px;
      color: rgba(0,0,0,.88);
    }
    .footer-tagline{ color: rgba(0,0,0,.62); margin-bottom: 14px; font-weight: 650; }

    .social-links{
      display: flex; gap: 10px; align-items:center;
    }
    .social-link{
      width: 40px; height: 40px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      text-decoration: none;
      color: rgba(0,0,0,.80);
      background: rgba(0,0,0,.03);
      border: 1px solid rgba(0,0,0,.10);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      font-weight: 900;
    }
    .social-link:hover{
      transform: translateY(-2px);
      background: rgba(0,0,0,.05);
      border-color: rgba(0,0,0,.14);
    }

    .footer-col h4{
      font-weight: 950;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      font-size: .98rem;
      color: rgba(0,0,0,.82);
    }
    .footer-col a{
      display: block;
      color: rgba(0,0,0,.62);
      text-decoration: none;
      margin-bottom: 10px;
      font-weight: 650;
      transition: color .18s ease;
    }
    .footer-col a:hover{ color: rgba(0,0,0,.86); }

    .footer-bottom{
      text-align: center;
      padding-top: 16px;
      border-top: 1px solid rgba(0,0,0,.08);
      color: rgba(0,0,0,.55);
      font-weight: 650;
      font-size: .92rem;
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .phone-container{ justify-self: start; margin-top: 18px; }
      .feature-grid{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; }
      .nav-links{ display: none; }
      .float-stat{ display: none; }
      .hero{ padding-top: 108px; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce){
      *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
      .phone{ transform: none !important; }
    }