/* TrailerRTO v3 design system · 2026-07-03
   Barlow Condensed (display) + Inter (text) · navy / paper / safety orange */

:root {
  --ink: #131a21;
  --navy: #0b2239;
  --navy-2: #143252;
  --steel: #45586c;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #e4dfd4;
  --orange: #f26b1d;
  --orange-d: #d4570e;
  --sky: #dbe8f4;
  --maxw: 1120px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --text: "Inter", -apple-system, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--text);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, .disp {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  color: var(--navy);
  letter-spacing: .2px;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.5vw, 76px); text-transform: uppercase; }
h2 { font-size: clamp(32px, 4vw, 46px); text-transform: uppercase; margin-bottom: 18px; }
h3 { font-size: 23px; margin-bottom: 6px; }
.kicker {
  font-family: var(--text); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange-d);
  margin-bottom: 14px; display: block;
}
.lead { font-size: 19px; color: var(--steel); max-width: 34em; }

/* hazard accent */
.hz {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--orange) 0 14px, var(--navy) 14px 28px);
}

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 27px; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo b { color: var(--orange); }
.logo .slash { width: 12px; height: 26px; background: var(--orange); transform: skewX(-18deg); border-radius: 2px; }
nav.main { display: flex; gap: 22px; margin-left: auto; }
nav.main a { font-size: 14.5px; font-weight: 600; color: var(--steel); text-decoration: none; }
nav.main a:hover { color: var(--navy); }
.top .cta { margin-left: 6px; }
@media (max-width: 900px) { nav.main { display: none; } .top .cta { margin-left: auto; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 19px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  background: var(--orange); color: #fff !important;
  padding: 14px 26px; border-radius: 10px;
  box-shadow: 0 4px 14px rgba(242,107,29,.35), inset 0 -3px 0 rgba(0,0,0,.18);
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(242,107,29,.42), inset 0 -3px 0 rgba(0,0,0,.18); }
.btn.ghost { background: transparent; color: var(--navy) !important; box-shadow: inset 0 0 0 2px var(--navy); }
.btn.big { font-size: 23px; padding: 17px 34px; }
.btn svg { width: 20px; height: 20px; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero h1 em { font-style: normal; color: var(--orange-d); }
.hero .lead { margin: 20px 0 28px; }
.hero .sub { font-size: 14px; color: var(--steel); margin-top: 14px; }
.hero .sub a { color: var(--navy); font-weight: 600; }
.ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding: 0; list-style: none; }
.ticks li { font-size: 14.5px; font-weight: 600; color: var(--steel); display: flex; align-items: center; gap: 8px; }
.ticks svg { width: 17px; height: 17px; flex: none; }

/* ---------- phone mockup ---------- */
.phone {
  width: min(300px, 84vw); margin: 0 auto;
  background: var(--navy); border-radius: 44px; padding: 12px;
  box-shadow: 0 24px 60px rgba(11,34,57,.35), inset 0 0 0 2px #1d3d60;
  transform: rotate(1.8deg);
}
.phone .screen {
  background: #f2f4f7; border-radius: 34px; padding: 14px 13px 14px;
  display: flex; flex-direction: column; min-height: 610px;
}
.phone .pill { width: 86px; height: 20px; background: var(--navy); border-radius: 0 0 12px 12px; margin: -14px auto 6px; flex: none; }
.phone .status { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: var(--steel); padding: 0 6px; margin-bottom: 10px; }
.phone .from { text-align: center; font-size: 12.5px; font-weight: 700; color: var(--navy); padding-bottom: 10px; border-bottom: 1px solid #e2e6eb; margin-bottom: 12px; }
.phone .from small { display: block; font-weight: 500; color: var(--steel); font-size: 10.5px; }
.phone .msgs { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.phone .inputbar {
  margin-top: 12px; display: flex; align-items: center; gap: 8px; flex: none;
  background: #fff; border: 1px solid #dde2e8; border-radius: 20px; padding: 9px 14px;
  font-size: 13px; color: #9aa6b4;
}
.phone .inputbar .up { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.msg { max-width: 84%; font-size: 13.5px; line-height: 1.45; padding: 9px 12px; border-radius: 15px; margin-bottom: 8px; }
.msg.them { background: #e4e7ec; color: var(--ink); border-bottom-left-radius: 5px; }
.msg.you { background: var(--orange); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.msg .blur { filter: blur(5px); user-select: none; }
.msg.typing span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #9aa6b4; margin-right: 3px; animation: ty 1.2s infinite; }
.msg.typing span:nth-child(2) { animation-delay: .2s; } .msg.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes ty { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.tight { padding: 44px 0; }
.navyband { background: var(--navy); color: #dce8f4; }
.navyband h2, .navyband h3 { color: #fff; }
.navyband .lead { color: #b6cbdf; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 34px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 74px 24px 26px; box-shadow: 0 2px 10px rgba(11,34,57,.05); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 6px; left: 18px;
  font-family: var(--display); font-size: 84px; font-weight: 700;
  color: var(--sky); line-height: 1;
}
.step h3 { position: relative; }
.step p { color: var(--steel); font-size: 15.5px; }

/* trailer type cards */
.types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
@media (max-width: 900px) { .types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .types { grid-template-columns: 1fr; } }
.tcard {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 22px 22px; text-decoration: none;
  transition: transform .14s, box-shadow .14s; display: block;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(11,34,57,.12); }
.tcard svg { height: 64px; width: auto; margin-bottom: 14px; stroke: var(--navy); }
.tcard b { font-family: var(--display); font-size: 21px; text-transform: uppercase; color: var(--navy); display: block; }
.tcard span { font-size: 13.5px; color: var(--steel); }
.tcard .go { color: var(--orange-d); font-weight: 700; font-size: 13.5px; }

/* honest bullets */
.straight { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 30px; }
.straight div { border-left: 3px solid var(--orange); padding-left: 18px; }
.straight b { display: block; font-family: var(--display); font-size: 20px; text-transform: uppercase; margin-bottom: 4px; }
.navyband .straight b { color: #fff; }
.navyband .straight p { color: #b6cbdf; font-size: 15px; }

/* faq */
.faq { max-width: 760px; margin: 26px auto 0; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; padding: 0 20px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px; padding: 16px 0; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 26px; color: var(--orange-d); transition: transform .15s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 16px; color: var(--steel); font-size: 15.5px; }

/* content pages */
.article { max-width: 800px; }
.article p, .article li { color: #2c3a47; }
.article p { margin-bottom: 16px; }
.article ul { margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }
.article h2 { margin-top: 42px; }
.band { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; margin: 34px 0; }
.band h2 { margin-top: 0; }

/* pre-footer cta */
.ctaband { background: var(--navy); text-align: center; padding: 74px 0; }
.ctaband h2 { color: #fff; font-size: clamp(34px, 5vw, 56px); }
.ctaband p { color: #b6cbdf; max-width: 34em; margin: 12px auto 30px; }
.ctaband .num { font-family: var(--display); font-size: clamp(30px, 4.5vw, 44px); font-weight: 700; color: #fff; letter-spacing: .04em; text-decoration: none; display: block; margin-top: 22px; }
.ctaband .num small { display: block; font-family: var(--text); font-size: 13px; font-weight: 500; color: #7f9cb8; letter-spacing: .1em; text-transform: uppercase; }

/* footer */
footer { background: #081a2c; color: #8aa4bd; padding: 46px 0 90px; font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; }
footer .logo { color: #fff; font-size: 23px; }
footer a { color: #b8cde0; text-decoration: none; }
footer a:hover { color: #fff; }
footer .col { max-width: 300px; }
footer .col b { color: #d8e5f0; display: block; margin-bottom: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
footer .col a { display: block; margin-bottom: 6px; }

/* sticky mobile cta */
.sticky {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--orange); padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 14px rgba(0,0,0,.22);
}
.sticky a { display: block; text-align: center; color: #fff; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; }
@media (max-width: 768px) { .sticky { display: block; } footer { padding-bottom: 120px; } }

/* draft pill */
.draftpill {
  position: fixed; left: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 70;
  background: #fff3cd; border: 1px solid #e0c060; color: #6b5510;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 10px; border-radius: 999px; pointer-events: none;
}
@media (max-width: 768px) { .draftpill { bottom: calc(64px + env(safe-area-inset-bottom)); } }

/* breadcrumbs */
.crumbs { font-size: 13px; color: var(--steel); margin: 26px 0 -30px; }
.crumbs a { color: var(--steel); }

/* comparison table */
.cmpwrap { overflow-x: auto; margin: 28px 0; border-radius: 14px; box-shadow: 0 2px 10px rgba(7,48,78,.06); }
.cmp { width: 100%; min-width: 700px; border-collapse: separate; border-spacing: 0; font-size: 15px; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cmp th { font-family: var(--display); font-size: 16.5px; letter-spacing: .04em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 14px 16px; text-align: left; white-space: nowrap; }
.cmp th:first-child { background: var(--navy); }
.cmp td { padding: 13px 16px; border-top: 1px solid #edf1f5; vertical-align: top; line-height: 1.45; }
.cmp td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; background: #f7f9fb; }
.cmp tr:nth-child(even) td { background: #fbfcfd; }
.cmp tr:nth-child(even) td:first-child { background: #f2f6fa; }
.cmp .yes { color: #1d7a3f; font-weight: 600; }
.cmp .no { color: #b3443c; font-weight: 600; }
