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

:root {
  --ink: #090a09;
  --panel: #111310;
  --panel-2: #181b17;
  --steel: #9da49a;
  --paper: #f2f0e8;
  --yellow: #ffc400;
  --yellow-hot: #ffdb4d;
  --line: rgba(255, 255, 255, 0.13);
  --danger: #ff6b5d;
  --success: #a8e86d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.19;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.condensed { font-family: "Barlow Condensed", sans-serif; }
.topline {
  padding: 8px 18px;
  background: var(--yellow);
  color: #111;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 9, 0.9);
  backdrop-filter: blur(16px);
}
.nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; font-weight: 900; letter-spacing: 0.06em; }
.brand img { width: 48px; height: 48px; border-radius: 3px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #d2d5cf; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-links a:hover { color: var(--yellow); }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--paper);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.35); }
.button.primary { border-color: var(--yellow); background: var(--yellow); color: #111; }
.button.primary:hover { background: var(--yellow-hot); }
.button.dark { border-color: #111; background: #111; color: white; }
.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 12%, rgba(255, 196, 0, 0.22), transparent 29%), linear-gradient(120deg, #080908 40%, #171a14 100%);
}
.hero::after {
  content: "ARES";
  position: absolute;
  right: -2vw;
  bottom: -13vw;
  color: rgba(255, 255, 255, 0.035);
  font: 900 31vw/1 "Barlow Condensed", sans-serif;
  letter-spacing: -0.08em;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 70px; padding: 84px 0; }
.eyebrow, .kicker { color: var(--yellow); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 42px; height: 3px; margin: 0 12px 3px 0; background: var(--yellow); }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; }
h1 { max-width: 760px; margin: 18px 0 24px; font-size: clamp(4.7rem, 9vw, 8.8rem); line-height: 0.78; letter-spacing: -0.045em; text-transform: uppercase; }
h1 em { color: var(--yellow); font-style: italic; }
.hero-copy > p { max-width: 630px; margin: 0 0 32px; color: #c1c6bd; font-size: 1.05rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge { position: relative; padding: 12px; transform: rotate(2deg); background: var(--yellow); box-shadow: 22px 24px 0 rgba(255, 255, 255, 0.07); }
.hero-badge img { display: block; width: 100%; aspect-ratio: 1.35; object-fit: cover; filter: contrast(1.08); }
.hero-badge-copy { padding: 20px 14px 12px; color: #111; }
.hero-badge-copy strong { display: block; font: 900 1.8rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.hero-badge-copy span { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.trust-strip { border-block: 1px solid var(--line); background: #0e100e; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 30px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--yellow); font: 900 2.1rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.trust-item span { color: var(--steel); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.section { padding: 110px 0; }
.section.alt { background: #0d0f0c; }
.section-head { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.section-head h2 { margin: 8px 0 0; font-size: clamp(3.2rem, 6vw, 6rem); line-height: 0.87; letter-spacing: -0.04em; text-transform: uppercase; }
.section-head p { max-width: 600px; justify-self: end; margin: 0; color: var(--steel); }
.fleet-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.equipment-card { position: relative; min-height: 330px; padding: 30px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.equipment-card:nth-child(1) { grid-column: span 7; background: linear-gradient(145deg, #20241c, #111310); }
.equipment-card:nth-child(2) { grid-column: span 5; }
.equipment-card:nth-child(3) { grid-column: span 5; }
.equipment-card:nth-child(4) { grid-column: span 7; background: var(--yellow); color: #111; }
.equipment-card .index { color: var(--yellow); font: 800 0.8rem "Manrope", sans-serif; letter-spacing: 0.14em; }
.equipment-card:nth-child(4) .index { color: #111; }
.equipment-card h3 { max-width: 450px; margin: 70px 0 12px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 0.85; text-transform: uppercase; }
.equipment-card p { max-width: 490px; margin: 0; color: var(--steel); }
.equipment-card:nth-child(4) p { color: rgba(0, 0, 0, 0.7); }
.equipment-card .status { position: absolute; right: 22px; top: 22px; padding: 7px 10px; border: 1px solid currentColor; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.step { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-number { color: var(--yellow); font: 800 0.75rem "Manrope", sans-serif; letter-spacing: 0.12em; }
.step h3 { margin: 80px 0 12px; font-size: 2rem; line-height: 1; text-transform: uppercase; }
.step p { margin: 0; color: var(--steel); font-size: 0.9rem; }
.location-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--yellow); color: #111; }
.location-copy { padding: clamp(38px, 7vw, 86px); }
.location-copy h2 { margin: 10px 0 22px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.8; text-transform: uppercase; }
.location-copy p { max-width: 520px; font-weight: 600; }
.location-mark { display: grid; place-items: center; min-height: 420px; background: #151714; color: var(--yellow); }
.location-mark span { width: 230px; height: 230px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font: 900 5rem "Barlow Condensed", sans-serif; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--steel); font-size: 0.78rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row strong { color: var(--paper); }
.staff-link { opacity: 0.6; }

.portal-shell { min-height: 100vh; background: radial-gradient(circle at 10% 10%, rgba(255, 196, 0, 0.14), transparent 26%), var(--ink); }
.portal-header { padding: 24px 0; border-bottom: 1px solid var(--line); }
.portal-header .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.back-link { color: var(--steel); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.portal-main { padding: 70px 0 100px; }
.portal-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.portal-intro h1 { margin: 16px 0 24px; font-size: clamp(4.2rem, 8vw, 7rem); }
.portal-intro p { max-width: 500px; color: var(--steel); }
.security-note { margin-top: 34px; padding: 18px; border-left: 4px solid var(--yellow); background: var(--panel); color: #c8ccc5; font-size: 0.85rem; }
.form-card { padding: clamp(26px, 5vw, 48px); border: 1px solid var(--line); background: rgba(18, 20, 17, 0.96); box-shadow: 28px 28px 0 rgba(255, 196, 0, 0.07); }
.form-card h2 { margin: 0 0 8px; font-size: 2.5rem; text-transform: uppercase; }
.form-card > p { margin: 0 0 28px; color: var(--steel); font-size: 0.88rem; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; color: #dce0d9; font-size: 0.73rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.field input, .field textarea, .stripe-card {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid #3b3f38;
  border-radius: 2px;
  outline: none;
  background: #0c0e0c;
  color: white;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field textarea:focus, .stripe-card.StripeElement--focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.1); }
.money-wrap { position: relative; }
.money-wrap span { position: absolute; left: 15px; top: 14px; color: var(--yellow); font-weight: 900; }
.money-wrap input { padding-left: 36px; }
.form-card .button { width: 100%; margin-top: 8px; }
.result { display: none; margin-top: 22px; padding: 18px; border: 1px solid var(--line); background: #0b0d0b; }
.result.visible { display: block; }
.result.success { border-color: rgba(168, 232, 109, 0.55); }
.result.error { border-color: rgba(255, 107, 93, 0.6); color: #ffd3cf; }
.generated-link { width: 100%; margin: 12px 0; padding: 12px; border: 1px solid var(--line); background: #050605; color: #dfe3dc; word-break: break-all; }
.summary { display: grid; gap: 0; margin-bottom: 30px; border: 1px solid var(--line); }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: var(--steel); font-size: 0.78rem; }
.summary-row strong { text-align: right; }
.amount-display { color: var(--yellow); font: 900 3.8rem/1 "Barlow Condensed", sans-serif; }
.status-panel { text-align: center; padding: 45px 20px; }
.status-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 22px; border: 2px solid var(--success); border-radius: 50%; color: var(--success); font-size: 2rem; }
.hidden { display: none !important; }

@media (max-width: 850px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .section-head, .portal-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 45px; padding: 65px 0; }
  .hero-badge { max-width: 500px; }
  .section-head p { justify-self: start; }
  .equipment-card:nth-child(n) { grid-column: span 12; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .location-panel { grid-template-columns: 1fr; }
  .location-mark { min-height: 300px; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .nav-row { min-height: 66px; }
  .nav-links { gap: 10px; }
  .nav-links .button { min-height: 42px; padding-inline: 13px; }
  h1 { font-size: 4.2rem; }
  .trust-grid, .steps { grid-template-columns: 1fr; }
  .trust-item, .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child, .step:last-child { border-bottom: 0; }
  .step:nth-child(n) { border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .portal-main { padding-top: 48px; }
  .portal-header .brand span { display: block; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
