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

:root {
  --page-width: 1180px;
  --text: #0b0b0b;
  --muted: #686868;
  --line: #e7e7e7;
  --surface: #f4f4f4;
  --surface-dark: #171717;
  --white: #ffffff;
  --accent: #111111;
  --radius-large: 28px;
  --radius-medium: 16px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, #f4f4f4 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.container {
  width: min(var(--page-width), calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.page-glow--one {
  top: -120px;
  left: -130px;
  width: 340px;
  height: 340px;
  background: #e7e7e7;
}

.page-glow--two {
  right: -180px;
  bottom: 120px;
  width: 420px;
  height: 420px;
  background: #eeeeee;
}

/* Header */

.site-header {
  padding: 27px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1.6px;
}


.logo-image {
  display: inline-flex;
  align-items: center;
}

.logo-image img {
  display: block;
  width: auto;
  height: 46px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 40px;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #555;
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39b980;
  box-shadow: 0 0 0 5px rgba(57, 185, 128, 0.12);
  animation: pulse 2.1s infinite;
}

/* Hero */

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 74px;
  padding-top: 55px;
  padding-bottom: 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  letter-spacing: -0.055em;
  font-size: clamp(54px, 6.3vw, 92px);
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  color: #a0a0a0;
  font-weight: 500;
}

.hero-description {
  max-width: 595px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.notify-form {
  max-width: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 35px;
}

.notify-field {
  position: relative;
}

.notify-field svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #777;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.notify-field input {
  width: 100%;
  height: 56px;
  padding: 0 18px 0 49px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.9);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.notify-field input:focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.notify-form > button {
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-weight: 700;
}

.notify-form > button:hover {
  background: #242424;
}

.notify-form > button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.notify-form > button:hover svg {
  transform: translateX(3px);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: #5d5d5d;
  font-size: 11px;
}

.form-message.is-success {
  color: #21805a;
}

.form-message.is-error {
  color: #c33f3f;
}

.hero-meta {
  display: flex;
  gap: 37px;
  margin-top: 30px;
}

.meta-item {
  display: grid;
  gap: 4px;
}

.meta-item strong {
  font-size: 11px;
}

.meta-item span {
  color: #8a8a8a;
  font-size: 10px;
}

/* Visual */

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-frame {
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  transform: rotate(1.7deg);
  animation: float 6s ease-in-out infinite;
}

.visual-topbar {
  height: 51px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  border-bottom: 1px solid #e5e5e5;
}

.visual-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c9c9;
}

.visual-content {
  padding: 35px;
}

.visual-heading {
  display: grid;
  gap: 10px;
}

.skeleton {
  border-radius: 999px;
  background: #dedede;
}

.skeleton--title {
  width: 47%;
  height: 18px;
}

.skeleton--small {
  width: 29%;
  height: 9px;
}

.visual-search {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 12px;
  margin-top: 29px;
}

.skeleton--search {
  height: 39px;
  background: #eeeeee;
}

.visual-search-button {
  border-radius: 9px;
  background: #d5d5d5;
}

.visual-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 31px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 13px;
  background: #f2f2f2;
}

.visual-card--active {
  box-shadow: 0 0 0 2px #111;
}

.visual-card-image {
  aspect-ratio: 1 / 0.9;
  background:
    linear-gradient(135deg, #b8b8b8, #d2d2d2);
}

.visual-card-lines {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.visual-card-lines span {
  height: 7px;
  border-radius: 999px;
  background: #d6d6d6;
}

.visual-card-lines span:last-child {
  width: 60%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border: 1px solid #e1e1e1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(14px);
}

.floating-card--one {
  top: 41px;
  right: -19px;
}

.floating-card--two {
  left: -35px;
  bottom: 61px;
}

.floating-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.floating-card div {
  display: grid;
  gap: 3px;
}

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

.floating-card small {
  color: #777;
  font-size: 9px;
}

/* Countdown */

.countdown-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.countdown-inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.section-label {
  margin: 0 0 9px;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  font-weight: 700;
}

.countdown-inner h2 {
  margin: 0;
  font-size: 27px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.countdown-item {
  min-width: 82px;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.countdown-item strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  font-size: 37px;
  line-height: 1;
}

.countdown-item span {
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 8px;
  font-weight: 700;
}

.countdown-separator {
  padding-top: 3px;
  color: #b5b5b5;
  font-size: 28px;
}

/* Footer */

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #777;
  font-size: 10px;
}

.footer-inner p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-links a:hover {
  color: #111;
}

/* Animations */

@keyframes float {
  0%,
  100% {
    transform: rotate(1.7deg) translateY(0);
  }

  50% {
    transform: rotate(1.1deg) translateY(-9px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(57, 185, 128, 0.12);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(57, 185, 128, 0.04);
  }
}

/* Responsive */

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
  }

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

  .floating-card--one {
    right: -5px;
  }

  .floating-card--two {
    left: -10px;
  }
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-description,
  .notify-form {
    margin-inline: auto;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    width: min(670px, 100%);
    margin-inline: auto;
  }

  .countdown-inner {
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    text-align: center;
  }
}

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

  .site-header {
    padding-top: 18px;
  }

  .header-status {
    padding: 8px 10px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    gap: 42px;
    padding-top: 35px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-description {
    font-size: 13px;
  }

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

  .notify-form > button {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 15px;
  }

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

  .visual-content {
    padding: 23px;
  }

  .visual-products {
    gap: 8px;
  }

  .floating-card {
    padding: 11px 13px;
  }

  .floating-card--one {
    top: 6px;
  }

  .floating-card--two {
    bottom: 4px;
    left: 4px;
  }

  .countdown {
    gap: 7px;
  }

  .countdown-item {
    min-width: 59px;
  }

  .countdown-item strong {
    font-size: 28px;
  }

  .countdown-separator {
    font-size: 21px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 410px) {
  .logo {
    font-size: 24px;
  }

  .header-status {
    max-width: 145px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .visual-frame {
    border-radius: 20px;
  }

  .visual-topbar {
    height: 42px;
  }

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

  .visual-card:last-child {
    display: none;
  }

  .floating-card--one {
    right: 0;
  }

  .floating-card--two {
    display: none;
  }

  .countdown {
    gap: 3px;
  }

  .countdown-item {
    min-width: 50px;
  }

  .countdown-item strong {
    font-size: 23px;
  }

  .countdown-separator {
    font-size: 17px;
  }
}

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

@media (max-width: 620px) {
  .logo-image img {
    height: 38px;
  }

  .footer-brand {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  .footer-mark {
    width: 34px;
  }
}

@media (max-width: 410px) {
  .logo-image img {
    height: 33px;
  }
}

.social-links a {
  white-space: nowrap;
}
