:root {
  --accent: #e84d1c;
  --accent-deep: #c43a10;
  --ink: #141c22;
  --muted: #5a6770;
  --line: rgba(20, 28, 34, 0.1);
  --surface: #eef3f6;
  --paper: #f7fafc;
  --white: #ffffff;
  --deep: #0c171e;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --radius: 1.25rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.eyebrow.light {
  color: #ffb399;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 23, 30, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--white);
}

.logo-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, var(--accent), #ff8a4c);
  box-shadow: 0 0 0 3px rgba(232, 77, 28, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:not(.btn):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 23, 30, 0.45) 0%, rgba(12, 23, 30, 0.2) 35%, rgba(12, 23, 30, 0.78) 100%),
    linear-gradient(90deg, rgba(12, 23, 30, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 5.5rem;
  max-width: 42rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  margin-right: auto;
  width: min(42rem, calc(100% - 2.5rem));
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
  color: var(--white);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 700;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Featured */
.featured {
  padding: 2.25rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.featured-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
}

.featured .eyebrow {
  margin: 0;
  color: var(--muted);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: rgba(20, 28, 34, 0.38);
}

/* Split sections */
.split {
  padding: 6.5rem 0;
  background: var(--paper);
}

.split-reverse {
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse .split-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-visual {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23e84d1c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.85rem no-repeat,
    rgba(232, 77, 28, 0.12);
}

.app-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  animation: floatCard 4.5s ease-in-out infinite;
}

.app-card-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.app-card strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 3rem;
  margin-top: 0.75rem;
}

.bars i {
  flex: 1;
  height: var(--h);
  border-radius: 0.3rem 0.3rem 0.15rem 0.15rem;
  background: linear-gradient(180deg, #ff7a45, var(--accent));
  opacity: 0.9;
}

.notify-stack {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.notify-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideUp 0.8s var(--ease) both;
}

.notify-pill.delay {
  animation-delay: 0.25s;
}

.notify-pill .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 77, 28, 0.18);
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 6.5rem 0 7rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(232, 77, 28, 0.08), transparent 60%),
    linear-gradient(180deg, #f4f7fa 0%, #e8eef2 100%);
}

.section-head {
  max-width: 28rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 1.6rem 1.4rem 1.7rem;
  border-top: 2px solid rgba(20, 28, 34, 0.12);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.feature:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--accent);
}

.feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Community */
.community {
  position: relative;
  color: var(--white);
  padding: 7rem 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
}

.community-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(12, 23, 30, 0.92) 20%, rgba(12, 23, 30, 0.72) 55%, rgba(232, 77, 28, 0.45) 100%);
}

.community-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: end;
}

.community-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.community-copy > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat {
  padding: 1.35rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2.25rem;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .logo {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.35rem;
  width: 100%;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Inner pages */
.inner-page .site-header {
  background: rgba(12, 23, 30, 0.92);
  backdrop-filter: blur(14px);
}

.nav a[aria-current="page"] {
  color: var(--white);
}

.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(232, 77, 28, 0.12), transparent 55%),
    linear-gradient(180deg, #e8eef2 0%, var(--paper) 100%);
}

.page-hero-inner {
  max-width: 40rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38ch;
}

.page-section {
  padding: 1rem 0 5rem;
}

.page-grid {
  display: grid;
  gap: 1.5rem;
}

.page-block {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.page-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.page-block > p {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.page-block .check-list {
  margin-top: 0.25rem;
}

.page-stats {
  margin-top: 0.5rem;
}

.page-stats .stat {
  border-top-color: var(--line);
  color: var(--ink);
}

.page-stats .stat strong {
  color: var(--accent);
}

.page-stats .stat span {
  color: var(--muted);
}

.page-cta {
  padding: 4rem 0 5.5rem;
  background: var(--deep);
  color: var(--white);
}

.page-cta-inner {
  max-width: 32rem;
}

.page-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.65rem;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.start-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.start-form,
.start-aside {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.start-form h2,
.start-aside h2 {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.start-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.start-form input,
.start-form select {
  min-height: 2.85rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.start-form input:focus,
.start-form select:focus {
  outline: 2px solid rgba(232, 77, 28, 0.35);
  border-color: var(--accent);
}

.start-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.start-aside .check-list {
  margin-bottom: 1.25rem;
}

.start-aside > p {
  color: var(--muted);
}

.start-aside a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .split-grid,
  .split-reverse .split-grid,
  .community-inner,
  .feature-grid,
  .start-layout {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-copy {
    order: 1;
  }

  .split-reverse .split-visual {
    order: 2;
  }

  .split {
    padding: 4.5rem 0;
  }

  .features {
    padding: 4.5rem 0 5rem;
  }

  .community {
    padding: 5rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(12, 23, 30, 0.96);
    backdrop-filter: blur(12px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a:not(.btn) {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-top: 0.85rem;
    width: 100%;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .brand-signal {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .featured-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
