@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #0b1820;
  --navy2: #10242e;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --orange: #f25b2a;
  --orange2: #ff7445;
  --lime: #b9d93b;
  --ink: #15242b;
  --muted: #637078;
  --line: #d9d8d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
  background: var(--navy);
  color: white;
  border-bottom: 1px solid #ffffff18;
  position: relative;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 1.6px;
  font-size: 20px;
}

.brand b {
  color: var(--orange);
}

.brand-mark {
  width: 31px;
  height: 31px;
  border: 2px solid var(--orange);
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  transform: skew(-8deg);
}

.brand-mark i {
  display: block;
  width: 3px;
  background: var(--orange);
  transform: skew(8deg);
}

.brand-mark i:nth-child(1) {
  height: 10px;
}

.brand-mark i:nth-child(2) {
  height: 18px;
}

.brand-mark i:nth-child(3) {
  height: 13px;
}

.site-header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
  color: #dce2e4;
}

.site-header nav a:hover,
.login-link:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 20px;
  background: var(--orange);
  color: white;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 1.2px;
  border: 0;
  cursor: pointer;
  transition: 0.2s;
}

.button:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}

.button span {
  font-size: 19px;
}

.button-small {
  padding: 11px 17px;
  gap: 18px;
  font-size: 13px;
}

.button-primary {
  box-shadow: 0 8px 25px #f25b2a30;
}

.button-light {
  background: white;
  color: var(--navy);
}

.button-light:hover {
  background: var(--cream);
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid #aeb5b7;
  box-shadow: none;
}

.button-outline:hover {
  background: var(--navy);
  color: white;
}

.hero {
  min-height: 720px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, #1d3e4c80, transparent 38%),
    linear-gradient(110deg, transparent 65%, #ffffff05 65% 66%, transparent 66%);
}

.hero-grid {
  max-width: 1400px;
  margin: auto;
  min-height: 630px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  padding: 50px 5.5vw 35px;
  position: relative;
}

.eyebrow,
.kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.3px;
  color: var(--orange);
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7dfe2;
}

.eyebrow span {
  width: 27px;
  height: 3px;
  background: var(--orange);
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(58px, 6.2vw, 92px);
  letter-spacing: -2px;
  margin: 25px 0;
}

.hero h1 em,
.pricing-hero h1 em,
.auth-brand-panel h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: #b9c5ca;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
  padding: 7px 0;
}

.text-link span {
  margin-left: 10px;
}

.trust-line {
  display: flex;
  gap: 22px;
  font-size: 11px;
  color: #8fa1aa;
  margin-top: 28px;
}

.hero-visual {
  height: 530px;
  position: relative;
}

.road-lines {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid #ffffff10;
  transform: rotate(24deg);
  right: -100px;
  top: -80px;
}

.road-lines:before,
.road-lines:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff08;
  inset: 60px;
}

.road-lines:after {
  inset: 130px;
}

.dashboard {
  position: absolute;
  width: 620px;
  height: 400px;
  right: 2%;
  top: 55px;
  background: #f7f8f6;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 30px 80px #0008;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  overflow: hidden;
}

.dash-top {
  height: 72px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid #e1e4e3;
}

.dash-top div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-top small,
.metric-row small,
.mileage-card > small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #7d898d;
}

.dash-top strong {
  font-family: "Barlow Condensed";
  font-size: 20px;
}

.live-dot {
  font-size: 10px;
  background: #eaf3d2;
  color: #607412;
  padding: 6px 9px;
  border-radius: 20px;
}

.live-dot:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #84a20d;
  margin-right: 5px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dde1e0;
  border-bottom: 1px solid #dde1e0;
}

.metric-row > div {
  background: #f8f9f7;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
}

.metric-row small {
  grid-column: 1/3;
}

.metric-row b {
  font-family: "Barlow Condensed";
  font-size: 26px;
}

.metric-row span {
  font-size: 8px;
  color: #838e92;
  align-self: center;
}

.metric-row .up {
  color: #769009;
}

.dash-body {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 12px;
  padding: 15px;
}

.truck-card,
.mileage-card {
  background: white;
  border: 1px solid #e5e8e7;
  border-radius: 5px;
}

.truck-card-head {
  display: flex;
  justify-content: space-between;
  padding: 13px 14px;
  border-bottom: 1px solid #edf0ef;
  font-size: 11px;
}

.truck-card-head span {
  color: var(--orange);
  font-size: 9px;
}

.truck-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid #f0f1ef;
}

.status-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #eef5d7;
  display: grid;
  place-items: center;
  color: #79921d;
}

.status-icon.s2 {
  background: #fff0ea;
  color: var(--orange);
}

.truck-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.truck-row b {
  font-size: 9px;
}

.truck-row small {
  font-size: 8px;
  color: #869195;
  margin-top: 3px;
}

.truck-row em {
  font-style: normal;
  font-size: 7px;
  text-transform: uppercase;
  color: #627078;
}

.mileage-card {
  padding: 15px;
}

.mileage-card strong {
  display: block;
  font-family: "Barlow Condensed";
  font-size: 26px;
  margin: 5px 0 12px;
}

.bars {
  height: 85px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.bars i {
  display: block;
  flex: 1;
  background: #cad7db;
  border-radius: 2px 2px 0 0;
}

.bars i:nth-last-child(-n + 3) {
  background: var(--orange);
}

.mileage-card > span {
  display: block;
  font-size: 8px;
  color: #879195;
  margin-top: 8px;
}

.floating-card {
  position: absolute;
  background: white;
  color: var(--ink);
  box-shadow: 0 15px 40px #0005;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 4px;
}

.floating-card > span {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7b878b;
}

.floating-card b {
  font-size: 10px;
  margin-top: 3px;
}

.floating-card em {
  font-style: normal;
  font-size: 8px;
  color: #849095;
  margin-left: 15px;
}

.fuel-float {
  left: 2%;
  bottom: 32px;
}

.fuel-float > .icon {
  width: 32px;
  height: 32px;
  background: #fff0e9;
  color: var(--orange);
  display: grid;
  place-items: center;
}

.service-float {
  right: -1%;
  bottom: 72px;
}

.check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9f3ce;
  color: #799111;
  display: grid !important;
  place-items: center !important;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 5.5vw;
  right: 5.5vw;
  height: 55px;
  border-top: 1px solid #ffffff18;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #71848d;
  font: 700 9px "Barlow Condensed";
  letter-spacing: 2px;
}

.hero-bottom i {
  height: 1px;
  width: 90px;
  background: #71848d;
}

.strip {
  max-width: 1400px;
  margin: -1px auto 0;
}

.proof {
  background: var(--orange);
  height: 120px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.proof > p {
  font: 800 13px "Barlow Condensed";
  letter-spacing: 2px;
}

.proof-items {
  display: flex;
  gap: 42px;
}

.proof-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 13px "Barlow Condensed";
  letter-spacing: 0.5px;
}

.proof-items .icon {
  font-size: 17px;
  color: #ffbea7;
}

.section {
  padding: 110px max(5.5vw, calc((100vw - 1400px) / 2 + 5.5vw));
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.download h2 {
  font-size: clamp(45px, 5vw, 70px);
  letter-spacing: -1px;
  margin-top: 15px;
}

.section-heading > p,
.download > div:last-child > p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 500px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.feature-card {
  min-height: 435px;
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.feature-card > .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #e8eceb;
  color: var(--navy);
  margin: 28px 0 24px;
}

.feature-number {
  position: absolute;
  right: 25px;
  top: 22px;
  color: #a6afb1;
  font: 700 11px "Barlow Condensed";
  letter-spacing: 1.5px;
}

.feature-card h3 {
  font-size: 29px;
}

.feature-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.mini-receipt {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  background: var(--navy);
  color: white;
  padding: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
}

.mini-receipt span,
.mini-receipt small {
  font-size: 8px;
  color: #93a3a9;
}

.mini-receipt b {
  font: 700 23px "Barlow Condensed";
}

.mini-receipt small {
  margin-top: 8px;
}

.mini-receipt i {
  grid-column: 1/3;
  height: 4px;
  background: #33444b;
  margin-top: 18px;
}

.mini-receipt em {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--orange);
}

.service-list {
  position: absolute;
  bottom: 20px;
  left: 32px;
  right: 32px;
}

.service-list > span {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #e1e2dd;
  padding: 13px 0;
}

.service-list i {
  font-style: normal;
  width: 26px;
  height: 26px;
  background: #eaf2d7;
  color: #718817;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.service-list i.urgent {
  background: #fff0e9;
  color: var(--orange);
}

.service-list b {
  font-size: 11px;
  display: flex;
  flex-direction: column;
}

.service-list small {
  font-weight: 400;
  color: #8a9295;
  margin-top: 3px;
}

.driver-chips {
  position: absolute;
  bottom: 38px;
  display: flex;
}

.driver-chips span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid var(--paper);
  background: var(--navy2);
  color: white;
  display: grid;
  place-items: center;
  margin-left: -8px;
  font: 700 12px "Barlow Condensed";
}

.driver-chips span:nth-child(2) {
  background: #49616b;
}

.driver-chips span:nth-child(3) {
  background: var(--orange);
}

.driver-chips span:last-child {
  background: #dfe5e3;
  color: #53636a;
}

.workflow {
  background: var(--cream);
}

.workflow-panel {
  max-width: 1200px;
  margin: auto;
  min-height: 590px;
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.workflow-panel:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid #ffffff0d;
  border-radius: 50%;
  right: -100px;
  top: 80px;
}

.workflow-panel h2 {
  font-size: 58px;
  max-width: 550px;
  margin: 18px 0 25px;
}

.workflow-panel p {
  max-width: 560px;
  color: #aab8bd;
  line-height: 1.8;
  font-size: 14px;
}

.workflow-panel ul {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}

.workflow-panel li {
  border-top: 1px solid #ffffff18;
  padding: 15px 0;
  font: 600 13px "Barlow Condensed";
  letter-spacing: 0.4px;
}

.workflow-panel li span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid #63777f;
  border-radius: 50%;
  color: var(--orange);
  margin-right: 13px;
  font-size: 9px;
}

.phone {
  width: 260px;
  height: 520px;
  border: 7px solid #31444c;
  border-radius: 28px;
  background: #f7f6f1;
  position: absolute;
  right: 12%;
  bottom: -55px;
  z-index: 2;
  box-shadow: 0 25px 50px #0007;
}

.phone-top {
  width: 80px;
  height: 18px;
  background: #31444c;
  border-radius: 0 0 12px 12px;
  margin: auto;
}

.phone-content {
  color: var(--ink);
  padding: 28px 20px;
}

.phone-content > small {
  font: 700 8px "Barlow Condensed";
  letter-spacing: 1.6px;
  color: var(--orange);
}

.phone-content h4 {
  font-size: 24px;
  margin: 8px 0 20px;
}

.phone-content label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font: 700 8px "Barlow Condensed";
  letter-spacing: 1px;
  color: #7e898d;
  margin: 12px 0;
}

.phone-content label span {
  border: 1px solid #dadddb;
  padding: 11px;
  color: var(--ink);
  font: 500 10px Inter;
  letter-spacing: 0;
}

.phone-content button {
  width: 100%;
  border: 0;
  background: var(--orange);
  color: white;
  padding: 12px;
  font: 700 10px "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: 1px;
}

.saved {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #e8f0d5;
  padding: 10px;
  margin-top: 15px;
}

.saved > b {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #849d25;
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.saved span {
  display: flex;
  flex-direction: column;
}

.saved strong {
  font-size: 9px;
}

.saved small {
  font-size: 7px;
  color: #7b8860;
  margin-top: 3px;
}

.download {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.app-badge {
  background: var(--navy);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  min-width: 160px;
}

.app-badge > span:first-child {
  font-size: 22px;
}

.app-badge > span:last-child {
  display: flex;
  flex-direction: column;
}

.app-badge small {
  font-size: 7px;
}

.app-badge b {
  font-size: 15px;
}

.cta {
  padding: 30px 5.5vw 0;
  background: var(--paper);
}

.cta-inner {
  max-width: 1400px;
  margin: auto;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.cta-inner:before,
.cta-inner:after {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid #ffffff20;
  transform: rotate(45deg);
  top: -100px;
}

.cta-inner:before {
  left: -200px;
}

.cta-inner:after {
  right: -200px;
}

.cta .kicker {
  color: #ffe5db;
}

.cta h2 {
  font-size: 64px;
  margin: 15px 0;
}

.cta p {
  color: #ffe0d4;
}

.cta-inner > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.text-link.light {
  border-color: white;
}

.footer-main {
  background: var(--navy);
  color: white;
  padding: 75px 5.5vw;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-main > div:first-child p {
  color: #8fa0a8;
  font-size: 12px;
  max-width: 220px;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-main > div > b {
  font: 700 10px "Barlow Condensed";
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 5px;
}

.footer-main > div > a:not(.brand) {
  font-size: 11px;
  color: #a8b5ba;
}

.footer-main > div > a:hover {
  color: white;
}

.footer-bottom {
  background: #071117;
  color: #60737b;
  border-top: 1px solid #ffffff0d;
  padding: 20px 5.5vw;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1px;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--paper);
}

.auth-brand-panel {
  background: var(--navy);
  color: white;
  padding: 55px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-brand-panel:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid #ffffff0d;
  transform: rotate(35deg);
  right: -240px;
  bottom: -100px;
}

.auth-brand-panel h1 {
  font-size: 70px;
  margin: 20px 0;
}

.auth-brand-panel p {
  color: #9cabb1;
  line-height: 1.8;
  max-width: 460px;
}

.auth-brand-panel > small {
  font: 700 9px "Barlow Condensed";
  color: #61767f;
  letter-spacing: 2px;
}

.auth-brand-panel ul {
  padding: 0;
  list-style: none;
  color: #b8c4c8;
  font-size: 12px;
  line-height: 2.2;
}

.auth-form-panel {
  padding: 42px 10vw;
  display: flex;
  flex-direction: column;
}

.back-link {
  font-size: 11px;
  color: #637178;
}

.auth-form {
  width: 100%;
  max-width: 470px;
  margin: auto;
}

.auth-form h2 {
  font-size: 52px;
  margin: 10px 0;
}

.auth-form > p:not(.auth-switch):not(.terms) {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 25px;
}

.role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e9e9e5;
  padding: 4px;
  margin-bottom: 22px;
}

.role-toggle button {
  border: 0;
  background: transparent;
  padding: 11px;
  font: 700 11px "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  color: #738087;
}

.role-toggle button.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 2px 8px #00000010;
}

.auth-form label {
  display: block;
  font: 700 18px "Barlow Condensed";
  letter-spacing: 1.5px;
  margin: 13px 0;
  color: #3c4a50;
  text-transform: uppercase;
}

.auth-form label > a {
  float: right;
  color: var(--orange);
}

.auth-form input,
.auth-form select {
  display: block;
  width: 100%;
  border: 1px solid #cfd3d1;
  background: white;
  padding: 13px;
  margin-top: 7px;
  outline: none;
  color: var(--ink);
  text-transform: none;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #f25b2a15;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit {
  width: 100%;
  margin-top: 10px;
}

.form-message {
  padding: 12px;
  background: #eaf2d7;
  color: #5b7011;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 14px;
}

.auth-switch {
  text-align: center;
  font-size: 11px !important;
  color: #718087;
  margin-top: 20px;
}

.auth-switch a {
  color: var(--orange);
  font-weight: 700;
}

.terms {
  font-size: 8px !important;
  text-align: center;
  color: #929b9e !important;
}

.signup-page .auth-form-panel {
  padding-top: 28px;
  padding-bottom: 28px;
}

.signup-page .auth-form h2 {
  font-size: 45px;
}

.signup-page .auth-form label {
  margin: 9px 0;
}

.pricing-page {
  background: var(--paper);
}

.pricing-hero {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 100px 20px 150px;
}

.pricing-hero h1 {
  font-size: 75px;
  margin: 18px 0;
}

.pricing-hero p {
  max-width: 650px;
  margin: auto;
  color: #a9b6bb;
  font-size: 14px;
  line-height: 1.8;
}

.pricing-grid {
  max-width: 1200px;
  margin: -90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 20px 100px;
}

.price-card {
  background: white;
  border: 1px solid #d9dcda;
  padding: 34px;
  position: relative;
}

.price-card.popular {
  border: 2px solid var(--orange);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px #1c2c3412;
}

.popular-label {
  position: absolute;
  top: -25px;
  left: -2px;
  right: -2px;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 7px;
  font: 700 10px "Barlow Condensed";
  letter-spacing: 1.5px;
}

.plan-name {
  font: 800 14px "Barlow Condensed";
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  min-height: 42px;
}

.price {
  display: flex;
  align-items: flex-end;
  margin: 25px 0;
}

.price sup {
  font: 700 20px "Barlow Condensed";
  align-self: flex-start;
  margin-top: 8px;
}

.price b {
  font: 800 55px "Barlow Condensed";
  line-height: 0.85;
}

.price span {
  font-size: 10px;
  color: #7a8589;
  margin-left: 7px;
}

.price-card > .button {
  width: 100%;
}

.price-card ul {
  list-style: none;
  padding: 20px 0 0;
  border-top: 1px solid #e5e6e2;
  margin-top: 25px;
}

.price-card li {
  font-size: 11px;
  padding: 7px 0;
  color: #4f5d63;
}

.price-card li span {
  color: #88a416;
  margin-right: 9px;
}

.pricing-note {
  max-width: 1200px;
  margin: auto;
  background: var(--cream);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.pricing-note h2,
.faq h2 {
  font-size: 43px;
  margin-top: 12px;
}

.pricing-note p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.faq article {
  padding: 28px 40px 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.faq article:nth-child(even) {
  padding-left: 40px;
}

.faq h3 {
  font-size: 19px;
}

.faq p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

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

  .hero {
    min-height: 1050px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 25px;
  }

  .dashboard {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(0.9);
    transform-origin: top center;
  }

  .proof {
    height: auto;
    min-height: 140px;
    gap: 25px;
    flex-direction: column;
    justify-content: center;
  }

  .proof-items {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .feature-card:last-child {
    grid-column: 1/3;
  }

  .workflow-panel {
    padding: 60px 45px;
  }

  .phone {
    right: 6%;
  }

  .auth-page {
    grid-template-columns: 40% 60%;
  }

  .auth-brand-panel h1 {
    font-size: 55px;
  }

  .pricing-grid {
    gap: 8px;
  }

  .price-card {
    padding: 26px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .login-link {
    display: none;
  }

  .button-small {
    font-size: 11px;
  }

  .hero {
    min-height: 870px;
  }

  .hero-grid {
    padding: 55px 20px 20px;
    min-height: auto;
  }

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

  .hero-lede {
    font-size: 14px;
  }

  .trust-line {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    height: 360px;
  }

  .dashboard {
    width: 580px;
    transform: translateX(-50%) scale(0.57);
    transform-origin: top center;
  }

  .fuel-float {
    left: 0;
    bottom: 5px;
    transform: scale(0.85);
  }

  .service-float {
    display: none;
  }

  .hero-bottom {
    display: none;
  }

  .proof {
    padding: 35px 20px;
  }

  .proof-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .section {
    padding: 75px 20px;
  }

  .split,
  .download {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading h2,
  .download h2 {
    font-size: 46px;
  }

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

  .feature-card:last-child {
    grid-column: auto;
  }

  .workflow {
    padding-left: 0;
    padding-right: 0;
  }

  .workflow-panel {
    grid-template-columns: 1fr;
    padding: 55px 25px 430px;
  }

  .workflow-panel h2 {
    font-size: 45px;
  }

  .phone {
    right: 50%;
    transform: translateX(50%);
    bottom: -80px;
  }

  .download .app-badges {
    flex-direction: column;
  }

  .cta {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-inner {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 48px;
  }

  .cta-inner > div {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 55px 25px;
  }

  .footer-main > div:first-child {
    grid-column: 1/3;
  }

  .footer-bottom {
    padding: 18px 25px;
    gap: 15px;
  }

  .footer-bottom span:last-child {
    display: none;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    min-height: 310px;
    padding: 35px 25px;
  }

  .auth-brand-panel h1 {
    font-size: 47px;
  }

  .auth-brand-panel p {
    font-size: 12px;
  }

  .auth-brand-panel > small {
    display: none;
  }

  .auth-form-panel {
    padding: 35px 24px;
    min-height: 650px;
  }

  .auth-form {
    margin-top: 55px;
  }

  .signup-page .auth-brand-panel {
    min-height: 400px;
  }

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

  .pricing-hero {
    padding: 75px 20px 125px;
  }

  .pricing-hero h1 {
    font-size: 55px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .price-card.popular {
    transform: none;
  }

  .pricing-note {
    margin: 0 20px;
    padding: 40px 25px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .faq article,
  .faq article:nth-child(even) {
    padding: 25px 0;
    border-right: 0 !important;
  }
}

/* ==================================================
   Private Alpha and Preview Additions
   ================================================== */

.alpha-banner {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  flex-wrap: wrap;
  border: 1px solid #f25b2a55;
  background: #f25b2a0d;
  color: var(--ink);
}

.alpha-banner strong,
.alpha-banner span {
  display: block;
}

.alpha-banner strong {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.alpha-banner span {
  color: var(--muted);
  font-size: 14px;
}

.package-note {
  max-width: 1180px;
  margin: 0 auto 46px;
  padding: 0 5.5vw;
  text-align: center;
}

.package-note p {
  margin: 0;
  padding: 22px 28px;
  background: var(--navy);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.alpha-access-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alpha-access-card {
  width: min(520px, 100%);
}

.alpha-access-card h2 {
  margin: 12px 0 18px;
}

.alpha-access-card p {
  color: var(--muted);
  line-height: 1.7;
}

.alpha-access-card .alpha-lede {
  color: var(--ink);
  font-weight: 700;
}

.preview-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: auto !important;
  margin: 0;
}

.checkbox-label span {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 720px) {
  .alpha-banner {
    text-align: center;
  }

  .package-note {
    padding: 0 22px;
  }
}
