*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(29, 214, 197, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fffd 0%, #ffffff 52%, #f5fbfa 100%);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

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

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

.driver-app-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.driver-app-card {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--surface);
  position: relative;
}

.driver-app-hero {
  width: 380px;
  margin: 28px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 59, 54, 0.12);
}

.driver-app-hero img {
  width: 100%;
  height: auto;
}

.driver-app-content {
  padding: 26px 25px 36px;
}

.driver-app-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.driver-app-title {
  margin: 0;
  color: var(--primary-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.driver-app-subtitle {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
}

.driver-app-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.driver-app-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.driver-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 243px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: var(--surface);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    filter var(--dur-fast) var(--ease-out);
}

.driver-app-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(19, 181, 167, 0.22);
  filter: brightness(1.01);
}

.driver-app-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.driver-app-footer {
  border-top: 2px solid var(--line-soft);
  background: var(--surface-faint);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.driver-app-footer-text {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .driver-app-page {
    padding: 40px 20px;
  }

  .driver-app-card {
    min-height: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(15, 59, 54, 0.12);
  }
}

@media (max-width: 429px) {
  .driver-app-hero {
    width: calc(100% - 40px);
    margin-top: 20px;
  }

  .driver-app-content {
    padding: 24px 20px 34px;
  }

  .driver-app-title {
    font-size: 24px;
  }

  .driver-app-subtitle {
    font-size: 18px;
  }

  .driver-app-button {
    width: 100%;
    min-width: 0;
  }

  .driver-app-footer {
    padding: 24px 20px 28px;
  }
}
