/* Mixlet static site
   Edit the CSS variables below to adjust the brand quickly. */
:root {
  --bg: #fff7e9;
  --bg-soft: #ffe2b5;
  --ink: #241f20;
  --muted: #6f5a46;
  --card: rgba(255, 255, 255, 0.72);
  --card-solid: #fffaf1;
  --orange: #f68a25;
  --orange-deep: #ef6d1c;
  --gold: #ffc857;
  --cream: #fff6df;
  --line: rgba(91, 58, 24, 0.14);
  --shadow: 0 24px 70px rgba(110, 60, 0, 0.18);
  --radius: 28px;
  --max: 1160px;
  --font: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 209, 97, 0.66), transparent 28rem),
    radial-gradient(circle at 87% 5%, rgba(255, 132, 50, 0.36), transparent 24rem),
    linear-gradient(180deg, #fff8ed 0%, #fff3df 45%, #fffaf4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }
.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .48;
  z-index: -1;
}
.ambient-one { width: 30rem; height: 30rem; background: #ffd465; top: -9rem; left: -8rem; }
.ambient-two { width: 24rem; height: 24rem; background: #ff8a2b; bottom: 5rem; right: -9rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
  padding: 1rem;
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}
.brand img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(238, 102, 24, .24);
}
.nav {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem;
  background: rgba(255, 255, 255, .52);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(91,58,24,.08);
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
  padding: .65rem .9rem;
  border-radius: 999px;
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,.65); }
.nav .nav-cta {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 10px 24px rgba(240, 109, 28, .23);
}
.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}
.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-deep);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .16em;
  font-weight: 900;
}
h1, h2, h3 { letter-spacing: -0.055em; line-height: .98; margin: 0; }
h1 { font-size: clamp(4rem, 10vw, 8.5rem); max-width: 8ch; }
h2 { font-size: clamp(2.5rem, 5.8vw, 5.4rem); max-width: 10ch; }
h3 { font-size: 1.6rem; }
.lead {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.32;
  color: var(--muted);
  max-width: 36rem;
  margin: 1.5rem 0 0;
}
.lead.small { font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: white;
  box-shadow: 0 18px 40px rgba(239, 109, 28, .28);
}
.secondary {
  background: rgba(255,255,255,.65);
  border-color: var(--line);
  color: var(--ink);
}
.mini-note {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-weight: 700;
}
.pulse {
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(246, 138, 37, .65);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { to { box-shadow: 0 0 0 16px rgba(246, 138, 37, 0); } }
.hero-art { position: relative; }
.app-card {
  position: relative;
  border-radius: 42px;
  padding: 1.3rem;
  background: linear-gradient(150deg, rgba(255,255,255,.72), rgba(255,232,193,.54));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.mac-window {
  border-radius: 32px;
  padding: 1.1rem;
  background: rgba(36, 31, 32, .93);
  color: white;
  min-height: 31rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
}
.traffic { display: flex; gap: .45rem; margin-bottom: 1.2rem; }
.traffic span { width: .8rem; height: .8rem; border-radius: 99px; background: #fff; opacity: .25; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .62rem .8rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 1rem;
}
.status-pill img { width: 2rem; height: 2rem; border-radius: .65rem; }
.mixer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin: .85rem 0;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.mixer-row p { margin: 0 0 .35rem; color: rgba(255,255,255,.6); font-weight: 700; }
.mixer-row strong { font-size: 1.1rem; letter-spacing: -.03em; }
.meter { display: flex; align-items: end; gap: .26rem; height: 3rem; }
.meter i {
  display: block;
  width: .44rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  opacity: .75;
  animation: meter 1.3s ease-in-out infinite alternate;
}
.meter i:nth-child(1) { height: 45%; animation-delay: .1s; }
.meter i:nth-child(2) { height: 70%; animation-delay: .25s; }
.meter i:nth-child(3) { height: 95%; animation-delay: .05s; }
.meter i:nth-child(4) { height: 62%; animation-delay: .38s; }
.meter i:nth-child(5) { height: 35%; animation-delay: .18s; }
.meter-hot i { background: linear-gradient(180deg, #fff2ad, #ff8a24); }
@keyframes meter { from { transform: scaleY(.6); opacity: .45; } to { transform: scaleY(1); opacity: 1; } }
.route-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--orange), #ffbd4a);
  color: #261607;
  display: grid;
  gap: .25rem;
  box-shadow: 0 20px 45px rgba(246, 138, 37, .2);
}
.route-card span { font-weight: 800; opacity: .78; }
.route-card b { font-size: 1.55rem; letter-spacing: -.05em; }
.menubar-chip {
  position: absolute;
  right: -1rem;
  bottom: -1.2rem;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(91,58,24,.14);
  font-weight: 850;
}
.menubar-chip span { color: var(--orange); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.48);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(91,58,24,.08);
}
.proof-strip div {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,.55);
}
.proof-strip strong { display: block; font-size: 2rem; letter-spacing: -.05em; }
.proof-strip span { color: var(--muted); font-weight: 700; }
.intro { text-align: center; display: grid; justify-items: center; }
.intro h2 { max-width: 12ch; }
.intro p:not(.eyebrow) { max-width: 48rem; color: var(--muted); font-size: 1.2rem; line-height: 1.6; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card, .roadmap-item, .privacy-summary, .demo-panel, .policy-card, .cta {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 45px rgba(91,58,24,.08);
  backdrop-filter: blur(18px);
}
.feature-card {
  min-height: 17rem;
  padding: 1.4rem;
  border-radius: var(--radius);
}
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8e5, #ffd384);
  margin-bottom: 2rem;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.feature-card p, .roadmap-item p, .section-heading p, .privacy-summary p, .cta p, .demo-panel p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}
.demo-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 36px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.steps span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.steps p { margin: 0; font-size: 1.15rem; }
.section-heading { margin-bottom: 2rem; }
.section-heading h2 { max-width: 12ch; }
.section-heading p { max-width: 42rem; font-size: 1.15rem; }
.roadmap-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.roadmap-item { padding: 1.2rem; border-radius: 28px; }
.roadmap-item span {
  display: inline-flex;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--orange-deep);
  margin-bottom: 3rem;
}
.privacy-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 36px;
}
.privacy-summary h2 { max-width: 11ch; }
.cta {
  text-align: center;
  display: grid;
  justify-items: center;
  padding: 4rem 2rem;
  border-radius: 42px;
}
.cta img { border-radius: 28px; margin-bottom: 1.5rem; box-shadow: 0 20px 45px rgba(239,109,28,.18); }
.cta h2 { max-width: 12ch; }
.cta p { font-size: 1.2rem; max-width: 32rem; }
.site-footer {
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}
.site-footer div { display: flex; gap: 1rem; }
.site-footer a { text-decoration: none; }
.policy-main { padding-top: 5rem; }
.policy-card {
  padding: clamp(1.5rem, 5vw, 4rem);
  border-radius: 42px;
  max-width: 860px;
  margin: 0 auto;
}
.policy-card h1 { font-size: clamp(3rem, 8vw, 5.5rem); max-width: none; }
.policy-card h2 { font-size: 1.7rem; margin-top: 2.2rem; max-width: none; }
.policy-card p { color: var(--muted); line-height: 1.65; font-weight: 600; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .meter i, .pulse { animation: none; }
}
@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .nav { flex-wrap: wrap; justify-content: flex-end; border-radius: 24px; }
  .hero { grid-template-columns: 1fr; padding-top: 2rem; gap: 2rem; }
  h1 { max-width: 9ch; }
  .feature-grid, .roadmap-list { grid-template-columns: repeat(2, 1fr); }
  .demo-panel { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .privacy-summary { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .site-header { position: relative; flex-direction: column; }
  .nav { width: 100%; justify-content: flex-start; }
  .nav a { font-size: .88rem; padding: .6rem .75rem; }
  .section { width: min(100% - 1rem, var(--max)); padding: 3.5rem 0; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .lead { font-size: 1.15rem; }
  .feature-grid, .roadmap-list { grid-template-columns: 1fr; }
  .app-card { transform: none; padding: .75rem; border-radius: 30px; }
  .mac-window { min-height: 26rem; border-radius: 24px; }
  .menubar-chip { position: static; margin-top: 1rem; display: inline-flex; }
  .site-footer { flex-direction: column; }
}
