:root {
  color-scheme: light;
  --navy: #101e2b;
  --navy-soft: #192b3b;
  --ink: #111b24;
  --paper: #e8ecea;
  --canvas: #f7f8f7;
  --white: #ffffff;
  --lime: #c9eb47;
  --muted: #65717a;
  --line: #d5dbd8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100%, 620px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 30px max(26px, env(safe-area-inset-bottom));
  background: var(--canvas);
  box-shadow: 0 0 50px rgba(16, 30, 43, 0.08);
  border-top: 5px solid var(--lime);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 20px;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand p span {
  margin-inline: 4px;
  color: var(--lime);
}

.intro {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 26px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portrait {
  display: block;
  width: 146px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 9px 9px 0 var(--lime);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.02;
}

.promise {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.availability span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 235, 71, 0.12);
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 18px 0 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.proof p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.proof p + p {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.proof strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.proof span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.actions {
  display: grid;
  gap: 12px;
}

.action {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.action-number {
  align-self: start;
  padding-top: 3px;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.58;
}

.action small {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.action-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 7px 18px rgba(16, 30, 43, 0.12);
}

.action-primary small {
  color: var(--lime);
}

.action-light {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(95, 119, 19, 0.1);
}

.action-light small {
  color: rgba(12, 21, 31, 0.62);
}

.action-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.action-outline small {
  color: var(--muted);
}

.arrow,
.phone {
  justify-self: end;
  font-size: 27px;
  font-weight: 500;
}

.phone {
  font-size: 23px;
}

.action:active {
  transform: translateY(1px);
}

.action:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

footer p {
  margin: 0;
}

footer p:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

footer p:first-child span {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--lime);
  border-radius: 50%;
}

@media (hover: hover) {
  .action:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 24px rgba(16, 30, 43, 0.13);
  }

  .action-outline:hover {
    border-color: rgba(203, 234, 82, 0.68);
  }
}

@media (max-width: 390px) {
  .page {
    padding-inline: 16px;
  }

  .brand p {
    display: none;
  }

  .intro {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 18px 22px 16px;
  }

  .portrait {
    width: 108px;
  }

  h1 {
    font-size: 31px;
  }

  .promise {
    font-size: 13px;
  }

  .availability {
    margin-top: 14px;
    font-size: 11px;
  }

  .proof {
    margin-bottom: 24px;
  }

  .proof p + p {
    padding-left: 18px;
  }

  .action {
    font-size: 16px;
    padding-inline: 14px;
  }

  footer p:last-child {
    display: none;
  }
}

@media (max-width: 350px) {
  .intro {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .portrait {
    width: 92px;
  }

  h1 {
    font-size: 27px;
  }

  .availability {
    display: none;
  }

  .action-number {
    display: none;
  }

  .action {
    grid-template-columns: minmax(0, 1fr) 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .action {
    transition: none;
  }
}
