:root {
  --navy: #041b48;
  --navy-2: #071b43;
  --text: #051844;
  --muted: #5c6780;
  --orange: #ff8300;
  --purple: #8a00ff;
  --cyan: #02bbf4;
  --surface: #f7f9fd;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(17, 36, 76, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f7faff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  height: 110px;
  color: white;
  background:
    radial-gradient(circle at 82% -60%, rgba(67, 28, 143, .33), transparent 38%),
    linear-gradient(90deg, #04193f, #061c49 58%, #071641);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 55px;
}

.brand {
  width: min(500px, 100%);
}

.brand img {
  width: 500px;
  max-width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 68px;
  font-size: 17px;
  font-weight: 600;
}

.desktop-nav a {
  opacity: .96;
  transition: opacity .2s ease, transform .2s ease;
}

.desktop-nav a:hover {
  opacity: .72;
  transform: translateY(-1px);
}

.coming-btn {
  min-width: 265px;
  padding: 19px 31px;
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(100deg, #6e1bff, #8c00ff 65%, #7412f6);
  box-shadow: 0 10px 24px rgba(127, 24, 255, .22);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(159, 180, 255, .22), transparent 34%),
    radial-gradient(circle at 62% 14%, rgba(169, 88, 255, .12), transparent 21%),
    linear-gradient(115deg, #ffffff 0%, #f9fbfe 53%, #edf7ff 100%);
}

.hero-grid {
  min-height: 706px;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 58px 0 31px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
  color: #263657;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.eyebrow-line {
  width: 72px;
  height: 5px;
  border-radius: 20px;
  background: var(--orange);
}

h1 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: clamp(62px, 5.45vw, 92px);
  line-height: .98;
  letter-spacing: -5px;
  font-weight: 950;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.headline-dark {
  color: #041845;
}

.headline-gradient {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, #7617ff 0%, #8408ff 35%, #9a00f2 70%, #730bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.intro {
  max-width: 635px;
  margin: 8px 0 28px;
  color: #59647d;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 450;
}

.notify-form {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 0;
  padding: 5px;
  border: 1px solid #d9e2ee;
  border-radius: 20px;
  background: white;
  box-shadow: 0 6px 18px rgba(36, 52, 88, .10);
}

.email-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 25px;
}

.email-wrap svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: #65728d;
  stroke-width: 1.7;
}

.email-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #263657;
  background: transparent;
  font-size: 18px;
}

.email-wrap input::placeholder {
  color: #67718a;
  opacity: 1;
}

.notify-form button {
  min-height: 63px;
  border: 0;
  border-radius: 17px;
  color: white;
  background: linear-gradient(96deg, #ff8500, #ff7a00);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 128, 0, .22);
}

.notify-form button .arrow {
  padding-left: 14px;
  font-size: 27px;
  vertical-align: -2px;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 37px;
  color: #5c6880;
  font-size: 14px;
}

.privacy svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #51617d;
  stroke-width: 1.8;
}

.feature-row {
  width: min(710px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(125, 83, 255, .11), rgba(204, 213, 255, .18));
}

.feature-icon.blue {
  background: linear-gradient(145deg, rgba(31, 154, 255, .12), rgba(130, 222, 255, .20));
}

.feature-icon.orange {
  background: linear-gradient(145deg, rgba(255, 166, 77, .13), rgba(255, 218, 178, .25));
}

.feature-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #5944cc;
  stroke-width: 1.75;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.feature-icon.blue svg {
  fill: #245ecc;
  stroke: #245ecc;
}

.feature-icon.orange svg {
  stroke: #092c5f;
}

.feature h3 {
  margin: 0 0 3px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -.1px;
}

.feature p {
  margin: 0;
  color: #5c6880;
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 45% 50%, rgba(219, 226, 255, .4), transparent 45%);
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -8px;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
}

.product-strip {
  padding: 0 0 20px;
  background: linear-gradient(180deg, #f7faff 0%, #f9fbff 100%);
}

.products-card {
  min-height: 115px;
  display: grid;
  grid-template-columns: 220px repeat(5, minmax(170px, 1fr));
  align-items: center;
  gap: 18px;
  padding: 20px 35px;
  border-radius: 25px;
  background: linear-gradient(90deg, rgba(239, 245, 255, .86), rgba(246, 249, 255, .88));
}

.products-caption {
  position: relative;
  display: grid;
  transform: rotate(-4deg);
  padding-left: 20px;
  color: #051d4f;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 22px;
  line-height: 1.05;
}

.products-caption strong {
  font-size: 25px;
  font-weight: 500;
}

.products-caption i {
  display: block;
  width: 87px;
  height: 4px;
  margin: 12px 0 0 37px;
  border-radius: 6px;
  background: #ff8400;
  transform: rotate(-8deg);
}

.product-pill {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 17px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .93);
  color: #10254f;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(38, 61, 104, .05);
}

.product-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.product-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon.violet svg { stroke: #8e22f8; }
.product-icon.amber svg { stroke: #ff8a00; }
.product-icon.cyan svg { stroke: #169fe7; }
.product-icon.green svg { stroke: #29bb41; }
.product-icon.pink svg { stroke: #ef4b88; }

.site-footer {
  min-height: 69px;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(90deg, #041a45, #061c48 57%, #07163e);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 170px;
  align-items: center;
  gap: 40px;
}

.footer-inner p {
  margin: 0;
  font-size: 15px;
}

.footer-inner strong {
  color: #7a18ff;
}

.footer-tagline {
  font-weight: 800;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.socials a {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1240px) {
  .container {
    width: min(1120px, calc(100% - 48px));
  }

  .header-inner {
    grid-template-columns: minmax(240px, 1fr) auto auto;
    gap: 28px;
  }

  .desktop-nav {
    gap: 34px;
  }

  .coming-btn {
    min-width: 210px;
  }

  .hero-grid {
    grid-template-columns: 55% 45%;
  }

  h1 {
    font-size: clamp(56px, 6vw, 76px);
  }

  .intro {
    font-size: 19px;
  }

  .notify-form {
    grid-template-columns: 1fr 210px;
  }

  .feature-row {
    gap: 18px;
  }

  .feature {
    grid-template-columns: 72px 1fr;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }

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

  .products-caption {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 95px;
  }

  .header-inner {
    min-height: 95px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    width: 360px;
  }

  .coming-btn {
    min-width: auto;
    padding: 16px 24px;
    letter-spacing: 3px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 50px 0 20px;
  }

  h1 {
    font-size: clamp(50px, 11vw, 76px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual img {
    right: 50%;
    transform: translateX(50%);
    height: 560px;
  }

  .product-strip {
    padding-top: 20px;
  }

  .products-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-caption {
    grid-column: 1 / -1;
    grid-row: auto;
    width: max-content;
    margin: 0 auto 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-tagline {
    display: none;
  }
}

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

  .header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px 0 19px;
  }

  .brand {
    width: 100%;
    max-width: 370px;
  }

  .coming-btn {
    justify-self: start;
    padding: 13px 23px;
    font-size: 13px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .eyebrow {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .eyebrow-line {
    width: 48px;
    height: 4px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
    letter-spacing: -3px;
  }

  h1 span {
    white-space: normal;
  }

  .intro {
    font-size: 17px;
  }

  .notify-form {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 7px;
  }

  .email-wrap {
    min-height: 56px;
  }

  .notify-form button {
    min-height: 56px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 72px 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    height: 430px;
  }

  .products-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .products-caption {
    grid-column: auto;
  }

  .product-pill {
    justify-content: flex-start;
  }

  .site-footer {
    padding: 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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