@font-face{
  font-family: 'Geist Pixel';
  src: url('fonts/GeistPixel.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #FFF7E8;
  --panel: #FFFFFF;
  --ink: #241934;
  --muted: #6A5C88;
  --dim: #B9AFCB;
  --border: #2B2140;
  --orange: #DD614C;
  --amber: #FFC300;
  --blue: #2F6FED;
  --red: #FF4136;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist Pixel', monospace;
  font-size: 16px;
  line-height: 1.6;
  background-image:
    radial-gradient(rgba(43,33,64,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

.pixel{ font-family: 'Geist Pixel', monospace; }

::selection{ background: var(--orange); color: #fff; }

a{ color: inherit; }

.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- pixel border utility ---------- */
.pixel-border{
  border: 3px solid var(--border);
  border-radius: 0;
  image-rendering: pixelated;
  box-shadow: 6px 6px 0 var(--border);
}
.pixel-border-sm{
  border: 2px solid var(--border);
  box-shadow: 4px 4px 0 var(--border);
}

/* ---------- top bar ---------- */
header{
  padding: 22px 0 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-name{
  font-size: 18px;
  letter-spacing: 1px;
}

/* ---------- hero ---------- */
.hero{
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  padding: 6px 12px;
  font-size: 11px;
  margin-bottom: 22px;
}

h1{
  font-family: 'Geist Pixel', monospace;
  font-size: 30px;
  line-height: 1.55;
  margin: 0 0 22px;
  letter-spacing: 0.5px;
}
h1 .hl{
  color: var(--orange);
}

.hero p.lede{
  font-size: 16px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 30px;
}

.cta-row{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-download{
  font-family: 'Geist Pixel', monospace;
  font-size: 14px;
  background: var(--amber);
  color: var(--ink);
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  padding: 16px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.06s ease, box-shadow 0.06s ease, background 0.1s ease;
}
.btn-download:hover{
  background: var(--orange);
  color: #fff;
}
.btn-download:active{
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--border);
}
.btn-download svg{ width: 16px; height: 16px; }

.cta-note{
  font-size: 12px;
  color: var(--dim);
}
.cta-note strong{ color: var(--muted); }

/* ---------- hero mock notification ---------- */
.mock-stage{
  position: relative;
  height: 380px;
}
.mock-desktop{
  position: absolute;
  inset: 0;
  background: var(--panel);
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  overflow: hidden;
}
.mock-desktop::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(47,111,237,0.07) 25%, transparent 25%, transparent 50%, rgba(47,111,237,0.07) 50%, rgba(47,111,237,0.07) 75%, transparent 75%, transparent);
  background-size: 24px 24px;
}
.mock-taskbar{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34px;
  background: var(--ink);
  border-top: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.mock-taskbar-dots{
  display: flex;
  gap: 6px;
}
.mock-taskbar-dots span{
  width: 8px; height: 8px;
  display: inline-block;
}
.mock-taskbar-dots span:nth-child(1){ background: var(--dim); }
.mock-taskbar-dots span:nth-child(2){ background: var(--dim); }
.mock-taskbar-dots span:nth-child(3){ background: var(--amber); }
.mock-taskbar-label{
  font-family: 'Geist Pixel', monospace;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.5px;
}
.mock-clock{
  position: absolute;
  right: 12px; top: 8px;
  font-size: 10px;
  color: var(--dim);
}

.toast{
  position: absolute;
  left: 22px;
  bottom: 56px;
  width: 220px;
  background: #241934;
  color: #fff;
  border: 3px solid #FFC300;
  box-shadow: 5px 5px 0 var(--border);
  padding: 16px;
  animation: pop-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}
@keyframes pop-in{
  0%{ opacity: 0; transform: translateY(10px) scale(0.96); }
  100%{ opacity: 1; transform: translateY(0) scale(1); }
}
.toast-title{
  font-family: 'Geist Pixel', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #FFC300;
}

.mock-icons{
  position: absolute;
  left: 20px; top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mock-icon{
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.6);
  border: 2px solid var(--border);
}

/* ---------- section shell ---------- */
section{ padding: 64px 0; }
.section-head{
  margin-bottom: 40px;
  max-width: 60ch;
}
.section-head .kicker{
  font-family: 'Geist Pixel', monospace;
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.section-head h2{
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.section-head p{
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
}

/* ---------- reminders grid (cartridges) ---------- */
.cart-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cart-grid-3{
  grid-template-columns: repeat(3, 1fr);
}
.cart{
  background: var(--panel);
  border: 3px solid var(--border);
  box-shadow: 5px 5px 0 var(--border);
  padding: 20px 16px;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.cart:hover{
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--border);
}
.cart-icon{
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cart-icon svg{ width: 20px; height: 20px; }
.cart h3{
  font-size: 13.5px;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}
.cart p{
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}

.cart:nth-child(1) .cart-icon{ background: var(--amber); }
.cart:nth-child(2) .cart-icon{ background: var(--blue); }
.cart:nth-child(3) .cart-icon{ background: var(--orange); }
.cart:nth-child(4) .cart-icon{ background: var(--amber); }
.cart:nth-child(5) .cart-icon{ background: var(--blue); }
.cart:nth-child(6) .cart-icon{ background: var(--orange); }
.cart:nth-child(7) .cart-icon{ background: var(--amber); }
.cart:nth-child(1) .cart-icon svg,
.cart:nth-child(4) .cart-icon svg,
.cart:nth-child(7) .cart-icon svg{ color: var(--ink); }
.cart:nth-child(2) .cart-icon svg{ color: #fff; }
.cart:nth-child(3) .cart-icon svg{ color: #fff; }
.cart:nth-child(5) .cart-icon svg{ color: #fff; }
.cart:nth-child(6) .cart-icon svg{ color: #fff; }

/* ---------- feature rows (alternating) ---------- */
.feature-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-top: 2px dashed var(--dim);
}
.feature-row:first-of-type{ border-top: none; }
.feature-row.reverse{ direction: rtl; }
.feature-row.reverse > *{ direction: ltr; }

.feature-visual{
  background: var(--panel);
  border: 3px solid var(--border);
  box-shadow: 6px 6px 0 var(--border);
  padding: 28px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text .num{
  font-family: 'Geist Pixel', monospace;
  font-size: 12px;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.feature-text h3{
  font-size: 19px;
  margin: 0 0 12px;
}
.feature-text p{
  color: var(--muted);
  font-size: 14.5px;
  max-width: 42ch;
  margin: 0;
}

/* interval dial visual */
.dial-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
}
.dial-chip{
  border: 2px solid var(--border);
  background: var(--bg);
  text-align: center;
  padding: 10px 4px;
  font-size: 11px;
}
.dial-chip.active{
  background: var(--blue);
  color: #fff;
  box-shadow: 3px 3px 0 var(--border);
}

/* theme swatches visual */
.swatch-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.swatch{
  aspect-ratio: 1;
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
}
.sw1{ background: linear-gradient(135deg, var(--orange) 50%, var(--ink) 50%); }
.sw2{ background: linear-gradient(135deg, var(--blue) 50%, var(--amber) 50%); }
.sw3{ background: linear-gradient(135deg, #2ECC71 50%, var(--ink) 50%); }
.sw4{ background: linear-gradient(135deg, var(--red) 50%, #fff 50%); }
.sw5{ background: linear-gradient(135deg, var(--ink) 50%, var(--amber) 50%); }
.sw6{ background: linear-gradient(135deg, #9B59B6 50%, #fff 50%); }
.sw7{ background: linear-gradient(135deg, var(--blue) 50%, #fff 50%); }
.sw8{ background: linear-gradient(135deg, #fff 50%, var(--orange) 50%); border-style: dashed; }

/* queue visual */
.queue-stack{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.queue-item{
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--border);
  background: var(--bg);
  padding: 10px 12px;
  font-size: 12px;
}
.queue-item.now{
  background: var(--amber);
  box-shadow: 3px 3px 0 var(--border);
}
.queue-item .tag{
  font-size: 9px;
  color: var(--dim);
}
.queue-item.now .tag{ color: var(--ink); }

/* custom scheduler visual */
.cal-mini{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  width: 100%;
}
.cal-cell{
  aspect-ratio: 1;
  border: 1.5px solid var(--border);
  background: var(--bg);
}
.cal-cell.on{
  background: var(--orange);
}

/* ---------- footer / final CTA ---------- */
.final-cta{
  text-align: center;
  padding: 80px 0 40px;
}
.final-cta h2{
  font-family: 'Geist Pixel', monospace;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.final-cta p{
  color: var(--muted);
  margin: 0 0 32px;
}

footer{
  border-top: 3px solid var(--border);
  padding: 26px 0 40px;
  text-align: center;
  color: var(--dim);
  font-size: 12px;
}
footer .beta-badge{
  display: inline-block;
  background: var(--ink);
  color: var(--amber);
  font-family: 'Geist Pixel', monospace;
  font-size: 10px;
  padding: 6px 10px;
  border: 2px solid var(--border);
  margin-bottom: 14px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; padding-top: 48px; }
  .mock-stage{ height: 300px; order: -1; }
  h1{ font-size: 24px; }
  .cart-grid{ grid-template-columns: repeat(2, 1fr); }
  .cart-grid-3{ grid-template-columns: repeat(2, 1fr); }
  .feature-row{ grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse{ direction: ltr; }
  .feature-row .feature-visual{ order: -1; }
}

@media (max-width: 640px){
  .wrap{ padding: 0 18px; }
  .hero{ padding: 36px 0 40px; gap: 36px; }
  .mock-stage{ height: 260px; }
  h1{ font-size: 20px; line-height: 1.6; }
  .hero p.lede{ font-size: 14.5px; }
  .cta-row{ gap: 12px; }
  .btn-download{ font-size: 12px; padding: 14px 20px; }
  section{ padding: 44px 0; }
  .section-head h2{ font-size: 19px; }
  .cart-grid, .cart-grid-3{ grid-template-columns: 1fr 1fr; gap: 12px; }
  .cart{ padding: 16px 12px; }
  .toast{ width: 170px; left: 14px; bottom: 50px; padding: 12px; }
  .toast-title{ font-size: 11px; }
  .mock-taskbar-label{ font-size: 8px; }
  .final-cta h2{ font-size: 16px; }
}

@media (max-width: 420px){
  h1{ font-size: 17px; }
  .cart-grid, .cart-grid-3{ grid-template-columns: 1fr 1fr; }
  .dial-grid{ grid-template-columns: repeat(3, 1fr); }
  .swatch-grid{ grid-template-columns: repeat(4, 1fr); }
  .cta-row{ flex-direction: column; align-items: flex-start; }
  .mock-taskbar-label{ display: none; }
}

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