


@font-face {
  font-family: 'PuppyGirl';
  src: url('../assets/fonts/puppygirl-small.woff') format('woff'),
       url('../assets/fonts/puppygirl-small.ttf') format('truetype'),
       url('../assets/fonts/puppygirl-small.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');


:root {
  
  --blue:        #5B8FB9;   
  --blue-deep:   #3E6B8C;
  --blue-ink:    #21455F;   
  --blue-bright: #5BCEFA;   
  --blue-soft:   #B6D0E2;
  --blue-mist:   #E3EEF6;
  --blue-line:   #D2E0EC;

  --cream:       #F5EFE6;   
  --cream-line:  #E8DFD0;
  --accent:      #F7CE3E;   
  --paw:         #F2A0BE;   

  
  --wash-top:    #E8F2FA;
  --wash-bot:    #F8FBFE;

  --surface:     #FFFFFF;
  --ink:         #283943;
  --ink-2:       #50626D;
  --ink-3:       #5E6E79;   
  --line:        #DCE7EF;
  --line-soft:   #EAF1F7;

  
  --m-click:   #5B8FB9;
  --m-zap:     #D86C6C;
  --m-vibrate: #E8B05A;
  --m-sound:   #E0894A;
  --m-api:     #6FB36F;

  --footer:    #1B3346;
  --footer-2:  #142836;

  --font-display: 'PuppyGirl', 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-sm: 10px;  --r-md: 14px;  --r-lg: 18px;  --r-xl: 24px;  --r-pill: 999px;
  --maxw: 1140px;
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--wash-bot);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--blue-bright); }

h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.015em; color: var(--blue-ink); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  text-transform: lowercase; letter-spacing: 0.015em; color: var(--blue);
  margin: 0 0 16px; display: inline-block; line-height: 1;
}
.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-2); }
.mono { font-family: var(--font-mono); letter-spacing: 2px; font-weight: 700; }
.soft { color: var(--ink-2); }
.wordmark { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 24px; border-radius: var(--r-md);
  border: 1.5px solid transparent; cursor: pointer; transition: transform .06s ease, opacity .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn ion-icon, .btn img { font-size: 1.2em; width: 1.2em; height: 1.2em; }
.pixel-icon {
  display: inline-block;
  image-rendering: pixelated;
  object-fit: contain;
  flex: none;
  opacity: 0.72;
}
.pixel-icon.paw-icon { width: 1em; height: 0.93em; }
.pixel-icon.comment-icon { width: 1em; height: 1em; }
.btn .pixel-icon.paw-icon {
  width: 1.2em;
  height: 1.11em;
  filter: brightness(0) invert(1);
  opacity: 1;
}


:where(a, button, .btn, input):focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }
.btn-pixel:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--wash-bot), 0 0 0 6px var(--blue-ink); }
.footer a:focus-visible { outline-color: #fff; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -8px rgba(33,69,95,.55); }

.btn-ghost { background: var(--surface); color: var(--blue-deep); border-color: var(--blue-line); }

.btn-lg { padding: 16px 30px; font-size: 1.08rem; }


.btn-pixel {
  position: relative; background: var(--blue); color: #fff; border: none;
  border-radius: 0; --c: 6px;
  clip-path: polygon(
    0 var(--c), var(--c) var(--c), var(--c) 0,
    calc(100% - var(--c)) 0, calc(100% - var(--c)) var(--c), 100% var(--c),
    100% calc(100% - var(--c)), calc(100% - var(--c)) calc(100% - var(--c)), calc(100% - var(--c)) 100%,
    var(--c) 100%, var(--c) calc(100% - var(--c)), 0 calc(100% - var(--c))
  );
  box-shadow: none;
}


.btn-white { background: #fff; color: var(--blue-deep); filter: drop-shadow(0 7px 16px rgba(33,69,95,.16)); }


.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.86rem; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--blue-line); color: var(--blue-deep);
}
.pill.lc { text-transform: lowercase; font-weight: 600; }


.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  backdrop-filter: saturate(1.2) blur(10px);
  background: var(--blue);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.nav.scrolled .brand,
.nav.scrolled .brand:hover,
.nav.scrolled .brand .name { color: #fff; }
.nav.scrolled .nav-links a:not(.btn) { color: rgba(255, 255, 255, 0.92); }
.nav.scrolled .nav-links a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
.nav-in { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--blue-ink); transition: color .25s ease; }
.brand:hover { color: var(--blue-ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) {
  padding: 8px 14px; border-radius: var(--r-pill); color: var(--ink-2);
  font-weight: 700; font-size: 0.95rem;
  transition: color .25s ease, background .2s ease;
}
.nav-links a:not(.btn):hover { color: var(--blue-deep); background: var(--blue-mist); }
.nav-cta { margin-left: 6px; }
.nav-cta.btn-pixel { background: var(--blue-soft); color: var(--blue-ink); }


@media (max-width: 560px) {
  .brand .name { display: none; }
  .nav-links a:not(.btn) { padding: 8px 10px; }
  .nav-cta { padding: 12px 18px; }
}


.hero {
  position: relative; overflow: hidden;
  margin-top: -66px;            
  background:
    radial-gradient(46% 42% at 50% 46%, rgba(91,143,185,.20), transparent 72%),
    radial-gradient(40% 34% at 12% 10%, rgba(242,160,190,.12), transparent 70%),
    radial-gradient(38% 32% at 88% 14%, rgba(247,206,62,.10), transparent 72%),
    linear-gradient(180deg, var(--wash-top), var(--wash-bot));
}
.hero::before { 
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(91,143,185,.12) 1.4px, transparent 1.4px);
  background-size: 22px 22px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 82%);
  pointer-events: none;
}
.hero-in {
  position: relative; display: flex; justify-content: center;
  padding: 120px 24px 96px; min-height: 680px;   
}
.hero .stage { position: relative; z-index: 1; }
.hero .phone { width: 332px; }

.hero-overlay {
  position: absolute; inset: 66px 0 0; z-index: 3;   
  display: grid; place-items: center; padding: 24px; pointer-events: none;
}
.hero-copy {
  max-width: 840px; text-align: center; padding: 44px 40px;
  background: radial-gradient(66% 60% at 50% 50%,
    rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.5) 66%, rgba(255,255,255,0) 84%);
}
.hero-copy h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.3rem, 6vw, 4.3rem); line-height: 1.06; letter-spacing: 0.01em;
}
.hero-copy .lede { margin: 18px auto 0; max-width: 44ch; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.hero-copy .hero-cta { justify-content: center; margin-top: 30px; }
.hero-copy .hero-cta .btn { pointer-events: auto; }
.hero h1 { color: var(--blue-ink); }
.hero h1 .hl { color: var(--blue); }
.hero .lede { margin-top: 18px; max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 16px; font-size: 0.92rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero-note ion-icon { color: var(--m-api); font-size: 1.1rem; }

.hero-alt { margin-top: 16px; font-size: 0.95rem; color: var(--ink-3); }
.hero-copy .hero-alt a { pointer-events: auto; font-weight: 700; }
.brandline { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-3); }
.brandline b { color: var(--blue-deep); }


.stage { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; aspect-ratio: 9 / 19.2;
  background: #0e1c27; border-radius: 40px; padding: 11px;
  box-shadow: 0 30px 60px -24px rgba(20,40,56,.55), 0 4px 0 rgba(0,0,0,.15);
  z-index: 2;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: linear-gradient(180deg, var(--wash-top), var(--wash-bot));
  display: flex; flex-direction: column;
}
.phone-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; background: #0e1c27; border-radius: 0 0 14px 14px; z-index: 5; }


.app-top { background: var(--blue); color: #fff; padding: 30px 16px 12px; text-align: center; }
.app-top .t { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.app-modes { display: flex; gap: 2px; background: var(--blue); padding: 0 6px 8px; justify-content: center; }
.app-modes span { flex: 1; text-align: center; font-size: 0.62rem; font-weight: 800; color: rgba(255,255,255,.6);
  padding: 6px 0; text-transform: capitalize; }
.app-modes span.on { color: #fff; border-bottom: 2.5px solid #fff; }

.app-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 14px; }
.app-msg { font-size: 0.66rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }


.clicker { position: relative; width: 184px; height: 184px; display: grid; place-items: center; }
.clicker img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated;
  filter: drop-shadow(0 12px 16px rgba(20,40,56,.22)); transition: transform .08s ease; }
.clicker .puck { position: absolute; left: 16%; right: 16%; bottom: 6px; height: 22px; border-radius: 50%;
  background: rgba(91,143,185,.30); filter: blur(8px); z-index: 0; }
.app-chip { display: inline-flex; gap: 6px; align-items: center; background: var(--surface);
  border: 1.5px solid var(--blue-line); border-radius: var(--r-pill); padding: 7px 16px;
  font-size: 0.72rem; font-weight: 700; color: var(--blue-deep); }


.floaters { position: absolute; inset: -24px; pointer-events: none; z-index: 3; }
.floaters img { position: absolute; width: 100px; height: 100px; object-fit: contain; image-rendering: pixelated;
  filter: drop-shadow(0 12px 18px rgba(20,40,56,.26)); animation: bob 5s ease-in-out infinite; }
.floaters .f1 { top: 2%;     left: -7%;  width: 112px; animation-delay: 0s; }
.floaters .f2 { bottom: 14%; left: -11%; width: 92px;  animation-delay: .8s; }
.floaters .f3 { top: -2%;    right: -8%; width: 96px;  animation-delay: 1.6s; }
.floaters .f4 { bottom: 2%;  right: -6%; width: 110px; animation-delay: 2.4s; }
@media (max-width: 460px) {
  .floaters { inset: -8px; }
  .floaters .f1 { width: 76px; left: -2%; } .floaters .f2 { width: 64px; left: -4%; }
  .floaters .f3 { width: 66px; right: -2%; } .floaters .f4 { width: 74px; right: -1%; }
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-12px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .floaters img { animation: none; } }


section { position: relative; }
.band { padding: 88px 0; }
.band-tight { padding: 64px 0; }
.center { text-align: center; }
.sect-head { margin-bottom: 48px; }
.sect-head.lg { margin-bottom: 64px; }
.center .lede { margin-left: auto; margin-right: auto; max-width: 56ch; margin-top: 14px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.head-row .lede { max-width: 46ch; margin-top: 12px; }


.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; }
.step h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.step .n { font-family: var(--font-display); font-size: 1.05rem; color: var(--blue);
  width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 11px;
  background: var(--blue-mist); }
.step p { color: var(--ink-2); font-size: 0.98rem; }
.step .em { color: var(--m-zap); font-style: italic; font-weight: 700; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 26px; } }


.modes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.mode { text-align: center; padding: 22px 12px; border-radius: var(--r-lg); transition: background .15s ease; }
.mode:hover { background: var(--blue-mist); }
.mode img { width: 84px; height: 84px; margin: 0 auto 14px; image-rendering: pixelated;
  filter: drop-shadow(0 8px 14px rgba(20,40,56,.16)); }
.mode h3 { font-size: 1.05rem; margin-bottom: 5px; }
.mode p { font-size: 0.86rem; color: var(--ink-2); line-height: 1.45; }
.modes-note { margin-top: 30px; text-align: center; font-size: 0.95rem; color: var(--ink-2); }
.modes-note ion-icon { vertical-align: -2px; color: var(--blue); }
@media (max-width: 900px) { .modes { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
@media (max-width: 420px) { .modes { grid-template-columns: 1fr; } }


.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; justify-items: center; }
.shot-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shot-col .cap { font-size: 0.9rem; font-weight: 700; color: var(--blue-deep); }
.shot-col .cap small { display: block; font-weight: 600; color: var(--ink-3); font-size: 0.78rem; }
.phone.sm { width: 300px; }
.phone.sm .app-top { padding: 26px 14px 10px; }
.phone.sm .app-top .t { font-size: 1.05rem; }
.phone.sm .clicker { width: 128px; height: 128px; }
@media (max-width: 880px) { .shots { grid-template-columns: 1fr; gap: 40px; } }


.screen-pad { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.sect-label { font-size: 0.6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 4px 2px; }
.row-item { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1.5px solid var(--line-soft);
  border-radius: 12px; padding: 9px 11px; }
.row-item .av { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-mist); display: grid; place-items: center;
  font-size: 0.62rem; font-weight: 800; color: var(--blue-deep); flex: none; }
.row-item .tx { flex: 1; min-width: 0; }
.row-item .tx b { font-size: 0.72rem; display: block; color: var(--ink); }
.row-item .tx span { font-size: 0.62rem; color: var(--ink-3); }
.row-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--m-api); flex: none; }
.theme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.theme-cell { border-radius: 12px; border: 1.5px solid var(--line-soft); overflow: hidden; }
.theme-cell .bar { height: 22px; }
.theme-cell .bd { padding: 8px; display: flex; gap: 4px; align-items: center; }
.theme-cell .bd .dot { width: 9px; height: 9px; border-radius: 50%; }
.theme-cell .bd b { font-size: 0.6rem; color: var(--ink-2); margin-left: auto; }


.theme-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.sw { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); transition: transform .12s ease; }
.sw:hover { transform: translateY(-4px); }
.sw .top { height: 14px; }
.sw .body { aspect-ratio: 1 / 1.1; position: relative; display: grid; place-items: center; }
.sw .body .ring { width: 38px; height: 38px; border-radius: 50%; border: 4px solid; }
.sw .name { font-size: 0.66rem; font-weight: 700; text-align: center; padding: 8px 4px; color: var(--ink-2); }
@media (max-width: 820px) { .theme-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 420px) { .theme-strip { grid-template-columns: repeat(2, 1fr); } }
.terms-line { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }


.why { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }
.pt { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.pt:nth-child(1), .pt:nth-child(2) { border-top: none; }
.pt .ic { flex: none; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-mist); color: var(--blue); font-size: 1.4rem; }
.pt h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pt p { color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 760px) { .why { grid-template-columns: 1fr; gap: 0; }
  .pt:nth-child(2) { border-top: 1px solid var(--line); } }


.aside { background: linear-gradient(180deg, var(--cream), #FBF7F0); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
.aside .wrap { text-align: center; }
.aside .q { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--blue-ink); font-weight: 600; }
.aside .by { margin-top: 12px; color: var(--ink-2); font-size: 0.95rem; }


.dl { background: linear-gradient(180deg, var(--wash-bot), var(--blue-mist)); }
.dl-main { margin-top: 28px; }
.dl-note { margin-top: 18px; font-size: 0.92rem; color: var(--ink-2); max-width: 52ch; margin-left: auto; margin-right: auto; }
.dl-note a { font-weight: 700; }
.dl-others { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; }
.dl-others a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--blue-line); font-size: 0.88rem; font-weight: 700; }
.dl-others a:hover { background: var(--blue-mist); color: var(--blue-deep); border-color: var(--blue-soft); }
.dl-others a ion-icon { font-size: 0.95em; }
.btn-soft { background: var(--blue-mist); color: var(--blue-deep); border-color: var(--blue-line); }
.dl-foot { text-align: center; margin-top: 30px; font-size: 0.92rem; color: var(--ink-2); }
.dl-foot a { font-weight: 700; }


.footer { background: linear-gradient(180deg, var(--footer), var(--footer-2)); color: #B9CBD8; padding: 60px 0 34px; }
.footer a { color: #CFE0EC; }
.footer a:hover { color: #fff; }
.f-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.f-brand { max-width: 320px; }
.f-brand .b { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 12px; }
.f-brand .b img { width: 32px; height: 32px; border-radius: 9px; }
.f-brand .b .name { font-family: var(--font-display); font-size: 1.5rem; }
.f-brand p { font-size: 0.9rem; line-height: 1.5; color: #9DB3C2; }
.socials { display: flex; gap: 18px; margin-top: 18px; }
.socials a { width: 26px; height: 40px; display: inline-grid; place-items: center;
  color: #8AA3B6; transition: color .15s ease, transform .08s ease; }
.socials a:hover { color: #fff; transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; }
.f-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.f-col h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: .12em; color: #7C96A8; margin: 0 0 14px; font-weight: 800; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.f-col a { font-size: 0.92rem; font-weight: 600; display: inline-block; padding: 3px 0; }
.f-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: #8AA0B0; }

.f-bottom .trans { font-weight: 800; background: linear-gradient(90deg,#5BCEFA 0%,#5BCEFA 22%,#F5A9B8 38%,#FFFFFF 50%,#F5A9B8 62%,#5BCEFA 78%,#5BCEFA 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #F5A9B8; }
.f-bottom .heart { color: var(--paw); }


.js .lift { opacity: 0; transform: translateY(18px); }
.js .lift.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .lift { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .head-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hero-in { min-height: 540px; padding: 56px 14px 72px; }
  .hero .phone { width: 264px; }
  .hero-copy { padding: 26px 16px; }
  .hero-copy .hero-cta { gap: 10px; }
}


.bf-lockup { display: inline-flex; align-items: center; gap: 8px; font-weight: 800;
  font-size: 0.82rem; letter-spacing: .01em; line-height: 1; }
.bf-lockup .lead { color: var(--ink-3); font-weight: 700; text-transform: lowercase; letter-spacing: .03em; }
.bf-lockup .mark { width: 19px; height: 19px; border-radius: 5px; display: block; flex: none; }
.bf-lockup .bf { color: #F37B3F; }
.bf-lockup:hover .bf { color: #FF8E4E; }
.footer .bf-lockup .lead { color: rgba(255,255,255,.5); }
.f-brand .bf-lockup { margin-top: 16px; }


.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature + .feature { margin-top: 84px; }
.feature .feat-text h2 { margin-bottom: 14px; }
.feature .feat-text p { color: var(--ink-2); max-width: 44ch; }
.feature .feat-text .pillrow { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.feature .feat-text .more { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-weight: 800; }
.feature .feat-vis { display: flex; justify-content: center; }
.feature.rev .feat-text { order: 2; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature + .feature { margin-top: 60px; }
  .feature.rev .feat-text { order: 0; }
}


.browser { width: 100%; max-width: 380px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: 0 26px 54px -30px rgba(20,40,56,.55); }
.browser .bar { display: flex; align-items: center; gap: 7px; padding: 10px 13px;
  background: #EAF1F7; border-bottom: 1px solid var(--line); }
.browser .bar .d { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-soft); }
.browser .bar .url { margin-left: 8px; font-family: var(--font-mono); letter-spacing: 0;
  font-size: 0.68rem; font-weight: 700; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; }
.linkpage {
  --lp-primary: #ff69b4;
  --lp-surface: #fffafc;
  --lp-surface-variant: #fff5f9;
  --lp-text: #3A3A3A;
  --lp-muted: #9d9598;
  --lp-chip: polygon(6px 0, calc(100% - 6px) 0, calc(100% - 6px) 6px, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 6px calc(100% - 6px), 0 calc(100% - 6px), 0 6px, 6px 6px);
  position: relative;
  padding: 14px;
  max-height: 610px;
  overflow: hidden;
  text-align: center;
  background-color: #fff0f6;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.95) 0 48px, transparent 49px),
    radial-gradient(circle at 86% 72%, rgba(255,255,255,.72) 0 58px, transparent 59px),
    linear-gradient(180deg, #fff0f6, #ffe3f0);
  font-family: var(--font-display);
}
.lp-card {
  background: var(--lp-surface);
  border-radius: 0;
  padding: 18px;
  margin-bottom: 14px;
  color: var(--lp-text);
}
.lp-head { padding-top: 0; overflow: hidden; }
.lp-banner {
  display: block;
  width: calc(100% + 36px);
  height: 112px;
  object-fit: cover;
  margin: 0 -18px;
}
.lp-avatar {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: cover;
  margin: -38px auto 8px;
  position: relative;
}
.linkpage .lp-name { font-size: 1.55rem; font-weight: 800; color: var(--lp-text); margin: 0; line-height: 1; }
.linkpage .handle { font-size: 0.78rem; color: var(--lp-muted); margin: 4px 0 12px; }
.lp-bio,
.lp-desc { margin: 0; color: var(--lp-text); font-size: 0.82rem; line-height: 1.35; }
.lp-desc { color: #716d6f; margin-top: 8px; }
.lp-click img {
  display: block;
  width: 148px;
  height: 148px;
  margin: 0 auto 6px;
  image-rendering: pixelated;
}
.lp-click b { display: block; font-size: 0.9rem; color: var(--lp-text); margin-bottom: 16px; }
.lp-input {
  background: var(--lp-surface-variant);
  color: var(--lp-muted);
  text-align: left;
  padding: 10px 12px;
  font-size: 0.76rem;
}
.lp-section {
  margin: 0 0 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  font-size: 0.68rem;
  font-weight: 800;
}
.lp-links { display: flex; flex-direction: column; gap: 8px; }
.lp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  clip-path: var(--lp-chip);
  background: var(--lp-surface-variant);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--lp-text);
}
.lp-mark,
.lp-x {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--lp-primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
}
.lp-x { color: #000; }
.lp-powered { color: var(--lp-muted); font-size: 0.68rem; }


.phone-embed { width: 420px; }
.phone-embed .phone-screen { background: #F5EFE6; }
.phone-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #F5EFE6;
}


.pound-feed { padding: 12px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pound-post { background: var(--surface); border: 1.5px solid var(--line-soft); border-radius: 12px; padding: 10px 11px; text-align: left; }
.pound-post .ph { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.pound-post .ph .av { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  font-size: 0.56rem; font-weight: 800; }
.pound-post .av-rosie { background: #FBE3EC; color: #C26A8C; }
.pound-post .av-puppy { background: var(--blue-mist); color: var(--blue-deep); }
.pound-post .av-kit { background: #FBEFD6; color: #B98A2E; }
.pound-post .pound-author { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pound-post .pound-author b { font-size: 0.7rem; color: var(--ink); line-height: 1.05; }
.pound-post .pound-author span { font-size: 0.56rem; color: var(--ink-3); line-height: 1.15; white-space: nowrap; }
.pound-post p { font-size: 0.66rem; color: var(--ink-2); line-height: 1.45; margin: 0; }
.pound-post .react { display: flex; gap: 14px; margin-top: 9px; font-size: 0.6rem; color: var(--ink-3); font-weight: 800; }
.pound-post .react span { display: inline-flex; align-items: center; gap: 4px; }
.pound-post .react ion-icon { font-size: 0.85rem; }
.pound-post .react .pixel-icon { width: 0.85rem; height: 0.85rem; opacity: 0.56; }
.pound-post .react .paw-icon { height: 0.79rem; }


.discord { width: 100%; max-width: 430px; background: #313338; border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 26px 54px -30px rgba(20,40,56,.6); color: #DBDEE1; text-align: left; }
.discord .msg { display: flex; gap: 12px; align-items: flex-start; }
.discord .av { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none; }
.discord .av img { width: 100%; height: 100%; object-fit: cover; }
.discord .nm { font-weight: 800; color: #fff; font-size: 0.92rem; display: flex; align-items: center; gap: 7px; }
.discord .bot { background: #5865F2; color: #fff; font-size: 0.56rem; font-weight: 800; padding: 1px 5px; border-radius: 4px; letter-spacing: .04em; text-transform: uppercase; }
.discord .cmd { font-size: 0.82rem; color: #B5BAC1; margin-top: 3px; }
.discord .cmd .slash { color: #9FA8FF; font-weight: 700; }
.discord .cmd b { color: #fff; }


.linkpage .mini-clicker { width: 92px; margin: 2px auto 18px; line-height: 0; }


@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.js .hero-copy > * { opacity: 0; animation: heroUp .7s cubic-bezier(.2,.72,.2,1) both; }
.js .hero-copy > *:nth-child(1) { animation-delay: .14s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .22s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .30s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .38s; }


@keyframes floatersIn { to { opacity: 1; } }
.js .floaters { opacity: 0; animation: floatersIn .6s .5s ease both; }
.floaters img { filter: drop-shadow(4px 5px 0 rgba(33,69,95,.18)) drop-shadow(0 10px 14px rgba(20,40,56,.18)); }
.floaters .f1 { rotate: -8deg; } .floaters .f2 { rotate: 7deg; }
.floaters .f3 { rotate: 9deg; }  .floaters .f4 { rotate: -6deg; }


.clicker img { filter: drop-shadow(3px 4px 0 rgba(33,69,95,.12)) drop-shadow(0 12px 16px rgba(20,40,56,.20)); }


.footer { position: relative; }
.footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer .wrap { position: relative; z-index: 1; }


.mode-groups { position: relative; border-top: 1.5px solid var(--blue-line); height: 0; margin: 2px 0 34px; }
.mode-groups span {
  position: absolute; top: 0; transform: translate(-50%, -50%); white-space: nowrap;
  padding: 0 12px; background: var(--wash-bot);
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3);
}
.mode-groups .g1 { left: 10%; }
.mode-groups .g2 { left: 60%; }
@media (max-width: 900px) { .mode-groups { display: none; } }

.legal-main {
  background: linear-gradient(180deg, var(--wash-top), var(--wash-bot));
  padding: 72px 0 88px;
}
.legal-wrap {
  max-width: 840px;
}
.legal-wrap .back {
  margin-bottom: 34px;
}
.legal-wrap h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.legal-wrap .last-updated,
.legal-wrap .intro {
  color: var(--ink-2);
}
.legal-wrap .last-updated {
  margin-top: 14px;
  font-weight: 800;
  font-size: 0.92rem;
}
.legal-wrap .intro {
  margin-top: 26px;
  font-size: 1.08rem;
}
.legal-wrap h2 {
  margin-top: 42px;
  font-size: clamp(1.32rem, 3vw, 1.8rem);
}
.legal-wrap h3 {
  margin-top: 28px;
}
.legal-wrap p,
.legal-wrap li {
  color: var(--ink-2);
}
.legal-wrap p {
  margin-top: 12px;
}
.legal-wrap ul,
.legal-wrap ol {
  margin: 14px 0 0;
  padding-left: 24px;
}
.legal-wrap li + li {
  margin-top: 8px;
}
.legal-wrap a {
  font-weight: 800;
}
.highlight-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1.5px solid var(--blue-line);
  border-radius: var(--r-md);
}
.highlight-box p {
  margin: 0;
}
.legal-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
