:root {
  --bg: #fff8f4;
  --bg-2: #fff0e8;
  --surface: #ffffff;
  --ink: #3d2c2e;
  --ink-soft: #6b5558;
  --muted: #8a7477;
  --peach: #ff8f7a;
  --peach-soft: #ffe4dc;
  --mint: #5ec4a8;
  --mint-soft: #e0f5ef;
  --sky: #7eb8e8;
  --sky-soft: #e5f2fb;
  --butter: #ffe9a8;
  --border: rgba(61, 44, 46, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 12px 40px rgba(255, 143, 122, 0.12);
  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --container: 1060px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 143, 122, 0.14), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(94, 196, 168, 0.12), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(126, 184, 232, 0.12), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

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

address {
  font-style: normal;
  color: var(--muted);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - 12px);
  margin-top: 12px;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 1.25rem;
  box-shadow: var(--shadow);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--peach);
}

.header__end {
  display: flex;
  gap: 0.5rem;
}

.menu-btn {
  display: none;
  background: var(--peach-soft);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  width: 40px;
  height: 36px;
  padding: 8px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--peach);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--soft {
  background: var(--peach);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 143, 122, 0.35);
}

.btn--soft:hover {
  box-shadow: 0 12px 32px rgba(255, 143, 122, 0.45);
}

.btn--quiet {
  background: var(--surface);
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

.btn--quiet:hover {
  border-color: var(--peach);
  color: var(--peach);
}

.btn--lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--peach);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Soft board mock */
.board {
  background: var(--surface);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  padding: 0 0.25rem;
}

.board__head h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.board__mood {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--butter);
  color: var(--ink);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.note {
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}

.note--peach {
  background: var(--peach-soft);
}

.note--mint {
  background: var(--mint-soft);
}

.note--sky {
  background: var(--sky-soft);
}

.note--butter {
  background: var(--butter);
}

.note__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-bottom: 0.45rem;
}

.note strong {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: block;
}

.note p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex: 1;
}

.note__face {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.board__foot {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.7rem;
}

/* Soft cards */
.soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.soft-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.85rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(61, 44, 46, 0.04);
  transition: transform 0.25s;
}

.soft-card:hover {
  transform: translateY(-4px);
}

.soft-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.soft-card__icon--p {
  background: var(--peach-soft);
}

.soft-card__icon--m {
  background: var(--mint-soft);
}

.soft-card__icon--s {
  background: var(--sky-soft);
}

.soft-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.soft-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Link tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tile:hover {
  border-color: var(--peach);
  box-shadow: var(--shadow);
}

.tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.tile p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1rem;
}

.tile span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--peach);
}

/* Page top */
.page-top {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  text-align: center;
}

.page-top h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
}

.page-top p {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.split p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.checks {
  list-style: none;
  margin-top: 1.25rem;
}

.checks li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.checks li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--peach);
  font-size: 0.75rem;
  top: 0.7rem;
}

/* Steps */
.flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.flow-step {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.flow-step__n {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--peach);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255, 143, 122, 0.3);
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Feature cloud */
.cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cloud-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.cloud-item:nth-child(3n + 1) {
  border-top: 3px solid var(--peach);
}

.cloud-item:nth-child(3n + 2) {
  border-top: 3px solid var(--mint);
}

.cloud-item:nth-child(3n) {
  border-top: 3px solid var(--sky);
}

.cloud-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cloud-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, var(--peach-soft), var(--mint-soft));
  border-radius: 28px;
  border: 1px solid var(--border);
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
}

.cta p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.info-item {
  margin-bottom: 1.4rem;
}

.info-item h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--peach);
  margin-bottom: 0.3rem;
}

.form-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 2.15rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.05rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--peach);
  background: #fff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  padding: 3.5rem 0 2rem;
  margin-top: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 240px;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.footer__col a,
.footer__col address {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.footer__col a:hover {
  color: var(--peach);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__bar p {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Legal */
.legal {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.legal__box {
  max-width: 660px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.legal__box h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal__box .upd {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal__box h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--peach);
  margin: 1.5rem 0 0.5rem;
}

.legal__box p,
.legal__box li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.legal__box ul {
  padding-left: 1.2rem;
}

.legal__box a {
  color: var(--peach);
}

/* Cookie */
.cookie-bubble {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  max-width: 360px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: 0.4s ease;
}

.cookie-bubble.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-bubble p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.cookie-bubble a {
  color: var(--peach);
  font-weight: 700;
}

.cookie-bubble__row {
  display: flex;
  gap: 0.5rem;
}

.nav--mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: calc(var(--header-h) + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  gap: 1rem;
  z-index: 99;
  box-shadow: var(--shadow);
}

.nav--mobile.open {
  display: flex;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.6s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero__grid,
  .split,
  .contact-grid,
  .footer__grid,
  .cta,
  .soft-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    text-align: center;
  }

  .tiles,
  .cloud,
  .notes {
    grid-template-columns: 1fr;
  }

  .nav,
  .header__end {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    text-align: center;
  }

  .hero__lead,
  .hero__cta {
    margin-inline: auto;
    justify-content: center;
  }

  .pill {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .cookie-bubble {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
