/* No Rush — promo site. Calm palette, generous space, slow easing. */

:root {
  --bg:        #f4f1ea;   /* warm paper */
  --bg-alt:    #ebe6db;   /* slightly deeper */
  --ink:       #2b2a26;   /* soft near-black */
  --ink-soft:  #6b675e;   /* muted text */
  --accent:    #5b7b6f;   /* calm sage */
  --accent-deep:#41594f;
  --card:      #fbf9f4;
  --line:      #ddd6c8;
  --radius:    20px;
  --maxw:      1120px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--accent-deep); }

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

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 600; }
.brand-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(91,123,111,.18);
  animation: breathe 5s var(--ease) infinite;
}
@keyframes breathe {
  0%,100% { box-shadow: 0 0 0 4px rgba(91,123,111,.18); }
  50%     { box-shadow: 0 0 0 9px rgba(91,123,111,.06); }
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }

/* ---------- Right side of nav: lang + CTA ---------- */
.nav-right { display: inline-flex; align-items: center; gap: 18px; }
.lang { display: inline-flex; gap: 2px; align-items: center; font-size: .85rem; letter-spacing: .04em; }
.lang a { padding: 4px 8px; border-radius: 999px; color: var(--ink-soft); transition: background .25s var(--ease), color .25s var(--ease); }
.lang a:hover { background: var(--card); color: var(--ink); }
.lang .lang-current { color: var(--ink); font-weight: 600; cursor: default; }
.lang .lang-current:hover { background: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 500; font-size: .98rem;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 22px rgba(91,123,111,.28); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { background: var(--card); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--accent-deep); font-weight: 600; margin: 0 0 18px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 24px; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 38ch; }
.lede.dark { color: var(--ink); max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin: 32px 0 18px; flex-wrap: wrap; }
.hero-note { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* phone mock */
.hero-phone { display: flex; justify-content: center; }
.phone {
  width: 290px; height: 580px; border-radius: 42px; background: #20211d;
  padding: 12px; box-shadow: 0 30px 70px rgba(43,42,38,.28); position: relative;
  animation: float 9s var(--ease) infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #20211d; border-radius: 0 0 16px 16px; z-index: 2; }
.phone-screen { height: 100%; border-radius: 32px; background: var(--bg); overflow: hidden; display: flex; flex-direction: column; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 30px 18px 14px; border-bottom: 1px solid var(--line); background: var(--card); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 600; }
.chat-name { font-weight: 600; font-size: .98rem; }
.chat-sub { font-size: .74rem; color: var(--ink-soft); }
.bubbles { flex: 1; padding: 18px 14px; display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 80%; padding: 10px 14px; border-radius: 18px; font-size: .86rem; line-height: 1.45; }
.bubble.in { align-self: flex-start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.bubble.out { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 6px; }
.composer { padding: 14px; border-top: 1px solid var(--line); background: var(--card); color: var(--ink-soft); font-size: .84rem; }

/* ---------- Bands ---------- */
.band { padding: 92px 0; }
.band.alt { background: var(--bg-alt); }
.band.cta { background: var(--accent); color: #fff; }
.band.cta h2, .band.cta .big-quiet { color: #fff; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; margin: 0 0 48px; }
.section-title.left { text-align: left; margin-bottom: 24px; }
.big-quiet { font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--ink-soft); font-weight: 400; line-height: 1.5; }
.band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 0 0 22px; }
.strike { text-decoration: line-through; text-decoration-color: var(--accent); text-decoration-thickness: 3px; color: var(--ink-soft); }
.quiet-line { font-family: "Fraunces", serif; font-style: italic; font-size: 1.4rem; color: var(--accent-deep); margin-top: 48px; }

/* ---------- Grid cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(43,42,38,.08); }
.card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; max-width: 820px; margin: 0 auto; }
.steps li { display: flex; gap: 22px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.step-n { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 1.2rem; }
.steps h3 { margin: 4px 0 6px; font-size: 1.3rem; }
.steps p { margin: 0; color: var(--ink-soft); }

/* ---------- Two col privacy ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.check { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check li { position: relative; padding-left: 38px; font-size: 1.05rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 38px; }
.chips span { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); font-size: .92rem; color: var(--ink-soft); }

/* ---------- Money / pricing ---------- */
.money-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 16px; }
.money-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.money-card.supporter { border-color: var(--accent); box-shadow: 0 18px 50px rgba(91,123,111,.12); }
.money-card h3 { margin: 0 0 6px; font-size: 1.5rem; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.money-price { font-family: "Inter", system-ui, sans-serif; font-size: .92rem; font-weight: 500; color: var(--accent-deep); letter-spacing: .01em; }
.money-tag { margin: 0 0 18px; color: var(--ink-soft); font-style: italic; font-family: "Fraunces", serif; }
.money-card .check { gap: 10px; }
.money-card .check li { font-size: .98rem; padding-left: 32px; }
.money-card .check li::before { width: 18px; height: 18px; top: 4px; -webkit-mask-size: 14px; mask-size: 14px; }

/* ---------- FAQ ---------- */
details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
details summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 1.08rem; list-style: none; position: relative; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0 0 20px; color: var(--ink-soft); }

/* ---------- Signup ---------- */
.signup { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 28px 0 16px; }
.signup input {
  padding: 13px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.95); font-size: 1rem; min-width: 280px; color: var(--ink);
}
.band.cta .btn-primary { background: #fff; color: var(--accent-deep); box-shadow: 0 6px 22px rgba(0,0,0,.18); }
.band.cta .btn-primary:hover { background: #f0ede6; }
.signup-msg { width: 100%; margin: 6px 0 0; font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem; }
.band.cta .hero-note { color: rgba(255,255,255,.8); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #d9d4c8; padding: 56px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer .brand { color: #fff; }
.footer-tag { font-family: "Fraunces", serif; font-style: italic; font-size: 1.3rem; margin: 6px 0; }
.footer-fine { font-size: .82rem; color: #9b9587; margin: 0; }

/* ---------- Footer links ---------- */
.footer a { color: #d9d4c8; text-decoration: underline; text-decoration-color: rgba(217,212,200,.35); text-underline-offset: 3px; transition: color .25s var(--ease); }
.footer a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 12px 0 24px; }
.legal h2 { font-size: 1.45rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 22px 0 8px; font-family: "Fraunces", serif; font-weight: 500; }
.legal p, .legal ul, .legal ol { color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.legal .lede.dark { color: var(--ink); font-size: 1.15rem; margin: 0 0 24px; max-width: none; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--accent-deep); text-decoration: underline; text-decoration-color: rgba(65,89,79,.4); text-underline-offset: 3px; }
.legal a:hover { color: var(--ink); }
.legal .legal-block { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.legal .legal-foot { margin-top: 48px; font-size: .9rem; color: var(--ink-soft); }
.legal code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: .92em; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .hero-phone { order: -1; }
  .grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .money-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .band { padding: 64px 0; }
  .steps li { flex-direction: column; gap: 12px; }
  .nav-right { gap: 10px; }
  .nav-inner { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
