* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #073a8c;
  --blue-2: #165ee0;
  --blue-3: #031d4d;
  --white: #ffffff;
  --text-soft: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.13);
  --card: rgba(255,255,255,.08);
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}

html, body {
  min-height: 100%;
}

html {
  background: #031a42;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.08), transparent 26%),
    radial-gradient(circle at 78% 30%, rgba(29,99,216,.32), transparent 22%),
    linear-gradient(145deg, #021432 0%, #073a8c 48%, #04152f 100%);
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  pointer-events: none;
}

.ambient-1 {
  width: 280px;
  height: 280px;
  background: rgba(67, 133, 255, .45);
  top: -90px;
  left: -60px;
  animation: drift 10s ease-in-out infinite;
}

.ambient-2 {
  width: 320px;
  height: 320px;
  background: rgba(15, 61, 141, .55);
  right: -110px;
  bottom: 18%;
  animation: drift 12s ease-in-out infinite reverse;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.page-shell {
  min-height: 100vh;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(1200px, 100%);
  min-height: calc(100vh - 28px);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.08), transparent 32%, transparent 68%, rgba(255,255,255,.05));
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.logo-chip {
  width: 84px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  flex-shrink: 0;
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #81ffae;
  box-shadow: 0 0 0 5px rgba(129,255,174,.12);
  animation: pulse 1.8s infinite;
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 24px 6px 8px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 620px;
  animation: appearUp .9s cubic-bezier(.2,.8,.2,1) both;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(58px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.07em;
  margin-top: 18px;
}

h1 span {
  color: #8bb4ff;
}

.intro {
  margin-top: 22px;
  max-width: 540px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: clamp(15px, 1.4vw, 18px);
}

.cta-group {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 15px 35px rgba(0,0,0,.16);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: white;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-points span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,.82);
}

.hero-visual {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
  animation: appearUp 1.05s .12s cubic-bezier(.2,.8,.2,1) both;
}

.phone-wrap {
  width: min(390px, 88%);
  position: relative;
}

.phone-shadow {
  position: absolute;
  inset: auto 8% -22px 8%;
  height: 60px;
  background: rgba(0,0,0,.38);
  filter: blur(20px);
  border-radius: 50%;
}

.phone-frame {
  position: relative;
  background: linear-gradient(180deg, #171717, #020202);
  border-radius: 42px;
  padding: 10px;
  transform: rotate(-8deg);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.phone-notch {
  width: 36%;
  height: 26px;
  border-radius: 0 0 20px 20px;
  background: #040404;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.phone-screen {
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,.14), transparent 20%),
    linear-gradient(155deg, #0f56c8 0%, #052a67 68%, #041933 100%);
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.12), transparent 28%);
  pointer-events: none;
}

.phone-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px 0;
  position: relative;
  z-index: 2;
}

.screen-logo {
  width: 64px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
}

.screen-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-badge {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-teaser {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hanger {
  width: 140px;
  height: 80px;
  border: 7px solid rgba(255,255,255,.85);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 112px;
}

.hanger::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 7px solid rgba(255,255,255,.85);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  left: 42px;
  top: -48px;
  transform: rotate(-18deg);
}

.hoodie {
  width: 230px;
  height: 265px;
  background: linear-gradient(180deg, #0d0d0d, #2a2a2a);
  clip-path: polygon(24% 0, 41% 9%, 59% 9%, 76% 0, 100% 22%, 83% 38%, 77% 30%, 80% 100%, 20% 100%, 23% 30%, 17% 38%, 0 22%);
  box-shadow: inset 0 0 55px rgba(255,255,255,.07);
  transform: translateY(26px);
}

.cover-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,18,47,.18), rgba(1,10,28,.78)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.03) 0 2px, transparent 2px 5px);
  backdrop-filter: blur(7px);
}

.screen-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.screen-copy p {
  font-size: 11px;
  letter-spacing: .16em;
  opacity: .72;
}

.screen-copy h2 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.06em;
  margin: 8px 0 6px;
}

.screen-copy span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
}

.floating-card small {
  display: block;
  font-size: 10px;
  opacity: .7;
  letter-spacing: .14em;
  margin-bottom: 4px;
}

.floating-card strong {
  font-size: 13px;
  letter-spacing: .08em;
}

.floating-card-1 {
  top: 18%;
  left: 0;
  animation: floatY 4.5s ease-in-out infinite;
}

.floating-card-2 {
  right: 2%;
  bottom: 14%;
  animation: floatY 5s ease-in-out infinite .4s;
}

.notify-box {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.notify-copy h3 {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1;
  letter-spacing: -.05em;
  margin-top: 10px;
}

.notify-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.notify-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  padding: 0 14px;
}

.notify-form input::placeholder {
  color: rgba(255,255,255,.45);
}

.notify-form button {
  border: 0;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.form-message {
  grid-column: 2;
  color: #a8ffc2;
  font-size: 12px;
  min-height: 18px;
  padding-left: 10px;
}

.footer {
  margin-top: 12px;
  padding: 10px 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
  position: relative;
  z-index: 2;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer a:hover {
  color: white;
}

.divider {
  opacity: .45;
}

@keyframes pulse {
  50% {
    opacity: .55;
    transform: scale(.88);
  }
}

@keyframes floatY {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  50% {
    transform: translate(18px, 10px) scale(1.08);
  }
}

@keyframes appearUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
}

@media (max-width: 980px) {
  .hero-card {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 22px;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .notify-box {
    grid-template-columns: 1fr;
  }

  .form-message {
    grid-column: 1;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 10px;
    display: block;
  }

  .hero-card {
    min-height: calc(100vh - 20px);
    border-radius: 24px;
    padding: 14px 14px 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .logo-chip {
    width: 72px;
    height: 50px;
    border-radius: 12px;
  }

  .status-pill {
    min-height: 34px;
    padding: 0 10px;
    font-size: 8.5px;
  }

  .hero-content {
    padding: 18px 2px 4px;
    gap: 16px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
    margin-top: 14px;
  }

  .intro {
    margin-top: 16px;
    font-size: 14px;
  }

  .cta-group {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .mini-points {
    gap: 8px;
    margin-top: 18px;
  }

  .mini-points span {
    font-size: 10px;
    min-height: 31px;
  }

  .hero-visual {
    padding-top: 4px;
  }

  .phone-wrap {
    width: min(320px, 94%);
  }

  .phone-frame {
    transform: none;
    border-radius: 32px;
    padding: 8px;
  }

  .phone-screen {
    min-height: 430px;
    border-radius: 24px;
  }

  .phone-notch {
    height: 21px;
  }

  .phone-screen-top {
    padding: 20px 15px 0;
  }

  .screen-logo {
    width: 52px;
    height: 40px;
  }

  .screen-badge {
    font-size: 8px;
    padding: 7px 9px;
  }

  .hanger {
    width: 112px;
    height: 66px;
    top: 92px;
    border-width: 6px;
  }

  .hanger::before {
    width: 34px;
    height: 34px;
    border-width: 6px;
    left: 32px;
    top: -42px;
  }

  .hoodie {
    width: 180px;
    height: 210px;
    transform: translateY(26px);
  }

  .screen-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .screen-copy h2 {
    font-size: 28px;
  }

  .floating-card {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .floating-card-1 {
    top: 7%;
    left: -2px;
  }

  .floating-card-2 {
    right: -2px;
    bottom: 12%;
  }

  .notify-box {
    margin-top: 14px;
    border-radius: 20px;
    padding: 16px;
    gap: 14px;
  }

  .notify-copy h3 {
    font-size: 28px;
  }

  .notify-form {
    display: block;
    border-radius: 18px;
    padding: 8px;
  }

  .notify-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
  }

  .notify-form button {
    width: 100%;
    margin-top: 8px;
  }

  .footer {
    margin-top: 14px;
    display: block;
    text-align: center;
    font-size: 10px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-right {
    margin-top: 8px;
  }
}

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