:root {
  --bg: #050505;
  --surface: #121212;
  --surface-soft: #191919;
  --text: #f5f5f5;
  --muted: #bbaeb3;
  --line: #2b1e23;
  --wine: #9b0022;
  --wine-bright: #cf0a3a;
  --wine-dark: #640015;
  --black: #0a0a0a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(207, 10, 58, 0.5), transparent 38%),
    radial-gradient(circle at 80% -5%, rgba(155, 0, 34, 0.58), transparent 35%),
    linear-gradient(145deg, #160006 0%, #3a0010 38%, #9b0022 100%);
  color: #fff;
  padding: 24px 0 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 45%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  padding: 9px 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #ffe8ee;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(84vw, 320px);
  height: 100vh;
  background: linear-gradient(170deg, #12070a 0%, #1f0a11 55%, #090909 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 14px 0 30px rgba(0, 0, 0, 0.45);
  padding: 78px 18px 24px;
  display: grid;
  align-content: start;
  gap: 8px;
  transform: translateX(-102%);
  transition: transform 0.26s ease;
  z-index: 999;
}

.mobile-menu a {
  color: #ffe7ee;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: 60px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd0dc;
  font-weight: 700;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.04;
  margin: 12px 0;
  max-width: 17ch;
}

.hero-copy p {
  color: #ffe7ee;
  line-height: 1.72;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary,
.btn-primary {
  background: linear-gradient(120deg, var(--wine-bright), var(--wine));
  color: #fff;
  box-shadow: 0 10px 22px rgba(155, 0, 34, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #df1a49, #7d001b);
}

.hero .btn-primary {
  position: relative;
  background: #000;
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 18px rgba(207, 10, 58, 0.45),
    0 0 38px rgba(207, 10, 58, 0.32);
}

.hero .btn-primary::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(207, 10, 58, 0.32) 0%, rgba(207, 10, 58, 0) 70%);
  z-index: -1;
  filter: blur(1px);
}

.hero .btn-primary:hover {
  background: #070707;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 26px rgba(207, 10, 58, 0.6),
    0 0 52px rgba(207, 10, 58, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.btn.small {
  margin-top: 14px;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.hero-shots {
  position: relative;
  min-height: 600px;
}

.shot {
  position: absolute;
  margin: 0;
  border-radius: 32px;
  overflow: visible;
  aspect-ratio: 9 / 19.5;
}

.shot::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(5px);
}

.shot::after {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -2;
  border-radius: 48px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 76%);
  filter: blur(8px);
}

.phone-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(160deg, #0f0f0f 0%, #1b1b1b 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.03) inset,
    0 0 24px rgba(255, 255, 255, 0.35),
    0 0 38px rgba(255, 255, 255, 0.2);
  padding: 10px;
}

.phone-notch {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 36%;
  height: 14px;
  transform: translateX(-50%);
  background: #070707;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.shot-left {
  width: 47%;
  left: 2%;
  top: 36px;
  transform: rotate(-0.6deg);
}

.shot-right {
  width: 50%;
  right: 0;
  top: 0;
  transform: rotate(0.8deg);
}

.section {
  padding: 68px 0 16px;
}

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

.pillar-card {
  position: relative;
  border: 1px solid #471620;
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(207, 10, 58, 0.14), rgba(11, 11, 11, 0.96) 48%),
    #0b0b0b;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(207, 10, 58, 0.18);
}

.pillar-card::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 26%;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #ff285e, transparent);
}

.pillar-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ff2f62;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 47, 98, 0.35));
}

.pillar-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f3f3f3;
}

.pillar-card p {
  margin: 8px 0 0;
  color: #c9b9bf;
  font-size: 0.9rem;
  line-height: 1.5;
}

.section-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ea6c8c;
  font-size: 0.78rem;
  font-weight: 700;
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 34ch;
}

.triad,
.app-grid,
.features-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

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

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

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

.triad-card,
.app-card,
.feature-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.triad-card h3,
.app-card h3,
.feature-card h3 {
  margin: 0 0 10px;
}

.triad-card ul,
.app-card ul,
.feature-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.chip {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 700;
}

.chip-blue {
  background: #2a1a1f;
  color: #ffdce4;
}

.chip-wine {
  background: #3c101d;
  color: #ffc6d4;
}

.downloads-box {
  margin: 56px auto 64px;
  background: linear-gradient(155deg, #121212 0%, #1f0c12 100%);
  border: 1px solid #41202b;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr;
}

.downloads-box p {
  color: var(--muted);
}

.download-columns {
  display: grid;
  gap: 12px;
}

.download-item {
  border: 1px solid #4b1f2b;
  border-radius: 14px;
  padding: 14px;
  background: #141414;
}

.download-item h4 {
  margin: 0 0 12px;
}

.buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-dark {
  background: linear-gradient(120deg, var(--wine-bright), var(--wine-dark));
  color: #fff;
}

.footer {
  border-top: 1px solid #3a151f;
  background: #090909;
  color: #cda8b3;
  padding: 18px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f0d9e0;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact-link {
  font-size: 1.04rem;
  color: #ffe6ed !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

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

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

.contact-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.35),
    0 0 16px rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: #ffd9e2;
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-icon {
  background: linear-gradient(140deg, #5d1326, #2a0e16);
  box-shadow: 0 0 14px rgba(255, 72, 117, 0.32);
}

.wa-icon {
  background: linear-gradient(140deg, #0f5e2f, #0a3d21);
  box-shadow: 0 0 14px rgba(29, 185, 84, 0.35);
}

.contact-main-link {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #1db954, #0a8f3e);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .pillars,
  .contact-grid,
  .downloads-box,
  .triad,
  .app-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-shots {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .shot,
  .shot-left,
  .shot-right {
    position: relative;
    width: min(320px, 88%);
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
  }
}

.legal-page {
  background: #070707;
  color: #f2f2f2;
}

.legal-wrap {
  width: min(920px, 92%);
  margin: 34px auto 60px;
  background: linear-gradient(160deg, #141414 0%, #1a0a0f 100%);
  border: 1px solid #3f1c26;
  border-radius: 18px;
  padding: 24px;
}

.legal-back {
  color: #ffd8e2;
  text-decoration: none;
  font-weight: 700;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-wrap h1 {
  margin: 14px 0 6px;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  max-width: none;
}

.legal-updated {
  color: #d8b3be;
  margin-top: 0;
}

.legal-wrap h2 {
  margin-top: 22px;
  font-size: 1.2rem;
}

.legal-wrap p,
.legal-wrap li {
  color: #e9e1e4;
  line-height: 1.75;
}

.legal-wrap ul {
  padding-left: 20px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.legal-actions .btn {
  min-width: 220px;
}

.legal-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(155, 0, 34, 0.14);
}
