:root {
  --indigo: #20324F;
  --ivory: #EDF1F4;
  --gold: #C49A2E;
  --green: #176B4E;
  --font-heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--indigo);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: var(--indigo);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

footer :focus-visible,
.trust :focus-visible {
  outline-color: var(--ivory);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(32, 50, 79, 0.1);
}

header .logo {
  height: 32px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header nav a {
  font-size: 0.9rem;
}

header nav a:not(.badge-header) {
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

header .badge-header img {
  height: 36px;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 5.5rem 1.5rem 6rem;
    align-items: start;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }
}

.hero-copy {
  text-align: center;
}

@media (min-width: 900px) {
  .hero-copy {
    text-align: left;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero .pitch {
  font-size: 1.15rem;
  color: rgba(32, 50, 79, 0.8);
  margin: 0 0 2rem;
}

.problem {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  text-align: center;
}

.problem p {
  font-size: 1.1rem;
  color: rgba(32, 50, 79, 0.85);
  margin: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  order: -1;
}

@media (min-width: 900px) {
  .hero-visual {
    order: 0;
  }
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 20%;
  background: radial-gradient(circle, rgba(196, 154, 46, 0.22), transparent 70%);
}

.hero-screenshot {
  position: relative;
  width: 200px;
  border-radius: 22px;
  box-shadow: 0 24px 40px -16px rgba(32, 50, 79, 0.4);
  transform: rotate(-3deg);
}

@media (min-width: 640px) {
  .hero-screenshot {
    width: 240px;
  }
}

.cta {
  display: inline-block;
  transition: transform 0.15s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.cta img {
  height: 56px;
}

.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.features h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  text-align: center;
  margin: 0 0 3rem;
}

.features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
}

@media (min-width: 640px) {
  .features ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features li {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(32, 50, 79, 0.14);
}

.features .glyph {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 0.9rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.features li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.features li p {
  margin: 0;
  color: rgba(32, 50, 79, 0.85);
}

.trust {
  background: var(--indigo);
  color: var(--ivory);
}

.trust p {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.35;
}

.who {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4.5rem;
  text-align: center;
}

.who h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 1rem;
}

.who p {
  color: rgba(32, 50, 79, 0.85);
  margin: 0;
}

.screens {
  padding: 3rem 1.5rem;
  text-align: center;
}

.screens h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 2rem;
}

.screens-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.screens-row img {
  width: 180px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(32, 50, 79, 0.15);
}

@media (min-width: 640px) {
  .screens-row {
    justify-content: safe center;
  }
}

footer {
  background: var(--indigo);
  color: var(--ivory);
  text-align: center;
  padding: 3rem 1.5rem;
}

footer .cta {
  margin-bottom: 1.5rem;
}

footer .cta img {
  height: 48px;
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

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

footer .logo-footer {
  height: 24px;
  margin: 1.5rem auto 0;
  opacity: 0.85;
}
