/* Self-hosted variable fonts (Google Fonts latin subset, OFL) */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/fredoka-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/assets/fonts/nunito-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/material-symbols-rounded.woff2') format('woff2');
}

:root {
  --ink: #0B0B0B;
  --paper: #FFFFFF;
  --cream: #FFF3CC;
  --yellow: #FFE817;
  --purple: #8B2FE8;
  --pink: #FF2E93;
  --rose: #FFD7EA;
  --blue: #E5F2FF;
  --mint: #E2F7DA;
  --teal: #DFF7FA;
  --danger: #D22F2F;
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-btn: 4px 4px 0 var(--ink);
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(34px, 6vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 20px; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { left: 16px; }

/* Karido sticker primitives */
.card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  padding: 4px 11px;
  font-weight: 800;
  font-size: 13px;
  background: var(--blue);
}
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: none;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  background: var(--yellow);
}
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.sticker .material-symbols-rounded { font-size: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  border: 3px solid var(--ink);
  border-radius: 13px;
  box-shadow: var(--shadow-btn);
  padding: 13px 22px;
  text-decoration: none;
  transition: transform .06s ease, box-shadow .06s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}
.btn--pink { background: var(--pink); }
.btn--ghost { background: #fff; color: var(--ink); }
.btn--sm { padding: 9px 15px; font-size: 14px; white-space: nowrap; }
.field {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2.5px solid var(--ink);
  border-radius: 11px;
  padding: 12px 14px;
  background: #fff;
}
.field:focus { outline: none; box-shadow: 0 0 0 3px var(--purple); }

/* Header */
.site-header { border-bottom: 3px solid var(--ink); background: var(--yellow); }
.nav { display: flex; align-items: center; gap: 14px 18px; padding: 14px 0; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand img {
  width: 36px;
  height: 36px;
  border: 2.5px solid var(--ink);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.brand span { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 24px; }
.nav__links { display: flex; gap: 18px; margin-left: 12px; }
.nav__links a { text-decoration: none; font-weight: 800; opacity: .8; }
.nav__links a:hover { opacity: 1; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__collapse { display: contents; }
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.nav__toggle:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.nav__toggle .material-symbols-rounded { font-size: 26px; }
.lang {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 9px;
  overflow: hidden;
  font-weight: 900;
  font-size: 13px;
}
.lang a { padding: 5px 10px; text-decoration: none; }
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }

/* Shared sections */
.section { padding: 64px 0; border-bottom: 3px solid var(--ink); }
.section__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.section__head .rule { flex: 1; border-bottom: 2px solid rgba(11, 11, 11, .16); }
.eyebrow {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: .75;
}
.section-intro { max-width: 720px; margin: -8px 0 30px; font-size: 17px; }

/* Hero and real app media */
.hero { background: var(--cream); border-bottom: 3px solid var(--ink); padding: 56px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero p.lead { font-size: 19px; font-weight: 700; margin: 18px 0 26px; max-width: 30em; }
.hero__media { justify-self: center; display: grid; justify-items: center; gap: 16px; }
.note { font-size: 13px; font-weight: 700; opacity: .65; margin-top: 12px; }
.phone-frame {
  position: relative;
  width: 300px;
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.phone-frame--hero { width: 306px; transform: rotate(1deg); }
.phone-frame--screen { width: 282px; }
.phone-frame img,
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 31px;
  background: #fff;
}
.phone-frame__poster { display: none; }
.media-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 8px 13px;
  font-weight: 900;
  font-size: 13px;
}
.media-toggle .material-symbols-rounded { font-size: 18px; }
.is-video-fallback .phone-frame__video { display: none; }
.is-video-fallback .phone-frame__poster { display: block; }

/* Waitlist */
.waitlist { display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; }
.waitlist .field { flex: 1; min-width: 200px; }
.waitlist__ok {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #1d7a3f;
  margin-top: 10px;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* How it works */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 48px; }
.step { padding: 20px; }
.step .sticker { background: #fff; margin-bottom: 14px; }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 14px; font-weight: 700; opacity: .82; }
.phones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  justify-content: center;
  gap: 40px;
  align-items: start;
}
.phones figure { margin: 0; display: grid; justify-items: center; gap: 16px; }
.phones figcaption { display: flex; gap: 10px; font-weight: 800; font-size: 14px; }
.phones figcaption .num {
  width: 26px;
  height: 26px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--yellow);
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
}

/* Gift profile cards */
.profiles-section { background: var(--teal); }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.profile-card {
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .06s ease, box-shadow .06s ease;
}
.profile-card:hover { transform: translate(-1px, -1px); box-shadow: 6px 6px 0 var(--ink); }
.profile-card__cap {
  min-height: 132px;
  border-bottom: 3px solid var(--ink);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.profile-card__cap .sticker { width: 62px; height: 62px; background: #fff; }
.profile-card__cap .material-symbols-rounded { font-size: 42px; }
.profile-card__name {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 700;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
}
.profile-card__body { padding: 18px; display: flex; flex: 1; flex-direction: column; }
.profile-card__body h3 { margin-bottom: 9px; }
.profile-card__body p { font-size: 14px; opacity: .78; margin-bottom: 16px; }
.profile-card__more { margin-top: auto; color: var(--purple); font-weight: 900; font-size: 14px; }

/* Profile detail pages */
.profile-page { background: var(--cream); }
.profile-hero { padding: 48px 0 54px; border-bottom: 3px solid var(--ink); }
.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--purple);
  font-weight: 900;
  text-decoration: none;
}
.profile-hero__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 32px; align-items: start; }
.profile-hero h1 { margin: 14px 0; }
.profile-hero__intro { max-width: 690px; font-size: 19px; line-height: 1.55; }
.profile-snapshot { padding: 22px; background: var(--paper); }
.profile-snapshot h2 { font-size: 22px; margin-bottom: 14px; }
.profile-snapshot dl { margin: 0; display: grid; gap: 12px; }
.profile-snapshot div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}
.profile-snapshot dt { font-weight: 900; opacity: .62; }
.profile-snapshot dd { min-width: 0; margin: 0; overflow-wrap: anywhere; }
.profile-content { padding: 58px 0; background: var(--paper); border-bottom: 3px solid var(--ink); }
.profile-content .section__head { margin-bottom: 24px; }
.understanding-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.insight-card { padding: 24px; }
.insight-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.insight-card h3 .material-symbols-rounded { color: var(--purple); }
.insight-card p { font-size: 16px; line-height: 1.6; }
.insight-card p + p { margin-top: 12px; }
.insight-label { font-weight: 900; }
.offers-section { padding: 58px 0 64px; background: var(--teal); border-bottom: 3px solid var(--ink); }
.offers-intro { max-width: 720px; margin: -10px 0 28px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.offer-card { overflow: hidden; display: flex; flex-direction: column; }
.offer-card__media {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff url('/assets/product-fallback.svg') center / 72% no-repeat;
  border-bottom: 3px solid var(--ink);
}
.offer-card__media img { width: 100%; height: 100%; object-fit: contain; }
.offer-card__body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.offer-merchant { font-size: 13px; font-weight: 900; color: var(--purple); margin-bottom: 6px; }
.offer-card h3 { font-size: 18px; line-height: 1.2; margin-bottom: 12px; }
.offer-price { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.offer-why { font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.offer-meta { margin-top: auto; font-size: 12px; opacity: .66; line-height: 1.45; }
.offer-card .btn { margin-top: 18px; width: 100%; }
.affiliate-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 820px;
  margin-top: 28px;
  padding: 14px 16px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-size: 13px;
}
.profile-cta { padding: 58px 0; text-align: center; background: var(--purple); color: #fff; }
.profile-cta h2 { color: #fff; }
.profile-cta p { max-width: 620px; margin: 12px auto 22px; font-size: 17px; }
.profile-cta .waitlist { margin: 0 auto; justify-content: center; }
.profile-cta .field { color: var(--ink); }

/* CTA and footer */
.cta { background: var(--purple); color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta .lead { margin: 14px auto 0; max-width: 30em; }
.cta .waitlist { margin: 22px auto 0; justify-content: center; }
.cta .field { color: var(--ink); }
.cta .waitlist__ok, .profile-cta .waitlist__ok { color: #fff; }
.footer { padding: 30px 0; font-weight: 700; font-size: 14px; }
.footer__row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__copyright { font-weight: 900; }
.footer .disclosure { opacity: .7; margin: 12px 0 0; }
.footer__links { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; opacity: .75; }
.footer__links a:hover { opacity: 1; }
.footer__nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(11, 11, 11, .12);
}
.footer__nav a { text-decoration: none; font-weight: 900; opacity: .8; }
.footer__nav a:hover { opacity: 1; }

/* Articles and legal pages */
.article { padding: 48px 0 64px; }
.article .wrap { max-width: 760px; }
.article h1 { margin-bottom: 8px; }
.article h2 { font-size: 24px; margin: 32px 0 12px; }
.article p, .article li { font-size: 17px; font-weight: 700; line-height: 1.6; margin: 0 0 14px; }
.article ul { padding-left: 22px; }
.article .back {
  font-weight: 900;
  color: var(--purple);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}
.legal-doc p { font-weight: 600; font-size: 15.5px; line-height: 1.65; }
.legal-doc h2 { font-size: 20px; }
.legal-doc .note { margin-top: 0; margin-bottom: 4px; }
.legal-draft {
  display: inline-block;
  font-weight: 900;
  font-size: 13px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 8px 14px;
  margin: 4px 0 18px;
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .phone-frame__video { display: none; }
  .phone-frame__poster { display: block; }
  .media-toggle { display: none; }
}

@media (max-width: 860px) {
  .hero__grid, .profile-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__media { justify-self: center; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .profile-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .understanding-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .nav__toggle { display: inline-flex; }
  .nav__collapse {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 4px 0 6px;
  }
  .nav.is-open .nav__collapse { display: flex; }
  .nav__collapse .nav__links { display: flex; flex-direction: column; gap: 0; margin-left: 0; }
  .nav__collapse .nav__links a {
    padding: 12px 4px;
    font-size: 16px;
    opacity: 1;
    border-bottom: 2px solid rgba(11, 11, 11, .08);
  }
  .nav__collapse .nav__right { flex-direction: column; align-items: stretch; gap: 12px; margin-left: 0; }
  .nav__collapse .lang { align-self: flex-start; }
  .nav__collapse .btn { justify-content: center; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 44px 0 52px; }
  .section__head { align-items: flex-start; flex-wrap: wrap; }
  .section__head .rule { flex-basis: 100%; }
  .grid-5, .profile-grid, .offer-grid { grid-template-columns: 1fr; }
  .phone-frame--hero { width: min(286px, 82vw); transform: none; }
  .phone-frame--screen { width: min(278px, 80vw); }
  .profile-snapshot div { grid-template-columns: 108px minmax(0, 1fr); column-gap: 18px; }
  .footer__links { margin-left: 0; }
}

@media (max-width: 480px) {
  :root {
    --shadow: 4px 4px 0 var(--ink);
    --shadow-btn: 3px 3px 0 var(--ink);
    --shadow-sm: 2px 2px 0 var(--ink);
  }
  .card, .btn { border-width: 2px; }
}
