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

:root {
  --navy: #102235;
  --orange: #d84b0b;
  --cream: #faf7f2;
  --muted: #45515e;
  --line: #e7e0d8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 800; letter-spacing: .02em; font-size: 29px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 39px; height: 39px; border: 1px solid #203346; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 17px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px 0 30px;
}
.hero-copy { padding-bottom: 40px; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .22em; margin: 0 0 20px; color: var(--orange); }
h1 { margin: 0; font-size: clamp(60px, 7vw, 92px); line-height: .96; letter-spacing: -.055em; }
h1 span { color: var(--orange); }
.accent-line { width: 58px; height: 4px; background: var(--orange); margin: 35px 0; }
.hero h2 { font-size: 25px; margin: 0 0 17px; }
.lead { max-width: 600px; font-size: 19px; line-height: 1.8; color: var(--muted); margin: 0; }

.categories { display: flex; gap: 35px; margin-top: 40px; flex-wrap: wrap; }
.category { display: grid; justify-items: center; gap: 8px; min-width: 95px; }
.category span { font-size: 34px; line-height: 1; color: var(--orange); }
.category strong { font-size: 13px; }

.hero-art { height: 520px; position: relative; display: grid; place-items: center; }
.glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, #f2e8dc, transparent 70%); }
.toolbox {
  position: relative; width: 370px; height: 275px; border-radius: 18px 18px 24px 24px;
  background: linear-gradient(145deg, #1c2730, #0c141b);
  box-shadow: 0 30px 55px rgba(16,34,53,.22);
  border-bottom: 12px solid var(--orange);
}
.tool-handle {
  position: absolute; width: 125px; height: 55px; border: 12px solid #202d35;
  border-bottom: 0; border-radius: 70px 70px 0 0; left: 123px; top: -46px;
}
.tool { position: absolute; bottom: 105px; width: 32px; height: 155px; border-radius: 14px; background: #8b9295; transform: rotate(-13deg); }
.tool i { position: absolute; bottom: -1px; left: 0; width: 32px; height: 68px; border-radius: 10px; background: var(--orange); }
.tool b { position: absolute; top: -24px; left: -5px; width: 42px; height: 38px; border-radius: 50% 50% 35% 35%; background: #9ca2a5; }
.tool:nth-child(2) { left: 70px; height: 145px; transform: rotate(-23deg); }
.tool:nth-child(3) { left: 135px; height: 175px; transform: rotate(4deg); }
.tool:nth-child(4) { left: 200px; height: 155px; transform: rotate(13deg); }
.tool:nth-child(5) { left: 255px; height: 165px; transform: rotate(25deg); }
.tool:nth-child(6) { left: 310px; height: 145px; transform: rotate(38deg); }
.toolbox-logo { position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%); font-size: 78px; font-weight: 800; color: var(--orange); opacity: .95; }
.tape {
  position: absolute; width: 90px; height: 90px; background: #272f34; border-radius: 25px;
  left: 80px; bottom: 34px; transform: rotate(-12deg); box-shadow: 0 15px 30px rgba(16,34,53,.16);
}
.tape::after { content: ""; position: absolute; inset: 19px; border-radius: 50%; background: #111b21; border: 7px solid #a1a5a4; }
.hammer-floor { position: absolute; width: 145px; height: 27px; right: 20px; bottom: 40px; background: var(--orange); transform: rotate(24deg); border-radius: 14px; }
.hammer-floor span { position: absolute; left: 110px; top: -9px; width: 45px; height: 45px; background: #9a9ea0; border-radius: 8px; }

.waitlist {
  background: rgba(255,255,255,.82); border: 1px solid #eee5dc; border-radius: 24px;
  padding: 31px 35px; display: grid; grid-template-columns: auto 1fr 1.35fr; gap: 24px; align-items: center;
  box-shadow: 0 18px 50px rgba(16,34,53,.05);
}
.mail-icon { width: 64px; height: 64px; border-radius: 50%; background: #fff0e7; color: var(--orange); display: grid; place-items: center; font-size: 28px; }
.waitlist h3 { margin: 0 0 8px; font-size: 20px; }
.waitlist p { margin: 0; color: var(--muted); line-height: 1.55; }
form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
input, button { height: 52px; border-radius: 9px; font: inherit; }
input { min-width: 0; padding: 0 17px; border: 1px solid #c9c4bd; background: white; color: var(--navy); }
button { border: 0; padding: 0 25px; background: var(--orange); color: white; font-weight: 700; cursor: pointer; }
button:hover { filter: brightness(.94); }
form small { grid-column: 1 / -1; color: #65717c; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; padding: 62px 0 90px; }
.trust article { display: flex; gap: 18px; }
.trust-icon { flex: 0 0 43px; height: 43px; border: 2px solid var(--orange); color: var(--orange); border-radius: 50%; display: grid; place-items: center; font-size: 21px; font-weight: 700; }
.trust h3 { margin: 0 0 7px; font-size: 17px; }
.trust p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

footer { background: var(--navy); color: white; padding: 55px 0 25px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; }
.footer-brand .brand { color: white; }
.footer-brand p { color: #c4ced6; max-width: 300px; line-height: 1.65; margin-top: 20px; }
footer h4 { font-size: 13px; letter-spacing: .12em; margin: 6px 0 20px; }
footer .footer-inner > div:not(.footer-brand) a { display: block; color: #c4ced6; font-size: 14px; margin: 0 0 12px; }
.copyright { width: min(1180px, calc(100% - 48px)); margin: 45px auto 0; text-align: right; color: #aebbc5; font-size: 12px; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120px); background: var(--navy); color: white; padding: 13px 20px; border-radius: 9px; transition: .3s; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.toast.show { transform: translate(-50%, 0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-top: 30px; }
  .hero-art { height: 390px; order: -1; }
  .toolbox { transform: scale(.78); }
  .waitlist { grid-template-columns: auto 1fr; }
  .waitlist form { grid-column: 1 / -1; }
  .trust { grid-template-columns: 1fr; padding-bottom: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 30px, 1180px); }
  .header { height: 85px; }
  .brand { font-size: 23px; }
  .brand img { width: 40px; height: 40px; }
  .socials { display: none; }
  h1 { font-size: 57px; }
  .lead { font-size: 16px; }
  .categories { gap: 20px; }
  .hero-art { height: 320px; }
  .toolbox { transform: scale(.61); }
  .waitlist { padding: 24px; grid-template-columns: 1fr; text-align: center; }
  .mail-icon { margin: auto; }
  form { grid-template-columns: 1fr; }
  form small { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .copyright { text-align: left; }
}
