@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --asphalt:    #14171A;
  --asphalt2:   #1B1F23;
  --panel:      #20252A;
  --line:       #34393F;
  --highway:    #0F6B3C;
  --highway-lt: #1C8A52;
  --signal:     #F2B33D;
  --white:      #F4F6F2;
  --steel:      #8C97A0;
  --brake:      #D6453A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--asphalt);
  background-image: radial-gradient(ellipse 900px 500px at 50% -10%, rgba(15,107,60,0.16), transparent 70%);
  color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; position: relative; }

.lane-divider {
  height: 0;
  border-top: 3px dashed var(--signal);
  opacity: 0.55;
  margin: 0;
}

nav.topnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 600px) {
  nav.topnav { justify-content: center; text-align: center; }
  .navlinks { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand span {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 19px;
  letter-spacing: 0.04em; color: var(--white);
}
.brand .sub { color: var(--highway-lt); }
.navlinks { display: flex; align-items: center; gap: 26px; }
.navlinks a { color: var(--steel); text-decoration: none; font-size: 14px; font-weight: 500; }
.navlinks a:hover { color: var(--white); }
.navlinks a.cta {
  background: var(--signal); color: var(--asphalt); padding: 9px 18px;
  border-radius: 3px; font-weight: 700; font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em; text-transform: uppercase; font-size: 13px;
}
.navlinks a.cta:hover { background: #ffc861; color: var(--asphalt); }

.hero-wrap { padding: 56px 0 28px; perspective: 1400px; }
.sign-frame { position: relative; }
.sign-frame::before {
  /* the "post/backing" the sign is mounted on — offset behind and below,
     giving the sign actual thickness instead of looking pasted flat */
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: -10px; bottom: -10px;
  background: #0A3F24;
  border-radius: 6px;
  z-index: 0;
}
.sign {
  background: linear-gradient(165deg, #14834C 0%, var(--highway) 45%, #0B4F2C 100%);
  border: 5px solid var(--white);
  border-radius: 6px;
  padding: 44px 46px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.18) inset,
    0 -3px 12px rgba(0,0,0,0.35) inset,
    0 24px 26px -16px rgba(0,0,0,0.55),
    0 48px 60px -30px rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
  .sign { padding: 32px 24px; }
  .sign h1 { font-size: 32px; }
}
.sign::before, .sign::after {
  content: ''; position: absolute; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4A5057, #14171A 70%);
  border: 2px solid var(--white); top: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.sign::before { left: 14px; }
.sign::after { right: 14px; }
.sign .exit-tag {
  display: inline-block; background: var(--white); color: var(--highway);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: 2px; margin-bottom: 18px;
}
.sign h1 {
  font-size: 44px; line-height: 1.12; color: var(--white); font-weight: 600;
}
.sign h1 .accent { color: var(--signal); }
.sign p.dek {
  font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: #DCE7DF; font-size: 16.5px; max-width: 520px; margin-top: 16px;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px;
  border-radius: 3px; font-weight: 700; text-decoration: none; font-size: 14px;
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em;
  position: relative; top: 0; transition: top 0.08s ease, box-shadow 0.08s ease;
}
.btn-primary {
  background: linear-gradient(165deg, #ffc861, var(--signal));
  color: var(--asphalt);
  box-shadow: 0 4px 0 #B4791C, 0 6px 10px rgba(0,0,0,0.35);
}
.btn-primary:hover { background: linear-gradient(165deg, #ffd47c, #ffc861); }
.btn-primary:active { top: 4px; box-shadow: 0 0 0 #B4791C, 0 2px 4px rgba(0,0,0,0.3); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white); background: rgba(255,255,255,0.04);
  box-shadow: 0 4px 0 rgba(244,246,242,0.25);
}
.btn-outline:hover { background: rgba(244,246,242,0.12); }
.btn-outline:active { top: 4px; box-shadow: 0 0 0 rgba(244,246,242,0.25); }

.markers { padding: 50px 0 8px; }
.markers .eyebrow {
  color: var(--steel); font-family: 'Oswald', sans-serif; font-size: 12px;
  letter-spacing: 0.18em; margin-bottom: 18px;
}
.marker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1000px; }
@media (max-width: 760px) { .marker-grid { grid-template-columns: 1fr; } }
.marker {
  background: linear-gradient(165deg, #262C32, var(--panel));
  border: 1px solid var(--line); border-radius: 6px;
  padding: 22px; position: relative; overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 10px 20px -10px rgba(0,0,0,0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}
.marker:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 20px 30px -12px rgba(0,0,0,0.6);
}
.marker .mm {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 12px;
  color: var(--asphalt); background: linear-gradient(165deg, #ffd47c, var(--signal));
  display: inline-block; box-shadow: 0 2px 0 #B4791C;
  padding: 3px 9px; border-radius: 2px; letter-spacing: 0.06em; margin-bottom: 14px;
}
.marker h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.marker p { font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: var(--steel); font-size: 13.5px; margin: 0; line-height: 1.6; }

.toll-section { padding: 30px 0 70px; text-align: center; }
.toll-section .eyebrow {
  color: var(--steel); font-family: 'Oswald', sans-serif; font-size: 12px;
  letter-spacing: 0.18em; margin-bottom: 10px;
}
.toll-section h2 { font-size: 26px; margin-bottom: 8px; }
.toll-section .sub { font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: var(--steel); font-size: 14.5px; margin-bottom: 28px; }
.toll-ticket {
  display: inline-block; background: linear-gradient(165deg, #262C32, var(--panel));
  border: 2px dashed var(--steel);
  border-radius: 8px; padding: 36px 56px; position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 20px 40px -16px rgba(0,0,0,0.55);
}
.toll-ticket .rate { font-size: 46px; font-weight: 700; color: var(--signal); }
.toll-ticket .per { font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: var(--steel); font-size: 14px; }
.toll-ticket ul {
  list-style: none; padding: 0; margin: 22px 0; text-align: left;
  font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: #C9D2CB; font-size: 13.5px;
}
.toll-ticket li { padding: 5px 0 5px 24px; position: relative; }
.toll-ticket li::before {
  content: '▸'; position: absolute; left: 0; color: var(--highway-lt);
}

.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 44px 0 24px; perspective: 1000px; }
@media (max-width: 700px) { .dl-grid { grid-template-columns: 1fr; } }
.dl-card {
  background: linear-gradient(165deg, #262C32, var(--panel));
  border: 1px solid var(--line); border-radius: 8px;
  padding: 30px; text-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 24px -12px rgba(0,0,0,0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}
.dl-card:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 22px 32px -14px rgba(0,0,0,0.6);
}
.dl-card .icon { font-size: 36px; margin-bottom: 6px; }
.dl-card .icon-mark { margin-bottom: 8px; opacity: 0.92; }
.dl-card h2 { font-size: 18px; margin: 8px 0 2px; }
.dl-card p.platform { font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0;
  color: var(--steel); font-size: 13px; }
.dl-card .btn { margin-top: 16px; width: 100%; justify-content: center; }
.note-panel {
  background: var(--asphalt2); border-left: 4px solid var(--signal); border-radius: 4px;
  padding: 18px 22px; color: #C9D2CB; font-size: 13.5px; line-height: 1.8; margin-top: 8px;
}
.note-panel strong { color: var(--white); }
.note-panel a { color: var(--signal); }

footer {
  border-top: 1px solid var(--line); padding: 24px 0 40px; margin-top: 40px;
  color: var(--steel); font-size: 12.5px; text-align: center;
  font-family: 'Oswald', sans-serif; letter-spacing: 0.06em;
}
