:root {
  --bg: #050805;
  --bg2: #080d08;
  --card: #0e160e;
  --line: #243224;
  --text: #eef3ee;
  --muted: #a7b6a7;
  --accent: #ff6a00;
  --accent2: #ff9100;
  --ink: #1a1208;
  --radius: 18px;
  --shadow: 0 16px 48px rgba(0, 0, 0, .38);
  --sans: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --pad: clamp(1.1rem, 3vw, 1.6rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1100px 520px at 8% -12%, #123016 0%, transparent 56%),
    radial-gradient(820px 460px at 100% 0%, #152412 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  font-size: 1.02rem;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: .8rem;
  top: -3rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  padding: .55rem .85rem;
  border-radius: 8px;
  z-index: 40;
}

.skip:focus {
  top: .8rem;
  text-decoration: none;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 5, .9);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 3px 0 var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1.2rem;
  padding: .85rem 0 .95rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand:hover { text-decoration: none; }

.logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
}

.logo svg {
  display: block;
  width: 48px;
  height: 48px;
}

.brand-text {
  display: grid;
  gap: .08rem;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-text span {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  gap: .85rem 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-text-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-text-links a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
}

.nav-text-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .78rem 1.2rem;
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary,
.btn-primary:hover,
.btn-primary:visited {
  background: var(--accent);
  color: var(--ink) !important;
}

.btn-primary:hover { background: var(--accent2); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  padding: 2.6rem 0 1.6rem;
  display: grid;
  gap: 1.8rem;
}

.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  font-family: var(--display);
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 700;
}

h1 {
  margin: .7rem 0 .85rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: .98;
  letter-spacing: .01em;
  font-weight: 800;
  text-wrap: balance;
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.35rem;
}

.pill {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  border-radius: 999px;
  padding: .4rem .75rem;
}

.hero-card {
  background: linear-gradient(180deg, #122616, var(--card));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem 1.25rem;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: calc(var(--radius) + 4px) calc(var(--radius) + 4px) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.card-kicker {
  margin: .15rem 0 .2rem;
  font-family: var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--accent2);
  font-weight: 700;
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: .03em;
}

.rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .82rem 0;
  border-bottom: 1px solid var(--line);
}

.rate:last-of-type { border-bottom: 0; }

.rate strong {
  font-size: 1.02rem;
}

.rate b {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1;
}

.rate b span {
  font-size: .55em;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--sans);
  margin-left: .12em;
}

.rate small {
  color: var(--muted);
  display: block;
  font-weight: 500;
  margin-top: .12rem;
}

.note {
  margin: 1rem 0 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}

section { padding: 2.6rem 0; }

.band {
  border-block: 1px solid var(--line);
  background: rgba(8, 13, 8, .55);
}

.section-title {
  margin: .45rem 0 .4rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  letter-spacing: .03em;
}

.section-sub {
  margin: 0 0 1.55rem;
  color: var(--muted);
  max-width: 40rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.cols-3 .card {
  min-height: 100%;
  border-top: 3px solid var(--accent);
}

.card h3 {
  margin: 0 0 .45rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: .85rem;
  display: grid;
  place-items: center;
  background: #102010;
  color: var(--accent);
  border: 1px solid #2a4a2a;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}

.machine-section { padding-top: 2.8rem; }

.machine {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
}

.machine-visual {
  min-height: 240px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 106, 0, .12), transparent 46%), #0a120a;
  display: grid;
  align-content: center;
  padding: 1.1rem 1.1rem 1.2rem;
  overflow: hidden;
}

.tractor {
  width: 100%;
  height: auto;
  display: block;
}

.machine-caption {
  text-align: center;
  margin-top: .35rem;
}

.machine-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: .04em;
}

.machine-caption span {
  color: var(--muted);
  font-size: .95rem;
}

.included .note { margin-top: 1.1rem; }

ul.check {
  margin: .7rem 0 0;
  padding: 0;
  list-style: none;
}

ul.check li {
  position: relative;
  padding: .38rem 0 .38rem 1.45rem;
  color: var(--muted);
}

ul.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.contact-box { align-items: stretch; }

.area-card {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.radius-visual {
  display: grid;
  place-items: center;
}

.book-lead { margin-bottom: .95rem !important; }

.big-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--ink);
  text-decoration: none;
  background: var(--accent);
  padding: .55rem 1.05rem;
  border-radius: 12px;
  border: 2px solid #cc5500;
  box-shadow: 0 4px 0 #994000;
  margin-bottom: .15rem;
}

.big-phone:hover {
  color: var(--ink);
  background: var(--accent2);
  text-decoration: none;
}

.book-card .cta-row { margin-top: 1.05rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.8rem 0 2.4rem;
  color: var(--muted);
  font-size: .9rem;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-end;
}

.foot-brand {
  display: grid;
  gap: .2rem;
}

.foot-brand strong {
  color: var(--text);
  font-weight: 700;
}

.foot-brand > span,
.foot-meta > span,
.foot-meta > a { display: block; }

.foot-meta {
  display: grid;
  gap: .25rem;
  text-align: right;
}

.foot-meta a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.foot-meta a:hover { text-decoration: underline; }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.2fr .88fr;
    align-items: center;
    padding: 4.2rem 0 2.8rem;
    gap: 2.4rem;
  }
}

@media (min-width: 720px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .area-card { grid-template-columns: auto 1fr; }
}

@media (min-width: 800px) {
  .machine { grid-template-columns: 1.12fr .88fr; }
}

@media (max-width: 719px) {
  .foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    align-items: stretch;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
    flex-direction: column-reverse;
    gap: .7rem;
  }

  .nav-links .btn {
    width: 100%;
  }

  .nav-text-links {
    width: 100%;
    justify-content: space-between;
    padding: 0 .1rem;
  }

  .cta-row .btn {
    flex: 1 1 10rem;
  }

  .foot-meta { text-align: left; }

  .brand-text span { max-width: 14rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
