﻿:root {
  --bg: #f3efe7;
  --bg-soft: #ede6db;
  --surface: #fffdf9;
  --surface-strong: #f7f1e7;
  --line: #ded3c3;
  --ink: #222018;
  --ink-soft: #4a463d;
  --ink-muted: #716a5f;
  --accent: #7e5a3a;
  --accent-2: #c7b497;
  --dark: #2e2a24;
  --shadow: 0 22px 60px -36px rgba(34, 32, 24, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at 30% 0%, var(--bg-soft), var(--bg));
  color: var(--ink);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#000 0.4px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: 1;
}

.container {
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(126, 90, 58, 0.12), rgba(199, 180, 151, 0.18)),
    linear-gradient(180deg, #f5f0e8 0%, #eee6da 100%);
  border-bottom: 1px solid var(--line);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  z-index: 2;
}

.orb-1 {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -140px;
  background: rgba(126, 90, 58, 0.28);
}

.orb-2 {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: -100px;
  background: rgba(80, 76, 66, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.brand:hover {
  transform: translateY(6px) scale(1.02);
}

.brand img {
  width: 264px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(34, 32, 24, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 1.1rem;
}

.hero-content {
  padding: 28px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.phone {
  width: 300px;
  border-radius: 40px;
  background: #171513;
  padding: 12px;
  box-shadow: 0 30px 65px -38px rgba(34, 32, 24, 0.95);
}

.phone-notch {
  width: 120px;
  height: 22px;
  border-radius: 999px;
  background: #0f0f0f;
  margin: 0 auto 12px;
}

.phone-screen {
  min-height: 520px;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(165deg, #fffaf3 0%, #f1e8da 100%);
  border: 1px solid #d8cab4;
  overflow: hidden;
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.float-chip {
  position: absolute;
  z-index: 4;
  background: #fffdf8;
  border: 1px solid #e2d4c0;
  color: #4d463b;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 18px 30px -24px rgba(34, 32, 24, 0.95);
}

.chip-1 {
  top: 68px;
  left: 8px;
}

.chip-2 {
  right: 18px;
  bottom: 72px;
}

.hero-copy {
  max-width: 650px;
}

.pill {
  display: inline-flex;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(126, 90, 58, 0.12);
  border: 1px solid rgba(126, 90, 58, 0.24);
  color: #67482e;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hero h1 {
  margin: 16px 0 0;
  max-width: 890px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: 0.22s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px -14px rgba(126, 90, 58, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline-dark:hover {
  transform: translateY(-1px);
  background: #fff;
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

main {
  position: relative;
  z-index: 2;
}

.metrics {
  margin-top: -34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  color: var(--dark);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  margin-top: 80px;
}

.section-head .eyebrow {
  margin: 0;
  color: #7d694f;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.7rem;
  font-weight: 800;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  line-height: 1.15;
}

.section-head p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.grid-3 {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.video-shell {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(247, 241, 231, 0.9));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.video-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.video-head p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.video-placeholder {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px dashed #bca98d;
  background:
    linear-gradient(120deg, rgba(126, 90, 58, 0.08), rgba(126, 90, 58, 0.02)),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.8), rgba(240, 232, 220, 0.8));
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  cursor: default;
}

.video-embed {
  width: 100%;
  max-height: 520px;
  border-radius: 12px;
  border: 1px solid #d9ccb8;
  background: #111;
  display: block;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.why-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.why-card {
  border-radius: 12px;
  padding: 14px;
  background: var(--surface-strong);
  border: 1px solid #e4d8c6;
}

.why-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.why-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cta {
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #3f392f;
  background: linear-gradient(145deg, #3a342c, #2c2822);
  color: #fff;
  box-shadow: 0 24px 44px -30px rgba(34, 32, 24, 1);
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cta p {
  margin: 12px 0 0;
  color: #d8d2c8;
}

.footer {
  margin-top: 70px;
  border-top: 1px solid #1e1e1e;
  background: #050505;
  color: #f5f5f5;
}

.footer-top {
  padding: 34px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  border-bottom: 1px solid #2b2b2b;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.footer-col p {
  margin: 0 0 10px;
  color: #d8d8d8;
  line-height: 1.5;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.footer-brand p {
  margin: 4px 0 0;
  color: #bdbdbd;
  font-size: 0.95rem;
}

.footer-copy {
  max-width: 420px;
}

.footer-bottom {
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: #c8c8c8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 920px) {
  .metrics,
  .grid-3,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 90px;
    width: min(320px, calc(100% - 40px));
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: auto;
    padding-top: 8px;
  }

  .phone {
    width: 256px;
  }

  .phone-screen {
    min-height: 450px;
  }

  .chip-1,
  .chip-2 {
    position: static;
    margin-top: 8px;
  }

  .video-placeholder {
    min-height: 240px;
  }

  .section,
  .footer {
    margin-top: 58px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
