@font-face {
  font-family: "Astonpoliz";
  src: url("./fonts/Astonpoliz.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #071d36;
  --navy-soft: #0e2b4d;
  --teal: #168c88;
  --teal-bright: #22b8a8;
  --teal-soft: #e7f5f3;
  --ink: #071d36;
  --muted: #5a6773;
  --line: #dfe8e6;
  --paper: #ffffff;
  --wash: #f7faf9;
  --amber: #8a6d1f;
  --amber-soft: #fbf3e3;
  --danger: #b4302b;
  --radius: 8px;
  --shadow: 0 18px 44px -32px rgba(7, 29, 54, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Manrope, Inter, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--teal-bright);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 29, 54, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -22px rgba(255, 255, 255, 0.9);
}

.brand-symbol img {
  width: 24px;
  height: 24px;
}

.brand-mark {
  font-family: "Astonpoliz", Georgia, serif;
  font-size: 30px;
  letter-spacing: 0;
}

.brand-g {
  color: var(--teal-bright);
}

.brand-rest {
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c3d0dc;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  background: var(--teal-bright);
  color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7fe0d4;
}

.button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.button-full {
  width: 100%;
}

.hero {
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(90deg, rgba(7, 29, 54, 0.95) 0%, rgba(7, 29, 54, 0.76) 42%, rgba(7, 29, 54, 0.18) 100%),
    url("./images/ganoto-hero-handoff.png") center / cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: end;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 184, 168, 0.16);
  color: #7fe0d4;
  border: 1px solid rgba(127, 224, 212, 0.28);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.hero-copy {
  width: min(680px, 100%);
}

.hero h1 {
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: #d4dee7;
  font-size: 19px;
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.pilot-focus {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pilot-focus-item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px;
}

.pilot-focus-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.pilot-focus-item span {
  color: #c7d5df;
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 76px 0;
}

.section-white {
  background: #ffffff;
}

.section-navy {
  background: var(--navy);
  color: #ffffff;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-navy .section-kicker {
  color: #7fe0d4;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-navy .section-head p {
  color: #a9b8c6;
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.pilot-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.pilot-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.pilot-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pilot-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.pilot-list span {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.owner-reassurance {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.owner-reassurance h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.owner-reassurance ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.owner-reassurance li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.owner-reassurance li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.lead-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #eef3f2;
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 18px;
}

.tab {
  border: 0;
  border-radius: 6px;
  min-height: 44px;
  background: transparent;
  color: #48586a;
  font-weight: 800;
}

.tab[aria-selected="true"] {
  background: var(--teal-bright);
  color: var(--navy);
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

.owner-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.owner-progress span {
  min-height: 34px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: #0e6e68;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.owner-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px;
  margin-bottom: 14px;
}

.owner-step h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.owner-step > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.auth-option {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  color: var(--ink);
  font-weight: 800;
}

.auth-option.active,
.auth-option[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.field-with-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.field-with-action .button {
  min-height: 46px;
}

.vehicle-summary {
  margin: 4px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.vehicle-summary strong {
  color: var(--ink);
}

.chip-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.chip-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-grid label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--wash);
  color: #48586a;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.chip-grid input {
  width: 14px;
  height: 14px;
  accent-color: var(--teal-bright);
}

.estimate-panel {
  margin-top: 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  padding: 16px;
}

.estimate-panel h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 16px;
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.estimate-item {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  padding: 10px;
}

.estimate-item strong {
  display: block;
  color: var(--teal-bright);
  font-size: 20px;
}

.estimate-item span {
  display: block;
  color: #a9b8c6;
  font-size: 12px;
  line-height: 1.35;
}

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

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #5a6773;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-help {
  margin: -2px 0 0;
  color: #6d7984;
  font-size: 12px;
  line-height: 1.35;
}

.field-help.success {
  color: #0e6e68;
  font-weight: 800;
}

.field-help.error {
  color: var(--danger);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 86px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(34, 184, 168, 0.18);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent-optional {
  margin-top: -6px;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--teal-bright);
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--teal);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.error {
  color: var(--danger);
}

.form-status a {
  color: var(--teal);
  font-weight: 800;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 2px rgba(7, 29, 54, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}

.vehicle-tools {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.vehicle-filter {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #48586a;
  border-radius: var(--radius);
  min-height: 40px;
  padding: 9px 14px;
  font-weight: 800;
}

.vehicle-filter.active {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  color: var(--navy);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vehicle-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.vehicle-visual {
  min-height: 154px;
  background:
    linear-gradient(135deg, rgba(7, 29, 54, 0.9), rgba(22, 140, 136, 0.7)),
    url("./images/ganoto-hero-handoff.png") center / cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: end;
  padding: 14px;
}

.vehicle-visual span {
  display: inline-flex;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 800;
}

.vehicle-body {
  padding: 16px;
}

.vehicle-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.vehicle-card h3 {
  margin: 0;
  font-size: 17px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 8px;
  background: var(--teal-soft);
  color: #0e6e68;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.badge-warning {
  background: var(--amber-soft);
  color: #735316;
}

.vehicle-meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.vehicle-foot {
  border-top: 1px solid #eef2f1;
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.owner-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.revenue-box {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
}

.revenue-number {
  margin: 8px 0;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.revenue-number small {
  color: #8fa0b0;
  font-size: 18px;
}

.revenue-box p,
.revenue-box li {
  color: #a9b8c6;
}

.revenue-box ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.timeline-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.timeline-step span {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.trust-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trust-step {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--teal-bright);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 10px;
}

.trust-step h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
}

.trust-step p {
  margin: 0;
  color: #a9b8c6;
  font-size: 13px;
  line-height: 1.45;
}

.timeline-step h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.notice {
  background: var(--amber-soft);
  border: 1px solid #f1d39a;
  color: #735316;
  border-radius: var(--radius);
  padding: 16px;
  line-height: 1.55;
}

.footer {
  background: var(--navy);
  color: #8fa0b0;
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer h2,
.footer h3 {
  color: #ffffff;
}

.footer p {
  margin: 14px 0 0;
  color: #8fa0b0;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: #8fa0b0;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.legal-main {
  background: var(--wash);
}

.legal-hero {
  background: var(--navy);
  color: #ffffff;
  padding: 58px 0;
}

.legal-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 70px;
  line-height: 1.65;
}

.legal-content h2 {
  margin: 30px 0 8px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #48586a;
}

.legal-content a {
  color: #0e6e68;
  font-weight: 800;
}

.legal-box {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
}

.auth-main {
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(120deg, rgba(7, 29, 54, 0.96), rgba(7, 29, 54, 0.84) 48%, rgba(22, 140, 136, 0.42)),
    url("./images/ganoto-hero-handoff.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 64px 0;
}

.auth-layout {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: center;
}

.auth-copy {
  color: #ffffff;
}

.auth-copy h1 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.auth-copy p {
  margin: 0;
  color: #d4dee7;
  font-size: 18px;
  line-height: 1.6;
}

.auth-proof {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.auth-proof div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
}

.auth-proof strong {
  display: block;
  color: #ffffff;
  margin-bottom: 3px;
}

.auth-proof span {
  color: #c7d5df;
  font-size: 13px;
  line-height: 1.45;
}

.auth-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 70px -34px rgba(0, 0, 0, 0.55);
}

.auth-card-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-card-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.social-login {
  display: grid;
  gap: 10px;
}

.social-button {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8e1df;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-align: left;
  font-weight: 800;
}

.social-button svg {
  width: 22px;
  height: 22px;
}

.social-button.active,
.social-button[aria-pressed="true"] {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(34, 184, 168, 0.16);
}

.auth-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
  color: #6d7984;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.auth-note {
  margin: 12px 0 0;
  color: #6d7984;
  font-size: 12px;
  line-height: 1.45;
}

.account-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.account-card strong {
  display: block;
  margin: 3px 0;
}

.account-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.account-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .signup-grid,
  .owner-band,
  .auth-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .vehicle-grid,
  .trust-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .legal-content {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .header-actions .button-primary {
    max-width: 142px;
    min-height: 40px;
    padding: 9px 11px;
    white-space: normal;
    text-align: center;
    font-size: 13px;
    line-height: 1.15;
  }

  .hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(7, 29, 54, 0.96) 0%, rgba(7, 29, 54, 0.84) 48%, rgba(7, 29, 54, 0.46) 100%),
      url("./images/ganoto-hero-handoff.png") 62% center / cover no-repeat;
  }

  .hero-inner {
    padding: 54px 0 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .proof-pill {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .form-grid,
  .cards,
  .vehicle-grid,
  .pilot-focus,
  .owner-progress,
  .auth-options,
  .estimate-grid,
  .trust-steps {
    grid-template-columns: 1fr;
  }

  .field-with-action {
    grid-template-columns: 1fr;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .account-card {
    grid-template-columns: 1fr;
  }

  .auth-main {
    align-items: start;
    padding: 34px 0 54px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}
