/* Slaw Solutions — Solo Edition */
:root {
  --bg: #050608;
  --bg2: #0a0d12;
  --panel: #0f1319;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --muted: #8b95a8;
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.15);
  --green: #4a6b4e;
  --orange-glow: rgba(255, 140, 60, 0.35);
  --font-display: "Oxanium", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#deploy-banner {
  position: fixed;
  left: 8px;
  top: calc(var(--header-h) + 6px);
  z-index: 2147483647;
  font: 12px/1.35 ui-monospace, Consolas, monospace;
  background: rgba(0, 0, 0, 0.88);
  color: #7fff7f;
  padding: 7px 11px;
  border-radius: 5px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  max-width: min(96vw, 420px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header--minimal {
  grid-template-columns: 1fr auto;
}
.site-header--minimal .nav-actions {
  grid-column: auto;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
}
.site-header .logo img {
  height: 58px;
  width: auto;
}

.nav-center {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  justify-self: center;
  grid-column: 2;
}
.nav-center a {
  color: var(--text);
  text-decoration: none;
}
.nav-center a:hover {
  color: var(--cyan);
  text-decoration: none;
}
.nav-center span.sep {
  color: var(--muted);
  user-select: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(10, 13, 18, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 0.5rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child {
  border-bottom: none;
}

main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 2.5rem 1.25rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 229, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 80% 100%, var(--orange-glow), transparent 45%),
    linear-gradient(180deg, #070a10 0%, #050608 40%, #080b12 100%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 130px 80px, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 160px 20px, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200px 120px, 250px 180px, 220px 200px, 280px 160px, 190px 140px;
  pointer-events: none;
}

.hero__layer {
  position: absolute;
  inset: -5%;
  z-index: 1;
  pointer-events: none;
}

.hero__layer--battle {
  bottom: 0;
  top: auto;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85)),
    linear-gradient(90deg, #0d100c 0%, #1a1510 50%, #0d100c 100%);
  opacity: 0.9;
  mask-image: linear-gradient(180deg, transparent, black 35%);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 35%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero__pill .dot {
  color: var(--cyan);
  font-size: 0.6rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}
.hero h1 .brand {
  color: var(--cyan);
  display: block;
}
.hero h1 .tagline {
  display: block;
  color: var(--text);
  font-size: clamp(1.2rem, 3.2vw, 1.85rem);
  font-weight: 700;
  margin-top: 0.45rem;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1rem;
}
.hero .lead--tight {
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}
.btn:active {
  transform: scale(0.98);
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--cyan);
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--cyan);
  text-decoration: none;
}

.btn--store-badge {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.btn--store-badge:hover {
  background: transparent;
  opacity: 0.9;
  transform: scale(1.02);
  text-decoration: none;
}
.btn--store-badge:active {
  transform: scale(0.98);
}
.btn--store-badge img {
  height: min(56px, 12vw);
  width: auto;
  display: block;
}

.hero__brand-mark {
  position: relative;
  max-width: min(400px, 86vw);
  margin: 2.75rem auto 0;
  isolation: isolate;
}

.hero__logo-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(50vh, 520px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.55));
}

.section {
  padding: 4rem 1.25rem;
}
.section--tight {
  padding-top: 3rem;
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

.apps-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  line-height: 1.65;
  margin: -0.25rem 0 2.5rem;
}

.apps-featured-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.apps-featured-tag {
  color: var(--cyan);
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.app-upcoming {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
}
.app-upcoming h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.app-upcoming p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 38rem;
}

.app-showcase {
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-top: 1px solid var(--border);
}

.app-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .app-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.app-showcase__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.app-showcase__shots figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.app-showcase__shots figcaption {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 0.35rem 0.5rem 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.app-showcase__shots--layered {
  position: relative;
  display: block;
  min-height: min(58vw, 380px);
  margin-bottom: 0.5rem;
}
.app-showcase__shots--layered .app-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.app-showcase__shots--layered .app-shot--back {
  position: relative;
  width: min(78%, 320px);
  margin-left: auto;
  margin-top: clamp(1.5rem, 6vw, 2.75rem);
}
.app-showcase__shots--layered .app-shot--front {
  position: absolute;
  top: 0;
  left: 0;
  width: min(78%, 320px);
  z-index: 2;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}
@media (min-width: 900px) {
  .app-showcase__shots--layered {
    min-height: min(42vw, 440px);
  }
  .app-showcase__shots--layered .app-shot--back,
  .app-showcase__shots--layered .app-shot--front {
    width: min(82%, 340px);
  }
}

.app-info {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.75rem;
}
.app-info__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.app-info__head img,
.app-info__head .app-info__icon {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
@media (min-width: 520px) {
  .app-info__head img,
  .app-info__head .app-info__icon {
    width: 128px;
    height: 128px;
    border-radius: 26px;
  }
}
.app-info__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}
.app-info__sub {
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}
.feature-card svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--cyan);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.2rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.app-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 1rem 0 0.35rem;
}
.app-note {
  font-size: 0.85rem;
  color: var(--cyan);
  font-style: italic;
  margin: 0.75rem 0 0;
}

.social-proof {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.quote-block {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  line-height: 1.35;
}
.reviews-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: 12px;
  max-width: 28rem;
  margin: 0 auto;
}

.about {
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-top: 1px solid var(--border);
}
.about-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.about-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green), #1e2520);
  border: 3px solid rgba(0, 229, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.about-card p {
  color: var(--muted);
  font-size: 1.05rem;
}
.about-card .highlight {
  color: var(--cyan);
  margin-top: 1rem;
  display: block;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.about-links a {
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}
.about-links a:hover {
  background: var(--cyan);
  color: var(--bg);
}

.coming-soon {
  border-top: 1px solid var(--border);
}
.card-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.teaser-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
}
.teaser-card .arrow {
  color: var(--cyan);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.demo {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  max-width: 800px;
  margin: 0 auto;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  background: #030405;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.site-footer p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--cyan);
}
@media (min-width: 900px) {
  .nav-center {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .nav-center {
    display: none;
  }
  .nav-actions {
    grid-column: auto;
    justify-self: end;
  }
}
