:root {
  --orange: #ff6a00;
  --orange-bright: #ff8a1f;
  --ink: #0b0b0c;
  --muted: #67676b;
  --paper: #f7f7f4;
  --white: #fff;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--ink); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 106, 0, .22), transparent 32rem),
    #0b0b0c;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }

.page-shell {
  min-height: 100vh;
  padding: clamp(0px, 2.2vw, 28px);
  display: grid;
}

.hero {
  width: 100%;
  min-height: calc(100vh - clamp(0px, 4.4vw, 56px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(520px, .97fr);
  background: var(--paper);
  border-radius: clamp(0px, 1.7vw, 24px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}

.hero__visual {
  min-height: 620px;
  position: relative;
  isolation: isolate;
  background: #111;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.06);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 55%, rgba(0, 0, 0, .64)),
    linear-gradient(90deg, transparent 70%, rgba(0, 0, 0, .12));
  z-index: 1;
}

.hero__badge {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 58px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 17px;
  color: white;
  background: rgba(10, 10, 11, .72);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  backdrop-filter: blur(14px);
}

.hero__badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 0, .18);
}

.hero__content {
  min-height: 620px;
  padding: clamp(28px, 4vw, 64px) clamp(28px, 5.2vw, 82px) clamp(24px, 3vw, 45px);
  display: flex;
  flex-direction: column;
  position: relative;
  background:
    linear-gradient(rgba(10, 10, 11, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 11, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.brand > span:last-child span { color: var(--orange); }

.brand__bag {
  width: 28px;
  height: 26px;
  position: relative;
  display: inline-block;
  border: 3px solid var(--orange);
  border-radius: 3px 3px 7px 7px;
  transform: rotate(-4deg);
}

.brand__bag::before {
  content: "";
  width: 11px;
  height: 8px;
  position: absolute;
  left: 5px;
  top: -9px;
  border: 3px solid var(--orange);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.hero__copy {
  width: min(100%, 610px);
  margin: auto 0;
  padding: 56px 0 44px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

h1 {
  margin: 0;
  max-width: 600px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 1.01;
  letter-spacing: -.055em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.subtitle {
  max-width: 560px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.notify-form > label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-field {
  min-width: 0;
  flex: 1;
  height: 58px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #deded9;
  border-radius: 13px;
  transition: border-color .2s, box-shadow .2s;
}

.phone-field:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .12);
}

.country-code {
  flex: 0 0 auto;
  padding: 0 14px 0 17px;
  border-right: 1px solid #e5e5e0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.phone-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.phone-field input::placeholder { color: #a0a09d; }

.phone-row button {
  height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--orange);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 106, 0, .24);
  transition: transform .2s, background .2s, box-shadow .2s;
}

.phone-row button:hover {
  transform: translateY(-2px);
  background: #e95f00;
  box-shadow: 0 16px 28px rgba(255, 106, 0, .3);
}

.phone-row button:active { transform: translateY(0); }

.phone-row button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #858582;
  font-size: 12px;
}

.privacy svg {
  width: 15px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice {
  margin: -10px 0 20px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.notice--success {
  color: #196032;
  background: #e5f6e9;
  border: 1px solid #bde4c7;
}

.notice--error {
  color: #8c2525;
  background: #ffeded;
  border: 1px solid #f1c6c6;
}

.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #888885;
  font-size: 12px;
}

.pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pulse i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s infinite;
}

.trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, .38); }
  50% { box-shadow: 0 0 0 7px rgba(255, 106, 0, 0); }
}

@media (max-width: 980px) {
  .page-shell { padding: 0; }
  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .hero__visual { min-height: 38vh; }
  .hero__visual img { object-position: center; }
  .hero__content { min-height: 62vh; }
  .hero__copy { padding: 48px 0; }
}

@media (max-width: 600px) {
  .hero__visual { min-height: 270px; }
  .hero__badge {
    left: 18px;
    bottom: 17px;
    font-size: 11px;
  }
  .hero__content { padding: 25px 20px 22px; }
  .hero__copy { padding: 48px 0 40px; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  .subtitle { margin-top: 20px; line-height: 1.55; }
  .phone-row { flex-direction: column; }
  .phone-row button { width: 100%; }
  .hero__footer { margin-top: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
