:root {
  --blue: #0079c1;
  --red: #e31837;
  --yellow: #ffd200;
  --green: #00703c;
  --road-green: #5e9732;
  --fuel-green: #36a64e;
  --brown: #794400;
  --orange: #faa634;
  --bg: #e0e5eb;
  --soft-blue: #c8d8e6;
  --ink: #102235;
  --muted: #607080;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.header-inner {
  width: min(1080px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 154px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.nav-button:hover,
.button:hover {
  text-decoration: none;
  filter: brightness(0.96);
}

.button.secondary {
  background: var(--soft-blue);
  color: var(--blue);
}

.hero {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.58fr);
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

.lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

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

.phone-frame {
  background: #05080c;
  border-radius: 34px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(16, 34, 53, 0.22);
  width: min(100%, 330px);
  justify-self: center;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(720px, calc(100vh - 128px));
  border-radius: 24px;
  object-fit: contain;
}

.phone-screen {
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.app-top {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: var(--white);
}

.app-top img {
  width: 126px;
}

.profile-dot {
  width: 26px;
  height: 26px;
  border: 3px solid var(--blue);
  border-radius: 999px;
  position: relative;
}

.profile-dot::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 3px;
  height: 8px;
  border-radius: 999px 999px 0 0;
  background: var(--blue);
}

.app-content {
  padding: 18px 16px 20px;
}

.search-pill {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 14px;
  padding: 5px;
  border-radius: 8px;
  background: var(--white);
}

.segmented span {
  min-height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.segmented span:first-child {
  background: var(--blue);
  color: var(--white);
}

.station-card {
  position: relative;
  margin-top: 18px;
  min-height: 112px;
  padding: 18px 72px 16px 92px;
  border-radius: 8px;
  background: var(--white);
}

.brand-tile {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

.price-sign {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  background: var(--green);
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.station-name {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.distance {
  font-size: 16px;
  font-weight: 900;
}

.chevron {
  position: absolute;
  right: 22px;
  top: 28px;
  width: 44px;
  height: 56px;
  opacity: 0.55;
}

.chevron::before,
.chevron::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 10px;
  right: 0;
  background: var(--bg);
  border-radius: 4px;
}

.chevron::before {
  top: 15px;
  transform: rotate(48deg);
}

.chevron::after {
  bottom: 15px;
  transform: rotate(-48deg);
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.panel {
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

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

.feature {
  min-height: 190px;
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.feature p,
.panel p,
.policy p,
.policy li {
  color: var(--muted);
  font-weight: 650;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.feature:nth-child(2) .feature-icon {
  background: var(--fuel-green);
}

.feature:nth-child(3) .feature-icon {
  background: var(--red);
}

.search-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.web-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--bg);
}

.web-result[hidden] {
  display: none;
}

.web-result h3 {
  margin-top: 10px;
}

.web-result p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.sign-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.sign {
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
}

.sign.green {
  background: var(--road-green);
}

.sign.blue {
  background: var(--blue);
}

.sign.red {
  background: var(--red);
}

.launch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-weight: 700;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--soft-blue);
}

.policy {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.policy h1 {
  font-size: clamp(40px, 6vw, 62px);
}

.policy h2 {
  margin-top: 32px;
  font-size: 28px;
}

.policy-card {
  margin-top: 24px;
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.site-footer {
  margin-top: 40px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-inner a {
  color: var(--white);
  margin-left: 14px;
}

@media (max-width: 820px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .grid,
  .launch-list,
  .sign-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .phone-screenshot {
    max-height: none;
  }
}
