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

    html {
      scroll-behavior: smooth
    }

    :root {
      --w: #fff;
      --off: #f7f6f3;
      --ink: #0b0c10;
      --mid: #6a6d7c;
      --faint: #b8bbc8;
      --border: #e6e4de;
      --grad: linear-gradient(135deg, #00e5cc, #4a9eff 52%, #8b3fff);
      --ff: 'Fraunces', Georgia, serif;
      --fs: 'Geist', sans-serif;
      --fm: 'Geist Mono', monospace;
    }

    body {
      background: var(--w);
      color: var(--ink);
      font-family: var(--fs);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

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

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 56px;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border)
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 9px
    }

    .logo-m {
      width: 26px;
      height: 26px;
      border-radius: 5px;
      background: var(--grad);
      display: grid;
      place-items: center;
      font-family: var(--fm);
      font-size: .64rem;
      color: #fff
    }

    .logo-n {
      font-weight: 600;
      font-size: .92rem;
      letter-spacing: .03em
    }

    .nav-l {
      display: flex;
      gap: 36px
    }

    .nav-l a {
      font-size: .82rem;
      color: var(--ink);
      transition: color .2s
    }

    .nav-l a:hover {
      text-decoration: underline;
    }

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

    .lb {
      background: none;
      border: none;
      font-family: var(--fm);
      font-size: .6rem;
      color: var(--faint);
      cursor: pointer;
      padding: 2px 5px;
      transition: color .2s
    }

    .lb.on,
    .lb:hover {
      color: var(--mid)
    }

    .ncta {
      background: var(--ink);
      color: #fff;
      font-size: .8rem;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: 6px;
      transition: all .2s
    }

    .ncta:hover {
      opacity: .85;
      transform: translateY(-1px)
    }

    /* HERO — full width centered, generous space */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 130px 48px 100px;
      position: relative
    }

    .h-eyebrow {
      font-family: var(--fm);
      font-size: .64rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      opacity: 0;
      animation: up .5s .05s forwards
    }

    .h-pip {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0
    }

    .h-title {
      font-family: var(--ff);
      font-size: clamp(3.2rem, 6.5vw, 7rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -.035em;
      max-width: 1000px;
      margin-bottom: 28px;
      opacity: 0;
      animation: up .6s .15s forwards
    }

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

    .h-sub {
      font-size: 1.1rem;
      color: var(--mid);
      line-height: 1.7;
      max-width: 480px;
      font-weight: 300;
      margin-bottom: 10px;
      opacity: 0;
      animation: up .6s .28s forwards
    }

    .h-honest {
      font-family: var(--fm);
      font-size: .72rem;
      color: var(--faint);
      letter-spacing: .06em;
      margin-bottom: 44px;
      opacity: 0;
      animation: up .5s .36s forwards
    }

    .h-ctas {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      opacity: 0;
      animation: up .5s .44s forwards
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: #fff;
      font-size: .88rem;
      font-weight: 500;
      padding: 14px 26px;
      border-radius: 8px;
      transition: all .2s
    }

    .btn-dark:hover {
      opacity: .85;
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .16)
    }

    .g-dot {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      display: grid;
      place-items: center;
      font-size: .58rem;
      font-weight: 700;
      flex-shrink: 0
    }

    .btn-out {
      font-size: .85rem;
      color: var(--mid);
      border: 1px solid var(--border);
      padding: 14px 22px;
      border-radius: 8px;
      transition: all .2s
    }

    .btn-out:hover {
      border-color: var(--faint);
      color: var(--ink)
    }

    .h-fn {
      margin-top: 18px;
      font-family: var(--fm);
      font-size: .6rem;
      color: var(--faint);
      letter-spacing: .08em;
      opacity: 0;
      animation: up .5s .56s forwards
    }

    /* PHONE */
    .h-phone {
      margin-top: 72px;
      position: relative;
      display: flex;
      justify-content: center;
      opacity: 0;
      animation: up .8s .5s forwards
    }

    .phone {
      width: 230px;
      background: #0b0c10;
      border-radius: 38px;
      padding: 9px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .16), 0 12px 36px rgba(0, 0, 0, .09), 0 0 0 1px rgba(0, 0, 0, .05);
      position: relative
    }

    .phone::before {
      content: '';
      position: absolute;
      top: 13px;
      left: 50%;
      transform: translateX(-50%);
      width: 52px;
      height: 4px;
      background: rgba(255, 255, 255, .11);
      border-radius: 2px;
      z-index: 2
    }

    .phone-s {
      border-radius: 31px;
      overflow: hidden;
      background: #1a1c28
    }

    .phone-s img {
      width: 100%;
      display: block
    }

    /* floating tags */
    .ftag {
      position: absolute;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 9px 13px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap
    }

    .ftag-a {
      bottom: 64px;
      left: -100px
    }

    .ftag-b {
      top: 72px;
      right: -88px
    }

    .ftag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .ftag-dot.live {
      background: #10b981;
      animation: blink 2s infinite
    }

    .ftag-dot.ai {
      background: #f6c90e
    }

    .ftag-body {
      display: flex;
      flex-direction: column;
      gap: 1px
    }

    .ftag-lbl {
      font-family: var(--fm);
      font-size: .52rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--mid)
    }

    .ftag-val {
      font-family: var(--fm);
      font-size: .7rem;
      font-weight: 500;
      color: var(--ink)
    }

    .phone-glow {
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 50px;
      background: radial-gradient(ellipse, rgba(0, 0, 0, .1), transparent 70%);
      filter: blur(12px)
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    /* TICKER */
    .ticker {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      overflow: hidden;
      position: relative;
      background: var(--w)
    }

    .ticker::before,
    .ticker::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2
    }

    .ticker::before {
      left: 0;
      background: linear-gradient(90deg, #fff, transparent)
    }

    .ticker::after {
      right: 0;
      background: linear-gradient(-90deg, #fff, transparent)
    }

    .t-track {
      display: flex;
      animation: tick 38s linear infinite;
      white-space: nowrap
    }

    .t-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      padding: 0 20px;
      font-family: var(--fm);
      font-size: .62rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--faint)
    }

    .t-sep {
      color: var(--border)
    }

    @keyframes tick {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* GRAPH SECTION */
    .graph-sec {
      padding: 120px 48px;
      background: var(--off)
    }

    .sec-top {
      text-align: center;
      margin-bottom: 72px
    }

    .sec-lbl {
      font-family: var(--fm);
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 14px
    }

    .sec-title {
      font-family: var(--ff);
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -.025em;
      max-width: 600px;
      margin: 0 auto
    }

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

    .graph-box {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      height: 460px
    }

    #fg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%
    }

    /* HONEST SECTION */
    .honest-sec {
      padding: 120px 48px;
      background: var(--w)
    }

    .honest-inner {
      max-width: 1020px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 88px;
      align-items: start
    }

    .hl .sec-lbl {
      text-align: left;
      margin-bottom: 14px
    }

    .hl-title {
      font-family: var(--ff);
      font-size: clamp(1.9rem, 2.8vw, 2.8rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 24px
    }

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

    .hl-p {
      font-size: .93rem;
      color: var(--mid);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 14px
    }

    .product-list {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden
    }

    .pl-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 22px;
      border-bottom: 1px solid var(--border);
      background: var(--w);
      transition: background .2s
    }

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

    .pl-item:hover {
      background: var(--off)
    }

    .pl-badge {
      flex-shrink: 0;
      font-family: var(--fm);
      font-size: .56rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid;
      margin-top: 2px
    }

    .pl-badge.live {
      color: #059669;
      border-color: rgba(5, 150, 105, .5);
      background: rgba(5, 150, 105, .05)
    }

    .pl-badge.building {
      color: var(--mid);
      border-color: var(--mid)
    }

    .pl-badge.coming-soon {
      color: #824dff;
      border-color: #824dff;
      background: rgba(130, 77, 255, .05);
    }

    .pl-body {
      width: 100%;
    }

    .pl-name {
      font-size: .9rem;
      font-weight: 500;
      margin-bottom: 3px
    }

    .pl-desc {
      font-size: .78rem;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.55
    }

    /* INSIGHT SECTION */
    .insight-sec {
      padding: 120px 48px;
      background: var(--off)
    }

    .insight-inner {
      max-width: 1020px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 88px;
      align-items: center
    }

    .il-p {
      font-size: .93rem;
      color: var(--mid);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 28px
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--w);
      margin-bottom: 32px
    }

    .step {
      display: flex;
      gap: 14px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      transition: background .2s
    }

    .step:last-child {
      border-bottom: none
    }

    .step:hover {
      background: var(--off)
    }

    .step-n {
      font-family: var(--fm);
      font-size: .58rem;
      color: var(--mid);
      width: 20px;
      flex-shrink: 0;
      padding-top: 2px
    }

    .step-t {
      font-size: .88rem;
      font-weight: 500;
      margin-bottom: 2px
    }

    .step-d {
      font-size: .78rem;
      color: var(--mid);
      font-weight: 300
    }

    .ir {
      display: flex;
      justify-content: center
    }

    .iphone {
      width: 210px;
      background: #0b0c10;
      border-radius: 34px;
      padding: 8px;
      box-shadow: 0 32px 72px rgba(0, 0, 0, .14), 0 0 0 1px rgba(0, 0, 0, .04);
      position: relative
    }

    .iphone::before {
      content: '';
      position: absolute;
      top: 11px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 3px;
      background: rgba(255, 255, 255, .1);
      border-radius: 2px
    }

    .iphone-s {
      border-radius: 28px;
      overflow: hidden
    }

    .iphone-s img {
      width: 100%;
      display: block
    }

    /* VISION SECTION */
    .vision-sec {
      padding: 120px 48px;
      background: var(--ink);
      color: #edecea
    }

    .vision-inner {
      max-width: 1020px;
      margin: 0 auto
    }

    .v-lbl {
      font-family: var(--fm);
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(237, 236, 234, .25);
      margin-bottom: 14px
    }

    .v-title {
      font-family: var(--ff);
      font-size: clamp(2.4rem, 4.5vw, 5rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -.035em;
      margin-bottom: 80px;
      max-width: 780px
    }

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

    .v-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 56px
    }

    .v-item-n {
      font-family: var(--fm);
      font-size: .56rem;
      color: rgba(237, 236, 234, .18);
      letter-spacing: .15em;
      margin-bottom: 14px
    }

    .v-item h3 {
      font-size: .95rem;
      font-weight: 500;
      margin-bottom: 10px;
      color: #edecea
    }

    .v-item p {
      font-size: .83rem;
      color: rgba(237, 236, 234, .4);
      line-height: 1.75;
      font-weight: 300
    }

    /* CTA */
    .cta-sec {
      padding: 120px 48px;
      text-align: center;
      background: var(--w)
    }

    .cta-title {
      font-family: var(--ff);
      font-size: clamp(2.4rem, 4.5vw, 5rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -.035em;
      margin-bottom: 20px
    }

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

    .cta-p {
      font-size: .95rem;
      color: var(--mid);
      max-width: 380px;
      margin: 0 auto 40px;
      line-height: 1.75;
      font-weight: 300
    }

    .cta-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap
    }

    .cta-note {
      margin-top: 16px;
      font-family: var(--fm);
      font-size: .58rem;
      color: var(--faint);
      letter-spacing: .08em
    }

    /* FOOTER */
    footer {
      padding: 80px 56px 40px;
      border-top: 1px solid var(--border);
      background: #fafafa;
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .ft-col-brand .logo {
      margin-bottom: 20px;
    }

    .ft-slogan {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--mid);
      max-width: 320px;
      font-weight: 400;
    }

    .ft-h {
      font-family: var(--fm);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink);
      margin-bottom: 24px;
      font-weight: 600;
    }

    .ft-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ft-links a {
      font-size: 0.88rem;
      color: var(--mid);
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .ft-links a:hover {
      color: var(--ink);
      transform: translateX(3px);
    }

    .ft-social-icon {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .ft-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .ft-c {
      font-size: 0.75rem;
      color: var(--mid);
      letter-spacing: 0.02em;
    }

    @media (max-width: 900px) {
      .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
      .ft-col-brand {
        grid-column: span 2;
      }
    }

    @media (max-width: 600px) {
      footer {
        padding: 60px 24px 32px;
      }
      .ft-grid {
        grid-template-columns: 1fr;
      }
      .ft-col-brand {
        grid-column: span 1;
      }
      .ft-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }

    /* REVEAL */
    .rv {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease
    }

    .rv.on {
      opacity: 1;
      transform: none
    }

    /* RESPONSIVE */
    @media(max-width:900px) {
      nav {
        padding: 14px 20px
      }

      .nav-l {
        display: none
      }

      .hero,
      .graph-sec,
      .honest-sec,
      .insight-sec,
      .vision-sec,
      .cta-sec {
        padding: 80px 20px
      }

      .honest-inner,
      .insight-inner {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .v-grid {
        grid-template-columns: 1fr;
        gap: 36px
      }

      footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start
      }

      .ftag {
        padding: 7px 11px;
        scale: 0.9;
        z-index: 10;
      }
      .ftag-a {
        left: -20px;
        bottom: 30px;
      }
      .ftag-b {
        right: -20px;
        top: 30px;
      }

      .graph-box {
        height: 320px
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--mid);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 1000;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: var(--ink);
      transform: translateY(-5px);
    }

    .back-to-top svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }