@font-face {
  font-family: "Literata";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local("Literata"), url("https://fonts.gstatic.com/s/literata/v35/OD5BuMtqfhs.ttf") format("truetype");
}

:root {
  --bg: #f9f1e6;               /* soft cream */
  --paper-fiber: rgba(255, 231, 214, 0.35);
  --panel: rgba(255, 243, 233, 0.82);      /* warm glass */
  --panel-strong: rgba(255, 238, 225, 0.9);
  --text: #2f211c;             /* warm ink */
  --muted: #6a5a51;
  --accent: #d86856;           /* peach / tomato accent */
  --accent-strong: #c14c3a;
  --status-updated: #2fbf71;
  --status-live: #f59e3a;
  --border: #ead8c6;
  --shadow: 0 10px 28px rgba(114, 76, 58, 0.12);
  --shadow-hover: 0 14px 30px rgba(114, 76, 58, 0.16);
  --glass-glow: 0 0 0 0.5px rgba(255,240,230,0.55);
  --ease-soft: cubic-bezier(0.33, 0.11, 0.22, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'San Francisco', sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 1200px at 18% 12%, rgba(255, 226, 208, 0.55), transparent 60%),
    radial-gradient(980px 980px at 78% 6%, rgba(255, 214, 194, 0.42), transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 237, 224, 0.08), rgba(255, 237, 224, 0.08) 1px, transparent 1px, transparent 3px);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

[data-en].lang-anim {
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}
body.lang-switching [data-en].lang-anim {
  opacity: 0;
  transform: translateY(6px);
}

h1, h2, h3, h4 {
  font-family: 'Literata', 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

p {
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--muted);
}

.bg-gradient { display: none; }

.topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 10;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6),
              0 1px 0 rgba(255,243,233,0.55),
              0 12px 28px rgba(114,76,58,0.12);
}

.logo { font-weight: 700; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 12px; align-items: center; }

.nav-links a, .nav-links button {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 242, 232, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 14px;
  transition: transform 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
  font-size: 14px;
}

.nav-links a:hover, .nav-links button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(114,76,58,0.12);
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

main a:not(.primary-btn):not(.ghost-btn):not(.doc-link):not(.logo):not(.nav-links a):not(.soft-btn):not(.contributor-avatar) {
  position: relative;
  text-decoration: none;
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 220ms var(--ease-soft), color 220ms var(--ease-soft);
  padding-bottom: 1px;
}
main a:not(.primary-btn):not(.ghost-btn):not(.doc-link):not(.logo):not(.nav-links a):not(.soft-btn):not(.contributor-avatar):hover {
  background-size: 100% 1.5px;
}

main { position: relative; z-index: 1; padding-top: 120px; }

:root {
  --lang-out: 140ms;
  --lang-in: 210ms;
  --lang-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-en] {
  transition-property: opacity, transform;
  transition-timing-function: var(--lang-ease);
  transition-duration: var(--lang-in);
  opacity: 1;
  transform: translateY(0);
}

body.lang-switching-out [data-en] {
  opacity: 0;
  transform: translateY(4px);
  transition-duration: var(--lang-out);
}

body.lang-switching-in [data-en] {
  opacity: 1;
  transform: translateY(0);
  transition-duration: var(--lang-in);
}

.hero, .features, .rhythm, .docs, .download, .story, .faq, .join-us, #join {
  scroll-margin-top: 110px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(260px, 460px);
  gap: clamp(56px, 10vw, 140px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px clamp(20px, 6vw, 80px) 110px clamp(20px, 6vw, 80px);
  min-height: 520px;
}

.hero::before {
  content: none; /* remove hero background overlay */
}

.hero > * { position: relative; z-index: 1; }
.hero .hero-illustration { z-index: 0; }

.hero-text h1 { font-family: 'Literata', 'Georgia', 'Times New Roman', serif; font-size: clamp(32px, 6vw, 46px); margin: 6px 0 18px; letter-spacing: -0.02em; font-weight: 700; }
.switchable-head {
  display: inline-block;
  transition: opacity 260ms var(--ease-soft);
}
.switchable-head.phrase-out { opacity: 0; }
.lede { font-size: 17px; line-height: 1.8; color: var(--muted); }
.lede.switchable { transition: opacity 240ms var(--ease-soft); }
.lede.switchable.phrase-out { opacity: 0; }
.micro-hint {
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0.8;
  margin-top: -4px;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; font-size: 12px; color: #8a6f62; font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'San Francisco', sans-serif; }

.hero-text { position: relative; z-index: 2; max-width: 640px; }

.hero-illustration.hero-tomato {
  position: relative;
  right: auto;
  bottom: auto;
  transform: translateX(8%);
  max-width: 660px;
  width: min(58vw, 660px);
  min-width: 340px;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  opacity: 1;
  filter: drop-shadow(0 12px 28px rgba(114,76,58,0.12));
  mix-blend-mode: normal;
  justify-self: end;
  animation: tomatoIntro 850ms var(--ease-soft) 0s 1 both;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}
.hero-illustration.hero-tomato::after {
  display: none; /* remove extra glow background */
}
.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  background: none;
}
.hero-illustration.hero-tomato svg circle {
  display: none; /* drop the ambient glow behind the tomato */
}

.status-body { margin: 0; color: var(--muted); line-height: 1.6; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.primary-btn, .ghost-btn {
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft), background 280ms var(--ease-soft), filter 280ms var(--ease-soft);
  border: 1px solid transparent;
}

.primary-btn {
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: #fffaf6;
  border-color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(200, 110, 90, 0.22);
}

.ghost-btn {
  background: rgba(255, 242, 232, 0.8);
  color: #3a2a23;
  border-color: var(--border);
  box-shadow: none;
}

.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(200, 110, 90, 0.28); filter: saturate(1.04); }
.ghost-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(114,76,58,0.12); }

.section-head { max-width: 780px; margin: 0 auto 28px; text-align: center; }
.section-head h2 { margin: 8px 0 10px; font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; font-family: 'Literata', 'Georgia', 'Times New Roman', serif; }
.muted { color: var(--muted); line-height: 1.6; }

.features, .docs, .download { padding: 40px 20px 72px; max-width: 1180px; margin: 0 auto; }
.visual-compare { padding: 40px 20px 52px; max-width: 1180px; margin: 0 auto; }
.waitlist { padding: 40px 20px 72px; max-width: 1180px; margin: 0 auto; text-align: center; }
.join-us { padding: 40px 20px 82px; max-width: 1180px; margin: 0 auto; }
.join-system {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,243,233,0.92), rgba(255,240,229,0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62), 0 14px 26px rgba(114,76,58,0.1);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.join-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #8a6f62;
}
.join-title {
  margin: 0;
  font-family: 'Literata', 'Georgia', 'Times New Roman', serif;
  font-size: clamp(30px, 4.3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}
.join-subtitle-main {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--muted);
  max-width: 720px;
}
.contributors-ribbon {
  position: relative;
  width: 100%;
  height: 104px;
  box-sizing: border-box;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(238, 223, 209, 0.92);
  background: linear-gradient(145deg, rgba(255, 248, 240, 0.88), rgba(255, 244, 235, 0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(236,216,200,0.5), 0 8px 18px rgba(114,76,58,0.09);
  overflow: hidden;
  display: flex;
  align-items: center;
  animation: ribbonBreath 8s ease-in-out infinite;
}
.contributors-ribbon:hover {
  animation-play-state: paused;
}
.contributors-ribbon::before,
.contributors-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68px;
  pointer-events: none;
  z-index: 2;
}
.contributors-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 246, 237, 1), rgba(255, 246, 237, 0));
}
.contributors-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 246, 237, 1), rgba(255, 246, 237, 0));
}
.contributors-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: max-content;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: contributorsLoop var(--contributors-loop-duration, 24s) linear infinite;
}
.contributors-ribbon:hover .contributors-track {
  animation-play-state: paused;
}
.contributors-segment {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 16px 0 0;
  flex: 0 0 auto;
}
.contributor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 8px 16px rgba(114,76,58,0.12);
  flex: 0 0 auto;
  display: block;
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.92), rgba(255, 245, 238, 0.9));
}
.contributor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.contributor-avatar[data-placeholder="true"] img {
  filter: grayscale(0.28) saturate(0.7);
}
.contributor-avatar-invite {
  border-style: dashed;
  border-color: rgba(138, 111, 98, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  color: var(--text);
  transition: transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft);
}
.contributor-avatar-invite:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(114,76,58,0.14);
}
.contributor-invite-label {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text);
  white-space: nowrap;
}
.contributors-fallback {
  margin: 0;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
.contributors-error {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
@keyframes contributorsLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes ribbonBreath {
  0%, 100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(236,216,200,0.5), 0 8px 18px rgba(114,76,58,0.09);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), inset 0 -1px 0 rgba(236,216,200,0.52), 0 12px 22px rgba(114,76,58,0.12);
  }
}
.join-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.join-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 20px rgba(114,76,58,0.1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 238px;
  height: 100%;
  text-align: center;
}
.join-card > * { margin: 0; }
.join-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
}
.join-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.join-copy-block {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}
.join-card-subtitle {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #4f4038;
}
.join-card-support {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
}
.join-card .soft-btn {
  margin-top: auto;
  align-self: center;
}
.soft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fffaf6;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms var(--ease-soft), box-shadow 180ms var(--ease-soft), filter 180ms var(--ease-soft);
}
.soft-btn.primary-ish {
  background: linear-gradient(145deg, rgba(216,104,86,0.94), rgba(193,76,58,0.9));
  border-color: rgba(193,76,58,0.58);
  box-shadow: 0 7px 15px rgba(200, 110, 90, 0.2);
}
.soft-btn.primary-ish:hover {
  box-shadow: 0 12px 22px rgba(200, 110, 90, 0.24);
  filter: saturate(1.03);
}
.soft-btn:hover {
  transform: translateY(-2px);
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }

.feature-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58),
              0 0 0 0.5px rgba(255,240,230,0.45),
              0 12px 26px rgba(114,76,58,0.1);
  display: grid;
  gap: 8px;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft), filter 240ms var(--ease-soft);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.65);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative;
}

.feature-card:hover,
.rhythm-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.64),
              0 0 0 0.5px rgba(255,240,230,0.55),
              var(--shadow-hover);
  filter: saturate(1.01);
}
.icon {
  font-family: 'Literata', 'Georgia', serif;
  font-weight: 700;
  color: #2b2926;
  font-size: 16px;
}
.icon::before, .icon::after { content: none; }

.rhythm { padding: 40px 20px 72px; max-width: 1180px; margin: 0 auto; }
.rhythm-card {
  padding: clamp(20px, 4vw, 32px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58), 0 0 0 0.5px rgba(255,240,230,0.45), 0 14px 28px rgba(114,76,58,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft), filter 240ms var(--ease-soft);
}
.cycle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.rhythm-graphic { flex: 0 0 auto; }
.rhythm-loop {
  width: min(280px, 65vw);
  height: min(280px, 65vw);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 48% 40%, rgba(255, 225, 209, 0.9), rgba(242, 164, 140, 0.62) 45%, rgba(182, 104, 88, 0.48) 70%, rgba(104, 46, 38, 0.26));
  box-shadow:
    0 16px 36px rgba(43,41,38,0.12),
    inset 0 14px 28px rgba(255,255,255,0.6);
  animation: breatheCycle 7s ease-in-out infinite;
}
.rhythm-loop::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 42%, rgba(255,255,255,0.65), rgba(255,255,255,0));
  filter: blur(6px);
  opacity: 0.8;
  animation: breatheCycle 7s ease-in-out infinite reverse;
}
.rhythm-loop::after {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,186,0.2), rgba(255,204,186,0));
  filter: blur(8px);
  opacity: 0.9;
}
.rhythm-core {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, rgba(255,255,255,0.75), rgba(248,214,196,0.5), rgba(190,112,96,0.32));
  box-shadow: inset 0 6px 12px rgba(255,255,255,0.7);
  filter: blur(0.6px);
}
.state-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Literata', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2b2926;
  mix-blend-mode: multiply;
  font-size: clamp(16px, 4vw, 20px);
}
.state {
  position: absolute;
  opacity: 0;
}
.state-working { animation: stateWorking 7s ease-in-out infinite; }
.state-break { animation: stateBreak 7s ease-in-out infinite; }
.rhythm-copy { display: grid; gap: 10px; justify-items: flex-start; text-align: left; }
.rhythm-copy h3 { margin: 0; font-size: 22px; letter-spacing: -0.01em; }

.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.doc-link { text-decoration: none; color: var(--text); padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: var(--panel); font-weight: 700; text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 0 0 0.5px rgba(255,240,230,0.45), 0 10px 20px rgba(114,76,58,0.1); }
.doc-link:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(114,76,58,0.08); }

.docs-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.download .cta-row { justify-content: center; }

/* Feature comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 3vw, 22px);
  padding: clamp(16px, 3vw, 24px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(255,243,233,0.92), rgba(255,240,229,0.86));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62),
              0 0 0 0.5px rgba(255,240,230,0.48),
              0 12px 22px rgba(114,76,58,0.1);
}
.comparison-block {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 242, 232, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.comparison-block ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}
.comparison-block li {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

/* Visual comparison grid */
.compare-wrapper {
  background: transparent;
  border-radius: 16px;
  padding: clamp(12px, 3vw, 18px);
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 14px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  text-align: center;
  padding: 12px 10px;
  color: var(--text);
  font-family: 'Literata', 'Georgia', 'Times New Roman', serif;
}
.pill-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #5f5f5f;
  background: #eceae7;
  border: 1px solid #d6d3cf;
  opacity: 1;
  animation: none;
}
.compare-table .pill-soon { vertical-align: middle; }
.compare-table th {
  font-weight: 700;
  font-size: 16.5px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-table td {
  font-size: 15.5px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child,
.compare-table th:first-child {
  background: rgba(255,243,233,0.28);
  border-right: 1px solid rgba(0,0,0,0.04);
}
.compare-table td:last-child,
.compare-table th:last-child {
  background: rgba(255,248,242,0.32);
  border-left: 1px solid rgba(0,0,0,0.03);
  font-weight: 700;
  color: #2c1f19;
}

/* Waitlist */
.waitlist-inner {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255,243,233,0.92), rgba(255,240,229,0.86));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62),
              0 0 0 0.5px rgba(255,240,230,0.45),
              0 12px 22px rgba(114,76,58,0.1);
  padding: clamp(22px, 4vw, 34px) clamp(20px, 6vw, 40px);
  display: grid;
  gap: 10px;
  justify-items: center;
}
.waitlist-title-stack {
  display: grid;
  justify-items: center;
}
.waitlist-inner h2 { margin: 4px 0 0; font-size: clamp(22px, 4vw, 30px); letter-spacing: -0.01em; }
.waitlist-coming-badge {
  margin: 8px 0 12px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(210, 195, 183, 0.9);
  background: rgba(238, 231, 223, 0.86);
  color: #5f4f45;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  justify-self: center;
  animation: waitlistBadgeFade 420ms ease-out 120ms both;
}
.waitlist-inner .muted { margin: 0; }
.waitlist .cta-row { justify-content: center; margin-top: 8px; }
@keyframes waitlistBadgeFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.project-status-block {
  padding: 40px 20px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.project-status-system {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,243,233,0.92), rgba(255,240,229,0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62), 0 14px 26px rgba(114,76,58,0.1);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}
.project-status-system .section-head {
  margin: 0;
}
.project-status-system .section-head h2 {
  margin: 0;
}
.project-status-indicator-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 12px;
  column-gap: 14px;
}
.project-status-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.project-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #50C878;
  box-shadow: 0 0 10px rgba(80, 180, 120, 0.5);
  flex-shrink: 0;
}
.project-status-dot.is-updated {
  background: #50C878;
  box-shadow: 0 0 10px rgba(80, 180, 120, 0.5);
  animation: pulse 2s ease-in-out infinite;
}
.project-status-dot.is-live {
  background: #E09F3E;
  box-shadow: 0 0 10px rgba(224, 159, 62, 0.38);
}
.project-status-label {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #2B2622;
  line-height: 1.2;
}
.project-status-sub {
  margin: 0;
  justify-self: center;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #2B2622;
  opacity: 0.7;
}
.project-status-streak {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.85;
}
.project-status-commits {
  width: 100%;
  min-height: 130px;
  margin-top: 18px;
}
.project-status-commit-card {
  min-height: 130px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58),
              0 0 0 0.5px rgba(255,240,230,0.45),
              0 10px 20px rgba(114,76,58,0.1);
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 16px;
}
.project-status-commit-card.is-loaded {
  animation: commitCardFadeIn 300ms ease-out both;
}
.project-status-commit-message {
  margin: 0;
  color: #2B2622;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.project-status-commit-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.project-status-commit-time {
  margin: 0;
  color: #2B2622;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.6;
}
.project-status-commit-repo-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  color: #8a7466;
}
.project-status-commit-repo-icon path {
  fill: currentColor;
}
.project-status-commit-card.is-skeleton {
  align-content: center;
  gap: 12px;
}
.project-status-skeleton {
  display: block;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(232, 220, 208, 0.9) 18%,
    rgba(245, 237, 228, 0.95) 50%,
    rgba(232, 220, 208, 0.9) 82%
  );
  background-size: 220% 100%;
  animation: projectStatusShimmer 1.3s ease-in-out infinite;
}
.project-status-skeleton-line {
  width: 100%;
  height: 14px;
}
.project-status-skeleton-time {
  width: 55%;
  height: 12px;
}
.project-status-skeleton-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 6px rgba(80,180,120,0.4); }
  50% { box-shadow: 0 0 12px rgba(80,180,120,0.8); }
  100% { box-shadow: 0 0 6px rgba(80,180,120,0.4); }
}
@keyframes commitCardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes projectStatusShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.project-status-cta {
  margin-top: 14px;
  justify-content: center;
}
.project-status-cta .soft-btn.primary-ish {
  border-radius: 16px;
  padding: 11px 20px;
}

.footer {
  max-width: 1180px;
  margin: 0 auto 36px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(155deg, rgba(255, 245, 236, 0.94), rgba(255, 241, 229, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.64), 0 10px 18px rgba(114,76,58,0.1);
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 10px;
  justify-items: center;
}
.footer-metrics {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}
.footer-metric {
  min-width: 108px;
  padding: 10px 11px 8px;
  border-radius: 12px;
  border: 1px solid rgba(234,216,198,0.88);
  background: rgba(255, 249, 242, 0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.68), 0 6px 12px rgba(114,76,58,0.07);
  display: grid;
  gap: 4px;
  justify-items: center;
}
.footer-metric-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.footer-metric-icon {
  font-size: 20px;
  line-height: 1;
}
.footer-number {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--text);
  opacity: 0.88;
}
.footer-number.is-live {
  animation: footerNumberPulse 300ms var(--ease-soft) both;
}
.footer-metric-label {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--muted);
}
.footer-status {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--muted);
}
@keyframes footerNumberPulse {
  0% { opacity: 0; transform: scale(1); }
  45% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.glass {
  position: relative;
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58), 0 0 0 0.5px rgba(255,240,230,0.45);
  transition: box-shadow 240ms var(--ease-soft), filter 240ms var(--ease-soft);
  overflow: hidden;
}
.topbar.glass {
  position: fixed; /* override .glass so the nav stays pinned on scroll */
}
.glass:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), var(--glass-glow), 0 14px 26px rgba(114,76,58,0.14);
}
.glass::after {
  content: '';
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0) 38%, rgba(255,255,255,0.24) 50%, rgba(255,255,255,0) 62%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12%);
  transition: opacity 420ms var(--ease-soft), transform 420ms var(--ease-soft);
}
.glass:hover::after { opacity: 0.28; transform: translateX(6%); }

.fade-on-load { opacity: 0; transform: translateY(18px); transition: opacity 900ms var(--ease-soft), transform 900ms var(--ease-soft); }
.fade-on-load.visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms var(--ease-soft), transform 800ms var(--ease-soft); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.94; filter: drop-shadow(0 6px 14px rgba(114,76,58,0.08)); }
  50% { transform: translateY(-8px) scale(1.03); opacity: 1; filter: drop-shadow(0 10px 20px rgba(114,76,58,0.12)); }
}

@keyframes breatheCycle {
  0%, 100% { transform: translateY(-2px) scale(0.95); }
  40% { transform: translateY(2px) scale(1.05); }
  65% { transform: translateY(4px) scale(1.02); }
}

@keyframes tomatoFloat {
  0%, 100% { transform: translateX(4%) translateY(-6px) scale(0.998); }
  45% { transform: translateX(4%) translateY(8px) scale(1.028); }
  70% { transform: translateX(4%) translateY(2px) scale(1.014); }
}

@keyframes tomatoFloatMobile {
  0%, 100% { transform: translateY(-6px) scale(0.998); }
  45% { transform: translateY(8px) scale(1.028); }
  70% { transform: translateY(2px) scale(1.014); }
}

@keyframes tomatoIntro {
  0% { opacity: 0; transform: translateX(4%) translateY(18px) scale(0.94); }
  60% { opacity: 1; transform: translateX(4%) translateY(-6px) scale(1.03); }
  100% { opacity: 1; transform: translateX(4%) translateY(0) scale(1); }
}

@keyframes tomatoIntroMobile {
  0% { opacity: 0; transform: translateY(18px) scale(0.94); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stateWorking {
  0%, 38% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes stateBreak {
  0%, 38% { opacity: 0; }
  50%, 84% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  main { padding-top: 160px; }
  .hero, .features, .rhythm, .docs, .download, .story, .faq, .join-us, #join { scroll-margin-top: 150px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
    padding: 40px 18px 80px;
  }
  .hero-text { justify-self: center; }
  .hero-illustration.hero-tomato {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    width: 92vw;
    max-width: 520px;
    margin: 6px auto 0;
    justify-self: center;
    animation: tomatoIntroMobile 850ms var(--ease-soft) 0s 1 both;
  }
  .join-system { padding: 22px 16px; }
  .contributors-ribbon { height: 92px; }
  .contributors-ribbon::before,
  .contributors-ribbon::after { width: 42px; }
  .project-status-system {
    padding: 36px 22px;
  }
  .footer-metrics { flex-wrap: wrap; }
  .footer-metric { min-width: 132px; }
  .join-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }

  .contributors-ribbon {
    animation: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  .contributors-ribbon::before,
  .contributors-ribbon::after {
    display: none;
  }

  .contributors-track {
    animation: none !important;
    transform: none !important;
  }

  [data-en] {
    transform: none !important;
    opacity: 1 !important;
  }
}
