:root {
  /* Palette */
  --soft-coral-amber: #E7A684;
  --clay-rose: #CC7F6E;
  --blush-oat: #F5E8DF;
  --peach-mist: #F0D9CA;
  --fresh-teal: #4FC4B0;
  --cocoa-ink: #2F2521;
  --warm-espresso: #4A3A34;

  --bg: #F6F3F0;
  --surface: #FFFFFF;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 10, 7, 0.18);
  --shadow-card: 0 10px 26px rgba(0, 0, 0, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at top left, #fff 0, #f6f3f0 55%),
    radial-gradient(circle at bottom right, #f0d9ca 0, #f6f3f0 60%);
  color: var(--cocoa-ink);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(246, 243, 240, 0.96),
    rgba(246, 243, 240, 0.88)
  );
  border-bottom: 1px solid rgba(74, 58, 52, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 0, #fff 0, rgba(255, 255, 255, 0) 45%),
    linear-gradient(135deg, var(--soft-coral-amber), var(--clay-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 21px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.brand-tagline {
  font-size: 12px;
  color: var(--warm-espresso);
  opacity: 0.85;
}

/* Nav */

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--warm-espresso);
  padding: 6px 12px;
  border-radius: 999px;
  transition:
    background 0.16s ease-out,
    color 0.16s ease-out,
    transform 0.16s ease-out;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  position: relative;
  padding: 60px 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(231, 166, 132, 0.28) 0, transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(79, 196, 176, 0.26) 0, transparent 48%),
    radial-gradient(circle at 10% 100%, rgba(240, 217, 202, 0.4) 0, transparent 52%);
  opacity: 0.9;
  pointer-events: none;
  animation: heroGlow 16s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {{
    transform: translate3d(0, 0, 0) scale(1);
  }}
  50% {{
    transform: translate3d(-12px, 8px, 0) scale(1.03);
  }}
  100% {{
    transform: translate3d(10px, -6px, 0) scale(1.02);
  }}
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--warm-espresso);
  opacity: 0.9;
  margin: 0 0 10px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  letter-spacing: -0.04em;
}

.hero-sub {
  margin: 0 0 20px;
  color: var(--warm-espresso);
  font-size: 16px;
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 14px;
  color: var(--warm-espresso);
  opacity: 0.9;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-strip {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.hero-shot {
  width: 210px;
  max-width: 48vw;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out,
    color 0.15s ease-out;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(120deg, var(--fresh-teal), #33c3a2);
  color: #fff;
  box-shadow: 0 14px 30px rgba(79, 196, 176, 0.42);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(79, 196, 176, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--warm-espresso);
  border: 1px solid rgba(74, 58, 52, 0.08);
}

.btn-ghost:hover {
  background: #fff;
}

/* Sections */

.section {
  padding: 44px 0;
}

.section-light {
  background: radial-gradient(circle at top right, #fff 0, #f9f0e9 55%);
}

.section-soft {
  background: linear-gradient(145deg, var(--blush-oat), rgba(240, 217, 202, 0.96));
}

.section-contrast {
  background: radial-gradient(circle at top left, #4A3A34 0, #2F2521 55%);
  color: #fff;
}

.section-contrast .section-sub {
  color: rgba(255, 255, 255, 0.9);
}

.section-header {
  margin-bottom: 26px;
}

.section-header h2 {
  margin: 4px 0;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.section-sub {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--warm-espresso);
  max-width: 34rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Feature grid */

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

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-card);
  font-size: 15px;
  color: var(--warm-espresso);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background 0.16s ease-out;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  background: #fff;
}

.feature-card h3 {
  margin: 8px 0 6px;
  font-size: 17px;
  color: var(--cocoa-ink);
}

.feature-icon {
  font-size: 20px;
}

/* Screens */

.screens-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.screen-card {
  background: rgba(10, 8, 6, 0.7);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.screen-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.screen-caption {
  margin: 10px 4px 4px;
  font-size: 15px;
  opacity: 0.93;
}

/* Split section */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.split-text p {
  margin: 0 0 14px;
  color: var(--warm-espresso);
  font-size: 16px;
}

.split-visual img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.bullet-list {
  list-style: disc;
  margin: 12px 0 0 1.2rem;
  padding: 0;
  font-size: 15px;
  color: var(--warm-espresso);
}

/* CTA */

.section-cta {
  background: linear-gradient(120deg, var(--soft-coral-amber), var(--clay-rose));
  color: #2f1710;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-cta h2 {
  font-size: 30px;
}

.section-cta p {
  font-size: 16px;
}

.btn-cta {
  background: #fff;
  color: #2f1710;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(74, 58, 52, 0.08);
  background: rgba(246, 243, 240, 0.98);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
  font-size: 13px;
  color: var(--warm-espresso);
}

.footer-inner a {
  color: inherit;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 14px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screens-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screens-row {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    flex-direction: column;
    align-items: center;
  }

  .hero-shot {
    width: 230px;
  }
}
