:root {
  /* Finza color palette */
  --gray-light-1: #000000;
  --gray-light-2: #1C1C1C;
  --gray-light-3: #292929;
  --gray-light-4: #353535;
  --gray-light-5: #414141;
  --gray-light-6: #5B5B5B;
  --gray-light-7: #888888;
  --gray-light-8: #A9A9A9;
  --gray-light-9: #C5C5C5;
  --gray-light-10: #D0D0D0;
  --gray-light-11: #E7E7E7;
  --gray-light-12: #F6F6F6;
  --gray-light-13: #FFFFFF;

  --gray-dark-1: #000000;
  --gray-dark-2: #121314;
  --gray-dark-3: #191A1C;
  --gray-dark-4: #1D1F22;
  --gray-dark-5: #27292D;
  --gray-dark-6: #2D2F34;
  --gray-dark-7: #36393F;
  --gray-dark-8: #474A53;
  --gray-dark-9: #5F6470;
  --gray-dark-10: #828998;
  --gray-dark-11: #A3ABB9;
  --gray-dark-12: #CAD1DE;
  --gray-dark-13: #FFFFFF;

  --brand-1-light: #E60F3C;
  --brand-1-dark: #BA1E40;
  --brand-2-light: #FF3255;

  --bg: var(--gray-light-12);
  --paper: var(--gray-light-13);
  --text: var(--gray-light-2);
  --muted: var(--gray-light-6);
  --line: rgba(28, 28, 28, 0.08);
  --shadow: 0 30px 80px rgba(28, 28, 28, 0.12);
  --brand: var(--brand-1-light);
  --brand-dark: var(--brand-1-dark);
  --brand-soft: rgba(230, 15, 60, 0.08);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
}

.section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.hero {
  min-height: 760px;
  padding: 28px 34px 60px;
}

.hero-bg,
.final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.78), rgba(255, 250, 244, 0.2)),
    url("../images/blurred-background.webp") center / cover no-repeat;
  opacity: 0.78;
  pointer-events: none;
}

.nav,
.hero-grid,
.footer,
.final-content {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  font-weight: 700;
}

.rating small {
  color: var(--muted);
  font-weight: 600;
}

.star {
  color: var(--brand);
  font-size: 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: 650px;
}

.hero-copy {
  max-width: 620px;
  padding-left: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 7vw, 106px);
  line-height: 0.9;
  letter-spacing: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: normal;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: normal;
}

.lead,
.showcase-copy p,
.feature-card p,
.final-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lead {
  max-width: 460px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--brand);
  color: var(--gray-light-13);
  box-shadow: 0 14px 32px rgba(230, 15, 60, 0.22);
}

.button-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid var(--line);
}

.phone-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.phone {
  filter: drop-shadow(0 32px 42px rgba(230, 15, 60, 0.22));
}

.hero-phone {
  width: min(390px, 74vw);
  transform: rotate(0deg);
}



.why {
  margin-top: 22px;
  padding: 70px 44px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--gray-light-13);
  box-shadow: 0 18px 45px rgba(28, 28, 28, 0.06);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.showcase {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  padding: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 40px;
  min-height: 640px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  overflow: hidden;
}

.showcase-card.reverse {
  grid-template-columns: 0.85fr 1fr;
}

.showcase-card.reverse .showcase-copy {
  order: 2;
}

.showcase-card.reverse .showcase-phone-wrap {
  order: 1;
}

.showcase-copy {
  max-width: 540px;
}

.showcase-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-phone-wrap::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 207, 172, 0.55), rgba(230, 207, 172, 0));
}

.showcase-phone-wrap .phone {
  position: relative;
  z-index: 1;
  width: min(360px, 70vw);
}

.final-cta {
  margin-top: 22px;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 70px 28px;
  text-align: center;
}

.final-bg {
  opacity: 0.74;
  transform: scaleX(-1);
}

.final-content {
  max-width: 760px;
}

.final-content .button {
  margin-top: 18px;
}


.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 8px;
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer a:hover {
  color: var(--text);
}

.footer-brand {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 20px, 680px);
    margin-top: 10px;
  }

  .section {
    border-radius: 30px;
  }

  .hero {
    min-height: auto;
    padding: 22px 18px 44px;
  }

  .rating small {
    display: none;
  }

  .hero-grid,
  .showcase-card,
  .showcase-card.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 12px;
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 8px 0;
  }

  h1 {
    font-size: clamp(52px, 16vw, 82px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .phone-stage {
    min-height: 520px;
  }

  .hero-phone {
    width: min(340px, 78vw);
  }

  .why {
    padding: 52px 20px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .showcase {
    padding: 0;
  }

  .showcase-card {
    min-height: auto;
    padding: 42px 20px;
    gap: 24px;
  }

  .showcase-card.reverse .showcase-copy,
  .showcase-card.reverse .showcase-phone-wrap {
    order: initial;
  }

  .showcase-phone-wrap .phone {
    width: min(310px, 74vw);
  }

  .final-cta {
    min-height: 450px;
  }

  .footer {
    width: min(100% - 28px, 680px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav {
    align-items: flex-start;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .button {
    width: 100%;
  }

  .lead,
  .showcase-copy p,
  .feature-card p,
  .final-content p {
    font-size: 16px;
  }

  .phone-stage {
    min-height: 460px;
  }
}
