:root {
      --cream: #fff7f1;
      --coral: #ff6b4a;
      --coral-dark: #e5563d;
      --page-ink: #2a1c18;
      --page-muted: rgba(42,28,24,.65);
      --page-line: rgba(42,28,24,.12);
      --app: #0d0b12;
      --app-2: #111016;
      --card: #1a1820;
      --violet: #8B5CF6;
      --violet-2: #A855F7;
      --magenta: #D946A6;
      --green: #1E7A3C;
      --red: #F03A2F;
      --grey: #8a8a94;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { min-height: 100%; }
    body {
      font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--cream);
      color: var(--page-ink);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    nav {
      position: sticky; top: 14px; z-index: 50;
      display: flex; align-items: center; justify-content: space-between;
      width: min(1180px, calc(100% - 40px)); margin: 14px auto 0;
      padding: 10px 12px 10px 18px;
      background: rgba(255,255,255,.92);
      border: 1px solid var(--page-line);
      border-radius: 999px;
      backdrop-filter: blur(16px);
    }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -.02em; color: var(--page-ink); }
    .mark {
      width: 32px; height: 32px; border-radius: 8px;
      object-fit: cover; background: none;
      box-shadow: 0 0 0 1px var(--page-line);
    }
    .nav-cta { display: flex; align-items: center; gap: 8px; }
    .ghost, .btn {
      display: inline-flex; align-items: center; justify-content: center;
      height: 40px; padding: 0 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
      white-space: nowrap;
    }
    .ghost { color: var(--page-muted); }
    .ghost:hover { color: var(--page-ink); }
    .btn {
      color: white;
      background: var(--coral);
      box-shadow: 0 2px 8px rgba(255,107,74,.3);
    }
    .stage {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; align-items: center;
      padding: 18px 16px 28px;
      overflow: visible;
    }
    .stage-copy { text-align: center; max-width: 36ch; margin-bottom: 16px; }
    .stage-copy h1 { font-size: 26px; letter-spacing: -.03em; font-weight: 700; color: var(--page-ink); }
    .stage-copy h1 em { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }
    .stage-copy p { color: var(--page-muted); margin-top: 8px; font-size: 15px; }
    .stores { display:flex; gap:8px; justify-content:center; align-items:center; flex-wrap:wrap; margin-top:14px; overflow:visible; }
    .stores a { display:flex; align-items:center; height:44px; overflow:visible; }
    .stores img { height:40px; width:auto; display:block; }
    .stores a:last-child img { height:60px; margin-top:-10px; margin-bottom:-10px; }
    .phone-wrap {
      position: relative;
      width: min(360px, calc(100vw - 32px), calc((100dvh - 280px) * 390 / 844));
      aspect-ratio: 390 / 844;
      height: auto;
      max-height: calc(100dvh - 280px);
    }
    .phone {
      width: 100%; height: 100%;
      border-radius: 46px;
      background: #000;
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 50px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(139,92,246,.2), inset 0 0 0 10px #05070d;
      overflow: hidden; position: relative;
      isolation: isolate;
    }
    .island {
      position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
      width: 118px; height: 34px; background: #000; border-radius: 20px; z-index: 20; pointer-events: none;
    }
    .island .mic { position:absolute; left: 18px; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: #f97316; }
    #view { flex: 1; min-height: 0; min-width: 0; width: 100%; display: flex; flex-direction: column; overflow: hidden; }
    .app {
      position: absolute; inset: 10px; border-radius: 36px;
      background: var(--app); overflow: hidden;
      display: flex; flex-direction: column;
      min-width: 0; width: auto;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Instrument Sans", sans-serif;
      color: #fff;
    }
    .app:has(.drawer.on) #view { visibility: hidden; }
    .statusbar {
      height: 44px; display: flex; align-items: flex-end; justify-content: space-between;
      padding: 0 22px 6px; font-size: 15px; font-weight: 600; flex-shrink: 0;
      letter-spacing: -.02em;
    }
    .sb-right { display: flex; gap: 5px; align-items: center; font-size: 11px; font-weight: 700; }
    .sb-bars { display:flex; gap:1.5px; align-items:flex-end; height: 11px; }
    .sb-bars i { width: 3px; background: #fff; border-radius: 1px; display:block; }
    .sb-bars i:nth-child(1){height:4px} .sb-bars i:nth-child(2){height:6px} .sb-bars i:nth-child(3){height:8px} .sb-bars i:nth-child(4){height:11px}
    .sb-bat { width: 22px; height: 11px; border: 1.4px solid #fff; border-radius: 3px; position: relative; }
    .sb-bat::after { content:""; position:absolute; right:-3px; top:3px; width:2px; height:4px; background:#fff; border-radius:0 1px 1px 0; }
    .sb-bat b { display:block; height:100%; width:70%; background:#fff; }
    .idbar {
      display: flex; align-items: center; justify-content: center;
      padding: 2px 16px 8px; position: relative; flex-shrink: 0; min-height: 42px;
    }
    .idbar .ident {
      color: var(--violet-2); font-weight: 600; font-size: 17px;
      max-width: 68%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .ham {
      position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
      width: 38px; height: 38px; border-radius: 50%;
      border: 1.5px solid rgba(168,85,247,.7);
      background: rgba(26,24,32,.55);
      display: grid; place-items: center; cursor: pointer;
    }
    .ham span, .ham span::before, .ham span::after {
      display: block; width: 14px; height: 1.6px; background: var(--violet-2); border-radius: 2px; position: relative;
    }
    .ham span::before, .ham span::after { content: ""; position: absolute; left: 0; }
    .ham span::before { top: -5px; }
    .ham span::after { top: 5px; }
    .thread-nav {
      display: flex; align-items: center; justify-content: center;
      padding: 4px 16px 10px; position: relative; flex-shrink: 0;
    }
    .thread-nav .who { font-weight: 600; font-size: 17px; }
    .icon-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 36px; height: 36px; display: grid; place-items: center;
      background: none; border: 0; color: #fff; cursor: pointer;
    }
    .icon-btn.left { left: 6px; }
    .icon-btn.right { right: 8px; color: #fff; }
    .list { flex: 1; overflow-y: auto; padding: 2px 0 4px; -webkit-overflow-scrolling: touch; }
    .row {
      display: grid; grid-template-columns: 48px minmax(0,1fr) auto 28px;
      gap: 10px; align-items: center;
      padding: 9px 16px; cursor: pointer;
      min-width: 0;
    }
    .row > div:nth-child(2) { min-width: 0; overflow: hidden; }
    .row:active { background: rgba(255,255,255,.04); }
    .avatar {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--violet); color: #fff;
      display: grid; place-items: center; font-weight: 700; font-size: 20px;
    }
    .row .name { font-weight: 650; font-size: 16px; letter-spacing: -.01em; }
    .row .snip { color: var(--grey); font-size: 13px; margin-top: 2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .row .when { color: var(--grey); font-size: 12px; padding-top: 2px; }
    .call-mini {
      width: 28px; height: 28px; border-radius: 0; background: transparent;
      display: grid; place-items: center; color: var(--violet-2); border: 0; cursor: pointer; padding: 0;
    }
    .tabs {
      display: grid; grid-template-columns: 1fr 1fr;
      padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255,255,255,.06);
      background: var(--app-2); flex-shrink: 0;
    }
    .tab {
      background: none; border: 0; color: var(--grey);
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      font-size: 11px; font-weight: 600; cursor: pointer;
    }
    .tab.on { color: var(--violet-2); }
    .thread { flex: 1; overflow-y: auto; padding: 8px 14px 10px; display: flex; flex-direction: column; gap: 8px; }
    .chip {
      align-self: center; background: var(--card); color: var(--grey);
      font-size: 12px; padding: 4px 12px; border-radius: 999px;
    }
    .pill {
      align-self: center; background: var(--card); color: #c4b5fd;
      font-size: 13px; padding: 8px 16px 6px; border-radius: 14px;
      text-align: center; min-width: 140px;
    }
    .pill small { display: block; text-align: center; color: var(--grey); font-size: 11px; margin-top: 2px; font-weight: 500; }
    .bubble { max-width: 78%; padding: 9px 12px 16px; border-radius: 16px; font-size: 15px; position: relative; line-height: 1.35; }
    .bubble .from { color: var(--violet-2); font-size: 12px; font-weight: 600; margin-bottom: 3px; }
    .bubble .t { position: absolute; right: 10px; bottom: 4px; font-size: 10px; color: rgba(255,255,255,.5); }
    .out { align-self: flex-end; background: linear-gradient(180deg, #A855F7, #7c3aed); }
    .in { align-self: flex-start; background: var(--card); }
    .composer {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 12px calc(10px + env(safe-area-inset-bottom));
      background: var(--app); flex-shrink: 0;
    }
    .cam, .send {
      width: 40px; height: 40px; border: 0; cursor: pointer; color: #fff;
      background: var(--violet); display: grid; place-items: center; flex-shrink: 0;
      border-radius: 50%;
    }
    .composer input {
      flex: 1; height: 40px; border-radius: 999px; border: 0;
      background: var(--card); color: #fff; padding: 0 16px; font-size: 15px; outline: none;
    }
    .composer input::placeholder { color: var(--grey); }
    .dialer { flex: 1; display: flex; flex-direction: column; padding: 4px 24px 8px; min-height: 0; }
    .num-field { text-align: center; margin: 4px 0 14px; min-height: 52px; }
    .num-field .ph { color: var(--grey); font-size: 22px; font-weight: 500; }
    .num-field .val { font-size: 26px; font-weight: 600; letter-spacing: .02em; word-break: break-all; }
    .num-field .under { width: 88px; height: 2px; background: var(--violet); margin: 8px auto 0; border-radius: 2px; }
    .keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; flex: 1; min-height: 0; }
    .key {
      background: var(--card); border: 1px solid rgba(139,92,246,.22);
      border-radius: 16px; color: #fff; cursor: pointer;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      min-height: 0;
    }
    .key b { font-size: 24px; font-weight: 500; line-height: 1; }
    .key span { font-size: 9px; color: var(--grey); letter-spacing: .14em; margin-top: 3px; }
    .dial-actions {
      display: grid; grid-template-columns: 52px 1fr 52px; gap: 14px;
      align-items: center; margin: 12px 4px 6px; flex-shrink: 0;
    }
    .round {
      width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
      background: var(--violet); color: #fff; display: grid; place-items: center;
    }
    .call-go {
      height: 52px; border-radius: 999px; border: 0; cursor: pointer;
      background: var(--green); color: #fff; display: grid; place-items: center;
    }
    .call {
      flex: 1; min-height: 0; overflow: hidden; display: flex; flex-direction: column; align-items: center;
      padding: 6px 16px 14px;
      background: radial-gradient(circle at 50% 32%, rgba(139,92,246,.38), transparent 58%), var(--app);
    }
    .min {
      align-self: flex-start; background: var(--card); border: 0; color: #fff;
      border-radius: 999px; padding: 7px 12px; font-size: 13px; cursor: pointer;
      display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
    }
    .call-top {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      margin: 12px 0 4px; font-weight: 650; font-size: 15px; flex-shrink: 0;
    }
    .active {
      border: 1px solid var(--green); color: #4ade80; border-radius: 999px;
      padding: 4px 10px; font-size: 12px; font-weight: 650;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .active::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
    .call-av {
      width: 88px; height: 88px; border-radius: 50%; background: var(--card);
      display: grid; place-items: center; font-size: 36px; font-weight: 600; margin-top: 18px; flex-shrink: 0;
    }
    .call-id { font-size: 22px; font-weight: 650; margin-top: 14px; letter-spacing: -.02em; text-align: center; padding: 0 8px; word-break: break-all; }
    .timer { color: var(--grey); margin-top: 6px; font-size: 16px; }
    .call-ctrls { display: flex; gap: 22px; margin-top: auto; margin-bottom: 16px; flex-shrink: 0; }
    .ctrl { background: none; border: 0; color: var(--grey); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 12px; }
    .ctrl i {
      width: 58px; height: 58px; border-radius: 50%; background: rgba(26,24,32,.88);
      display: grid; place-items: center; color: #fff;
    }
    .ctrl.on i { background: #fff; color: #111; }
    .hang {
      width: 68px; height: 68px; flex-shrink: 0; z-index: 3; margin-bottom: 2px;
      border-radius: 50%; border: 0; background: var(--red);
      color: #fff; display: grid; place-items: center; cursor: pointer;
    }
    .hang svg { transform: rotate(135deg); }
    .scrim {
      position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 12;
      opacity: 0; pointer-events: none; transition: opacity .2s;
    }
    .scrim.on { opacity: 1; pointer-events: auto; }
    .drawer {
      position: absolute; inset: 0; width: 100%; z-index: 13;
      background: var(--app-2); transform: translateX(-100%); transition: transform .25s ease;
      display: flex; flex-direction: column; padding: 48px 16px 12px;
      overflow: hidden; min-width: 0;
    }
    .drawer.on { transform: translateX(0); }
    .d-av {
      width: 76px; height: 76px; border-radius: 50%; margin: 0 auto;
      background: linear-gradient(160deg, var(--magenta), var(--violet));
      display: grid; place-items: center; font-size: 26px; font-weight: 700;
    }
    .d-id { text-align: center; font-size: 18px; font-weight: 650; margin-top: 12px; word-break: break-all; padding: 0 12px; }
    .d-active {
      display: flex; align-items: center; gap: 6px; margin: 10px auto 16px;
      background: var(--card); border-radius: 999px; padding: 4px 12px; font-size: 12px; width: max-content;
    }
    .d-active i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
    .label { color: var(--grey); font-size: 11px; letter-spacing: .16em; margin: 4px 8px 8px; font-weight: 600; }
    .prods { flex: 1; overflow-y: auto; min-height: 0; }
    .prod {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 10px; border-radius: 14px; cursor: pointer; margin-bottom: 2px;
      border: 1px solid transparent;
    }
    .prod.on { background: var(--card); border-color: rgba(168,85,247,.45); }
    .prod .pa {
      width: 34px; height: 34px; border-radius: 50%;
      background: linear-gradient(160deg, var(--magenta), var(--violet));
      display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
    }
    .prod span { flex: 1; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .copy { background: none; border: 0; color: var(--grey); cursor: pointer; }
    .d-foot {
      margin-top: 8px; display: flex; justify-content: space-around;
      padding: 12px 8px max(10px, env(safe-area-inset-bottom));
      flex-shrink: 0;
    }
    .d-foot button {
      background: none; border: 0; color: var(--grey); cursor: pointer;
      display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px;
    }
    .d-foot i {
      width: 44px; height: 44px; border-radius: 50%; background: var(--violet);
      color: #fff; display: grid; place-items: center;
    }
    .cta-pop {
      position: absolute; left: 12px; right: 12px; bottom: 18px; z-index: 14;
      background: var(--card); border: 1px solid rgba(139,92,246,.35);
      border-radius: 18px; padding: 14px; text-align: center;
      display: none;
    }
    .cta-pop.on { display: block; }
    .cta-pop p { font-size: 14px; margin-bottom: 10px; }
    .mob-get {
      display: none; position: relative; z-index: 70;
      padding: 8px 12px; background: var(--cream);
      border-bottom: 1px solid var(--page-line);
      align-items: center; justify-content: space-between; gap: 10px;
    }
    .mob-get span { font-size: 13px; color: var(--page-ink); font-weight: 600; }
    .mob-get a { height: 32px; padding: 0 12px; font-size: 13px; }
    @media (max-height: 860px) {
      .stage-copy p { display: none; }
      .stage-copy h1 { font-size: 22px; }
      .stage { padding: 12px 16px 20px; }
    }
    @media (max-width: 900px) {
      nav, .stage-copy { display: none; }
      .mob-get { display: flex; }
      .stage { padding: 0; }
      .phone-wrap { width: 100%; height: calc(100dvh - 52px); max-height: none; aspect-ratio: auto; min-height: 0; }
      .phone { border-radius: 0; border: 0; box-shadow: none; }
      .app { inset: 0; border-radius: 0; }
      .island { display: none; }
    }
