/* Walti — landing. Monochrome warm, after the app icon: cream + ink. Type: Manrope. */

:root {
  --bg: #f4f1ec;
  --bg-sink: #ece8df;
  --card: #ffffff;
  --line: #e5e0d5;
  --line-2: #d6d0c2;
  --ink: #1f1f1f;
  --text: #33322d;
  --text-soft: #5c5a52;
  --text-mute: #8b887e;
  --tint: rgba(31, 31, 31, 0.05);
  --tint-2: rgba(31, 31, 31, 0.08);

  --sh-1: 0 1px 2px rgba(31, 31, 31, 0.05);
  --sh-2: 0 2px 6px rgba(31, 31, 31, 0.05), 0 20px 48px rgba(31, 31, 31, 0.1);

  --r-s: 12px;
  --r-m: 18px;
  --r-l: 28px;
  --maxw: 1080px;
  --gutter: 24px;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1c1a;
    --bg-sink: #222220;
    --card: #262624;
    --line: #34342f;
    --line-2: #41413b;
    --ink: #f1efe9;
    --text: #e7e5df;
    --text-soft: #bdbbb2;
    --text-mute: #918e85;
    --tint: rgba(255, 255, 255, 0.06);
    --tint-2: rgba(255, 255, 255, 0.1);
    --sh-1: 0 1px 2px rgba(0, 0, 0, 0.3);
    --sh-2: 0 2px 8px rgba(0, 0, 0, 0.35), 0 22px 54px rgba(0, 0, 0, 0.5);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
}

header.up {
  border-color: var(--line);
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.glyph {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #f3efea;
  display: grid;
  place-items: center;
}

.glyph svg {
  width: 20px;
  height: 20px;
  fill: #1f1f1f;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}

.hdr-nav a {
  text-decoration: none;
  color: var(--text-mute);
  transition: color 0.15s;
}

.hdr-nav a:hover {
  color: var(--ink);
}

@media (max-width: 620px) {
  .hdr-nav a:not(.pill) {
    display: none;
  }
}

.pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
}

/* ---------- type ---------- */

.kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.032em;
  color: var(--ink);
}

h3 {
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.028em;
  color: var(--ink);
}

h4 {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section {
  padding: clamp(72px, 9vw, 108px) 0;
}

.section + .section {
  padding-top: 0;
}

.head {
  max-width: 38ch;
  margin-bottom: clamp(40px, 6vw, 56px);
}

/* ---------- buttons ---------- */

.appstore {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  cursor: default;
}

.appstore small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}

.ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s;
}

.ghost:hover {
  border-color: var(--ink);
}

.cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta.center {
  justify-content: center;
  margin-top: 28px;
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero .sub {
  margin-top: 20px;
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 34ch;
}

.trust {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-top: 26px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mute);
}

.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero-art {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 48px;
  }
  .hero .sub {
    max-width: 44ch;
  }
  .cta,
  .trust {
    justify-content: center;
  }
  .hero-art {
    min-height: 500px;
  }
}

/* ---------- phone frame (iPhone proportions) ---------- */

.phone {
  border: 11px solid var(--ink);
  border-radius: 48px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--sh-2);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 37px;
}

/* hero: two phones, gently offset — static */
.hero-art .phone {
  position: absolute;
}

.hero-art .p-front {
  width: 288px;
  z-index: 2;
  transform: rotate(-3deg);
}

.hero-art .p-back {
  width: 226px;
  right: 2%;
  top: 8%;
  z-index: 1;
  transform: rotate(7deg);
}

@media (max-width: 900px) {
  .hero-art .p-front {
    width: 250px;
  }
  .hero-art .p-back {
    width: 196px;
    right: 6%;
  }
}

@media (max-width: 420px) {
  .hero-art .p-back {
    display: none;
  }
  .hero-art .p-front {
    transform: none;
  }
}

/* ---------- showcase panel ---------- */

.panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  background: var(--bg-sink);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(32px, 5vw, 60px);
}

.panel figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel .phone {
  width: 100%;
  max-width: 230px;
}

.panel figcaption {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-mute);
  font-weight: 500;
  text-align: center;
  max-width: 26ch;
}

@media (max-width: 760px) {
  .panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .panel .phone {
    max-width: 220px;
  }
}

/* ---------- tour ---------- */

.tour .wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 96px);
}

.tour .row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.tour .row.reverse {
  grid-template-columns: 300px 1fr;
}

.tour .row.reverse .row-copy {
  order: 2;
}

.num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}

.row-copy p:last-child {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 42ch;
}

.tour .row .phone {
  width: 300px;
  justify-self: center;
}

@media (max-width: 820px) {
  .tour .row,
  .tour .row.reverse {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
  }
  .tour .row.reverse .row-copy {
    order: 0;
  }
  .row-copy p:last-child {
    margin-inline: auto;
  }
  .tour .row .phone {
    width: 240px;
  }
}

/* ---------- features ---------- */

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

@media (max-width: 860px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 26px;
}

.fi {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--tint);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.fi svg {
  width: 21px;
  height: 21px;
}

.feat h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feat p {
  margin-top: 7px;
  color: var(--text-mute);
  font-size: 0.95rem;
  line-height: 1.55;
}

.prem {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--tint-2);
  padding: 2px 7px;
  border-radius: 5px;
}

/* ---------- premium ---------- */

.premium {
  border-radius: var(--r-l);
  padding: clamp(44px, 7vw, 80px) clamp(28px, 5vw, 64px);
  text-align: center;
  background: var(--ink);
  color: var(--bg);
}

.premium .kicker {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
}

.premium h2 {
  color: var(--bg);
  margin-bottom: 14px;
}

.premium > p {
  color: color-mix(in srgb, var(--bg) 72%, transparent);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1.04rem;
}

.premium .price {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}

/* ---------- privacy ---------- */

.privacy {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 40px);
}

.fi.big {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  flex: none;
}

.fi.big svg {
  width: 27px;
  height: 27px;
}

.privacy h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.privacy p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.privacy a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .privacy {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- closer ---------- */

.closer .wrap {
  text-align: center;
}

.closer h2 {
  max-width: 18ch;
  margin: 0 auto;
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 56px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-mute);
}

.foot .brand {
  font-size: 15px;
}

.foot nav {
  display: flex;
  gap: 22px;
}

.foot nav a {
  text-decoration: none;
  color: var(--text-mute);
  transition: color 0.15s;
}

.foot nav a:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ---------- legal pages ---------- */

.legal {
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 88px) var(--gutter) 100px;
}

.legal h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.4rem);
  letter-spacing: -0.035em;
}

.legal .updated {
  color: var(--text-mute);
  font-size: 13.5px;
  margin-top: 6px;
}

.legal h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 38px 0 8px;
}

.legal p,
.legal li {
  color: var(--text-soft);
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.65;
}

.legal ul {
  padding-left: 20px;
}

.legal a {
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 3px;
}

.back {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mute);
  text-decoration: none;
}

.back:hover {
  color: var(--ink);
}
