:root{
  --bg:#08101b;
  --bg-soft:#101b2b;
  --panel:rgba(10,20,33,.52);
  --panel-soft:rgba(255,255,255,.02);
  --line:rgba(255,255,255,.09);
  --text:#f7f9fc;
  --muted:#9fb0c3;
  --accent:#28d39b;
  --accent-deep:#149d74;
  --accent-soft:rgba(40,211,155,.11);
  --warm:#f3b35e;
  --shadow:0 28px 80px rgba(0,0,0,.34);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--text);
  font-family:"Segoe UI Variable","Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
  font-size:16px;
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(circle at top left, rgba(40,211,155,.15), transparent 30%),
    radial-gradient(circle at top right, rgba(243,179,94,.12), transparent 18%),
    linear-gradient(180deg, #09111b 0%, #08101b 38%, #0d1827 100%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}


.shell{
  position:relative;
  overflow:hidden;
}

.shell::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(120deg, rgba(8,16,27,.32) 0%, rgba(8,16,27,.18) 38%, rgba(8,16,27,.36) 100%),
    url("../images/site/au975-page19-backdrop.jpg") center center/contain no-repeat;
  pointer-events:none;
  z-index:0;
}

.shell::after{
  content:"";
  position:fixed;
  top:-120px;
  right:-80px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(40,211,155,.1), transparent 72%);
  filter:none;
  pointer-events:none;
}

.site{
  position:relative;
  z-index:1;
}

.container{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(16px);
  background:rgba(8,16,27,.22);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
}

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

.brand-mark{
  width:520px;
  height:220px;
  padding:10px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.004));
  box-shadow:var(--shadow);
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-copy strong{
  display:block;
  font-size:17px;
  line-height:1.25;
}

.brand-copy span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  padding:8px 12px;
  border-radius:999px;
  color:#dbe4f1;
  font-size:14px;
  line-height:1.2;
}

.nav a:hover{
  background:rgba(255,255,255,.05);
}

.nav .button{
  border:1px solid rgba(40,211,155,.24);
  background:var(--accent-soft);
  color:#effff9;
  font-weight:700;
}

.hero{
  padding:48px 0 32px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}

.hero-main,
.hero-side,
.panel,
.band-card,
.product-card,
.feature-card,
.proof-card,
.contact-card,
.support-card{
  min-width:0;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--panel);
  box-shadow:var(--shadow);
}

.hero-main,
.hero-side,
.panel{
  border-radius:32px;
  padding:34px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
  padding:10px 14px;
  border-radius:999px;
  background:var(--accent-soft);
  border:1px solid rgba(40,211,155,.18);
  color:#dffff4;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 18px rgba(40,211,155,.7);
}

h1{
  margin:20px 0 0;
  max-width:760px;
  font-size:clamp(40px, 5.8vw, 68px);
  line-height:1.02;
  letter-spacing:-.035em;
}

.hero-copy{
  margin:18px 0 0;
  max-width:700px;
  color:#dbe5f2;
  font-size:clamp(16px, 1.7vw, 18px);
  line-height:1.68;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.cta,
.ghost,
.mini-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:15px;
  font-size:15px;
  line-height:1.2;
  font-weight:700;
  transition:transform .18s ease, background .18s ease;
}

.cta{
  background:linear-gradient(135deg, var(--accent) 0%, #22bf8c 100%);
  color:#04120e;
}

.ghost,
.mini-button{
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#f7f9fc;
}

.cta:hover,
.ghost:hover,
.mini-button:hover{
  transform:translateY(-2px);
}

.hero-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:30px;
}

.meta-card{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.018);
}

.meta-card strong{
  display:block;
  font-size:21px;
  line-height:1.15;
  letter-spacing:-.02em;
}

.meta-card span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.hero-side{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}

.card-kicker,
.section-label{
  color:var(--warm);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero-side h2,
.section-title{
  margin:14px 0 0;
  line-height:1.12;
  letter-spacing:-.025em;
}

.hero-side h2{
  font-size:clamp(25px, 2.6vw, 30px);
}

.side-copy{
  margin:14px 0 0;
  color:#d3deeb;
  font-size:16px;
  line-height:1.68;
}

.signal-list,
.bullet-list{
  list-style:none;
  margin:0;
  padding:0;
}

.signal-list{
  margin-top:18px;
}

.signal-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.signal-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  background:rgba(40,211,155,.12);
  color:var(--accent);
  font-weight:900;
}

.signal-list strong{
  display:block;
  font-size:15px;
  line-height:1.3;
}

.signal-list span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.hero-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.section{
  padding:24px 0 0;
}

.panel{
  padding:34px;
}

.section-title{
  max-width:820px;
  font-size:clamp(30px,3.4vw,46px);
}

.section-copy{
  margin:16px 0 0;
  max-width:780px;
  color:#d4deeb;
  font-size:17px;
  line-height:1.7;
}

.products-grid,
.feature-grid,
.proof-grid,
.contact-layout{
  display:grid;
  gap:18px;
}

.products-grid{
  margin-top:28px;
  grid-template-columns:repeat(5, 1fr);
}

.product-card,
.feature-card,
.proof-card,
.support-card{
  border-radius:26px;
  padding:24px;
}

.media-frame{
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(8,16,27,.24);
}

.media-frame img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.media-frame.product-shot{
  background:
    radial-gradient(circle at top left, rgba(40,211,155,.08), transparent 45%),
    rgba(8,16,27,.32);
}

.media-frame.product-shot img{
  object-fit:contain;
  padding:12px;
}

.media-frame.diagram-shot img{
  object-fit:contain;
  padding:10px;
  background:rgba(255,255,255,.02);
}

.media-frame.application-shot img{
  object-fit:cover;
}

.product-card .media-frame{
  height:160px;
  margin-top:16px;
}

.feature-card .media-frame,
.band-card .media-frame{
  height:220px;
  margin-top:18px;
}

.crop-valves img{object-position:center 48%}
.crop-float img{object-position:center 44%}
.crop-nozzle img{object-position:center 42%}
.crop-receiver img{object-position:center 56%}
.crop-breather img{object-position:center 50%}
.crop-overfill img{object-position:center 36%}
.crop-dumptruck img{object-position:center 58%}
.crop-excavator img{object-position:center 52%}

.support-image-frame{
  height:180px;
  margin-top:18px;
}

.product-card h3,
.feature-card h3,
.support-card h3{
  margin:14px 0 0;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.015em;
}

.product-card p,
.feature-card p,
.proof-card p,
.support-card p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
}
.product-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:#dffef1;
  font-size:14px;
  line-height:1.3;
  font-weight:700;
}
.product-link::after{
  content:"→";
  color:var(--accent);
}

.feature-grid{
  margin-top:28px;
  grid-template-columns:repeat(2, 1fr);
}

.proof-grid{
  margin-top:28px;
  grid-template-columns:repeat(4, 1fr);
}

.proof-card strong{
  display:block;
  font-size:30px;
  line-height:1;
  letter-spacing:-.025em;
}

.proof-card span{
  display:block;
  margin-top:10px;
  color:#dfe8f4;
  font-size:14px;
  font-weight:700;
}

.band{
  padding:24px 0 0;
}

.band-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
}

.band-card{
  border-radius:28px;
  padding:30px;
}

.band-card h3{
  margin:12px 0 0;
  font-size:26px;
  line-height:1.2;
  letter-spacing:-.015em;
}

.band-card p{
  margin:14px 0 0;
  color:#d5dfea;
  line-height:1.7;
}

.auth-distributor{
  padding-top:8px;
}

.auth-copy-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.auth-copy-card .section-title{
  max-width:720px;
}

.auth-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.oem-marketing-card{
  overflow:hidden;
  padding:12px;
  background:rgba(8,16,27,.2);
  border-color:rgba(255,255,255,.14);
}

.oem-marketing-card img{
  width:100%;
  height:auto;
  border-radius:20px;
  object-fit:contain;
}

.bullet-list{
  margin-top:16px;
}

.bullet-list li{
  position:relative;
  padding:12px 0 12px 18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#dce5f1;
}

.bullet-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:20px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--warm);
}

.contact-layout{
  margin-top:28px;
  grid-template-columns:1.1fr .9fr;
}

.contact-intro{
  margin-top:12px;
  color:#d4deea;
  font-size:17px;
  line-height:1.7;
}

.contact-card,
.support-card{
  border-radius:28px;
  padding:30px;
}

.contact-card h3{
  margin:0;
  font-size:26px;
  line-height:1.2;
  letter-spacing:-.015em;
}

.contact-card p{
  margin:12px 0 0;
  color:#d4deea;
  line-height:1.65;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:22px;
}

.contact-item{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.07);
}

.contact-item span{
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.contact-item strong{
  display:block;
  margin-top:10px;
  font-size:17px;
  line-height:1.45;
}

.touch-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:24px;
}

.touch-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
}

.touch-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  flex:0 0 50px;
  display:grid;
  place-items:center;
  background:rgba(40,211,155,.12);
  color:var(--accent);
}

.touch-icon svg{
  width:24px;
  height:24px;
  display:block;
}

.touch-copy h4{
  margin:0;
  font-size:17px;
  line-height:1.25;
}

.touch-copy p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.touch-copy a{
  color:#f7f9fc;
}

.touch-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.footer-blocks{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:20px;
  width:100%;
}

.footer-title{
  color:#f7f9fc;
  font-size:16px;
  font-weight:700;
  line-height:1.3;
}

.footer-copy,
.footer-list{
  margin-top:10px;
  color:#a3b2c4;
  font-size:14px;
  line-height:1.65;
}

.footer-list{
  list-style:none;
  padding:0;
  margin-bottom:0;
}

.footer-list li + li{
  margin-top:8px;
}

footer{
  padding:26px 0 36px;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  color:#a3b2c4;
  font-size:14px;
  line-height:1.6;
}

@media (max-width:1080px){
  .hero-grid,
  .band-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .products-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .proof-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .container{
    width:min(100% - 28px, 1200px);
  }

  .header-row{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .brand,
  .nav{
    width:100%;
  }

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

  .brand-mark{
    width:min(210px, 100%);
    height:116px;
    padding:8px;
    border-radius:20px;
  }

  .hero-main,
  .hero-side,
  .panel,
  .band-card,
  .product-card,
  .feature-card,
  .proof-card,
  .contact-card,
  .support-card{
    border-radius:24px;
    padding:22px;
  }

  .hero{
    padding:30px 0 22px;
  }

  h1{
    font-size:clamp(32px, 9vw, 40px);
    line-height:1.06;
    overflow-wrap:break-word;
  }

  .hero-copy,
  .section-copy,
  .contact-intro{
    font-size:16px;
    line-height:1.65;
  }

  .section-title{
    font-size:clamp(28px, 8.5vw, 36px);
  }

  .eyebrow{
    display:flex;
    align-items:flex-start;
    width:100%;
    max-width:100%;
    white-space:normal;
    line-height:1.35;
    font-size:10px;
  }

  .eyebrow::before{
    flex:0 0 8px;
    margin-top:.2em;
  }

  .hero-actions .cta,
  .hero-actions .ghost,
  .auth-actions .cta,
  .auth-actions .ghost,
  .hero-links .mini-button{
    width:100%;
  }

  .products-grid,
  .feature-grid,
  .proof-grid,
  .hero-meta,
  .contact-grid,
  .touch-grid,
  .footer-blocks{
    grid-template-columns:1fr;
  }

  .nav{
    justify-content:flex-start;
  }

  .footer-row{
    flex-direction:column;
  }
}
