:root {
  --ink: #111c1a;
  --ink-soft: #293733;
  --muted: #68726e;
  --paper: #f7f3ea;
  --paper-soft: #fffdf8;
  --line: rgba(17, 28, 26, 0.12);
  --teal: #075b55;
  --teal-soft: #e7f4f1;
  --gold: #c99a42;
  --shadow: 0 26px 80px rgba(17, 28, 26, 0.11);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(247, 243, 234, 0.96)),
    var(--paper);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0;
}

.brand,
.header-mail,
.site-footer a {
  text-decoration: none;
}

.brand {
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
}

.header-mail {
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 760;
}

.header-mail::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero {
  padding: 118px 0 0;
  background: linear-gradient(180deg, #fffdfa 0%, var(--paper) 100%);
}

.hero-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 50px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p,
figure {
  margin: 0;
}

h1 {
  font-size: clamp(76px, 13vw, 178px);
  line-height: 0.86;
  font-weight: 850;
}

.gold-line {
  display: block;
  width: 144px;
  height: 3px;
  margin: 34px auto 30px;
  background: var(--gold);
}

.gold-line.small {
  width: 64px;
  height: 2px;
  margin: 0 0 28px;
}

.hero-line {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
}

.hero-copy {
  max-width: 710px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.status-note {
  display: inline-flex;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
}

.button {
  margin-top: 24px;
  padding: 0 24px;
  background: var(--teal);
  color: var(--paper-soft);
  box-shadow: 0 18px 42px rgba(7, 91, 85, 0.22);
}

.button svg,
.mail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-figure {
  overflow: hidden;
  width: min(100%, 1440px);
  margin: 0 auto;
  border-top: 14px solid var(--paper-soft);
  border-bottom: 14px solid var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  height: clamp(340px, 46vw, 660px);
  object-fit: cover;
  object-position: center;
}

.feature-row,
.contact-band {
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 0;
  align-items: stretch;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row.reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
}

.feature-image {
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.app-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 44px;
  background:
    radial-gradient(circle at 26% 24%, rgba(201, 154, 66, 0.2), transparent 26%),
    radial-gradient(circle at 76% 66%, rgba(7, 91, 85, 0.2), transparent 30%),
    linear-gradient(145deg, #fffdf8 0%, #eef4ef 100%);
}

.app-visual::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(17, 28, 26, 0.08);
  border-radius: 6px;
  content: "";
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(286px, 72%);
  border: 10px solid #101817;
  border-radius: 38px;
  padding: 20px;
  background: #f8faf6;
  box-shadow:
    0 34px 70px rgba(17, 28, 26, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.phone-top,
.app-header,
.app-footer,
.plate-row,
.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(7, 91, 85, 0.11);
}

.app-header {
  margin-bottom: 18px;
}

.app-header p {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.add-chip {
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--teal);
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 820;
}

.plate-list {
  display: grid;
  gap: 12px;
}

.plate-row {
  gap: 14px;
  min-height: 58px;
  border: 1px solid rgba(17, 28, 26, 0.11);
  border-radius: 16px;
  padding: 0 14px;
  background: var(--paper-soft);
  box-shadow: 0 10px 26px rgba(17, 28, 26, 0.06);
}

.plate-row.active {
  border-color: rgba(7, 91, 85, 0.22);
  background: #edf7f4;
}

.plate-number {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  white-space: nowrap;
}

.plate-status {
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(201, 154, 66, 0.14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
}

.app-footer {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  background: var(--ink);
  color: var(--paper-soft);
}

.app-footer span {
  color: rgba(255, 253, 248, 0.7);
  font-size: 13px;
  font-weight: 760;
}

.app-footer strong {
  color: #8be3cc;
  font-size: 14px;
}

.app-card {
  position: absolute;
  z-index: 1;
  width: 172px;
  min-height: 84px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(17, 28, 26, 0.1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 22px 54px rgba(17, 28, 26, 0.12);
}

.app-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.app-card strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.12;
}

.app-card-left {
  top: 72px;
  left: 32px;
}

.app-card-right {
  right: 32px;
  bottom: 72px;
}

.feature-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 80px);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.48));
}

h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 820;
}

.feature-copy p:last-child,
.contact-band p {
  max-width: 590px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
  padding: 76px 0;
}

.contact-link {
  min-width: 290px;
  padding: 0 24px 0 10px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 16px 46px rgba(17, 28, 26, 0.08);
}

.mail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.site-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1220px) / 2));
  background: var(--teal);
  color: var(--paper-soft);
  font-size: 15px;
  font-weight: 800;
}

.site-footer span {
  font-size: 26px;
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    width: calc(100% - 36px);
    padding: 22px 0;
  }

  .hero {
    padding-top: 86px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 56px 0 42px;
  }

  .feature-row,
  .feature-row.reverse,
  .contact-band {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
  }

  .feature-row,
  .feature-row.reverse {
    padding: 58px 0;
  }

  .feature-row.reverse .feature-copy {
    order: 2;
  }

  .feature-row.reverse .feature-image {
    order: 1;
  }

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

  .contact-band {
    gap: 32px;
    padding: 58px 0;
  }

  .contact-link {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .header-mail {
    font-size: 13px;
  }

  .hero-copy,
  .feature-copy p:last-child,
  .contact-band p {
    font-size: 16px;
  }

  .hero-figure {
    border-top-width: 8px;
    border-bottom-width: 8px;
  }

  .hero-figure img {
    height: 330px;
  }

  .feature-image,
  .feature-image img {
    min-height: 280px;
  }

  .app-visual {
    min-height: 510px;
    padding: 24px 16px;
  }

  .app-visual::before {
    inset: 12px;
  }

  .phone-mockup {
    width: min(292px, 92%);
    border-width: 8px;
    border-radius: 32px;
    padding: 17px;
  }

  .app-card {
    display: none;
  }

  .app-header p {
    font-size: 21px;
  }

  .plate-number {
    font-size: 15px;
  }

  .feature-copy {
    padding: 30px 4px 0;
    background: transparent;
  }

  .button,
  .contact-link {
    width: 100%;
  }

  .contact-link {
    min-width: 0;
  }

  .site-footer {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
