:root {
  --bg: #213832;
  --bg-soft: #2c4640;
  --cream: #d8d1b9;
  --cream-soft: #eee9d6;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.28);
  --button: rgba(255, 255, 255, 0.11);
  --button-hover: rgba(255, 255, 255, 0.18);
  --accent: #9dffba;
  --accent-soft: rgba(157, 255, 186, 0.32);
  --shadow: rgba(32, 32, 32, 0.22);
}

* {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: var(--accent-soft);
}

::selection {
  color: #172d27;
  background: var(--accent);
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at -12% 50%, var(--cream) 0 24rem, transparent 24.15rem),
    radial-gradient(circle at 112% 46%, var(--cream-soft) 0 25rem, transparent 25.15rem),
    radial-gradient(circle at -12% 50%, rgba(23, 45, 39, 0.55) 0 26.5rem, transparent 26.65rem),
    radial-gradient(circle at 112% 46%, rgba(23, 45, 39, 0.55) 0 27.5rem, transparent 27.65rem),
    linear-gradient(35deg, transparent 43%, rgba(255, 255, 255, 0.035) 43% 57%, transparent 57%),
    linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.025) 38% 49%, transparent 49%),
    linear-gradient(145deg, var(--bg-soft), var(--bg));
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(255, 255, 255, 0.035) 49.7% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(255, 255, 255, 0.025) 49.7% 50%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent 0 8.5rem,
      rgba(255, 255, 255, 0.018) 8.5rem 8.65rem
    );
  opacity: 0.6;
}

.cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 31rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.logo {
  width: clamp(11rem, 44vw, 30rem);
  height: auto;
  object-fit: contain;
  margin-top: -3.5rem;
  margin-bottom: -2.35rem;
  filter: drop-shadow(0 1rem 1.5rem var(--shadow));
}

.eyebrow {
  margin: 0 0 0.3rem;
  font-family: "Satoshi", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Clash Display", "Satoshi", "Inter", Arial, sans-serif;
  font-size: clamp(3.4rem, 18vw, 6rem);
  line-height: 0.92;
  font-weight: 700;
}

.nowrap {
  white-space: nowrap;
}

.launch {
  margin-top: 2rem;
  font-family: "Satoshi", "Inter", Arial, sans-serif;
}

.launch p,
.details {
  margin: 0;
  color: var(--muted);
}

.launch p {
  font-size: 1.05rem;
  font-weight: 500;
}

.launch time {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.offer {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Clash Display", "Satoshi", "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.offer span {
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Satoshi", "Inter", Arial, sans-serif;
}

.countdown span {
  min-width: 3rem;
  display: grid;
  gap: 0.15rem;
  color: var(--text);
}

.countdown strong {
  font-family: "Clash Display", "Satoshi", "Inter", Arial, sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.45rem);
  line-height: 0.9;
}

.countdown small {
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.details {
  margin-top: 0.85rem;
  max-width: 18rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-links {
  width: 100%;
  margin-top: 2.2rem;
  display: grid;
  gap: 0.8rem;
}

.service-button {
  color: inherit;
  min-height: 3.65rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--button);
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-button:hover,
.service-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--button-hover);
  outline: none;
}

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

.service-button.is-pressed {
  transform: scale(0.985);
}

.service-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-page .logo {
  align-self: center;
  margin-top: -6rem;
  margin-bottom: -1rem;
}

.back-link {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
  outline: none;
  transform: translateX(-2px);
}

.service-page h1 {
  max-width: 10ch;
  margin-top: 0.35rem;
  font-size: clamp(3rem, 12vw, 5.5rem);
}

.service-copy {
  max-width: 34rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-family: "Satoshi", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.service-points {
  width: 100%;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.service-points li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--button);
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
}

.service-cta {
  width: 100%;
  margin-top: 1.5rem;
}

.social {
  width: 100%;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 0.85rem;
  list-style: none;
}

.social li {
  position: relative;
  flex-basis: 3.25rem;
}

.social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 100%;
  color: var(--text);
  font-size: 1.25rem;
  outline: none;
  overflow: hidden;
  text-decoration: none;
  transition:
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.social a > i {
  position: relative;
  z-index: 1;
}

.social a::after {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  background: var(--bg, #ffffff);
  pointer-events: none;
  transition: inset 0.3s ease-in-out;
}

.social a:hover,
.social a:focus-visible {
  border-color: transparent;
  color: #ffffff;
}

.social li[data-tooltip="Email"] a:hover,
.social li[data-tooltip="Email"] a:focus-visible {
  color: #202020;
}

.social a:hover::after,
.social a:focus-visible::after {
  inset-block-start: 0;
}

@media (max-width: 1024px) {
  body {
    background:
      linear-gradient(35deg, transparent 43%, rgba(255, 255, 255, 0.035) 43% 57%, transparent 57%),
      linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.025) 38% 49%, transparent 49%),
      linear-gradient(145deg, var(--bg-soft), var(--bg));
  }

  .page-shell {
    padding: 0.75rem 1rem;
  }

  .logo {
    width: clamp(14rem, 63vw, 23rem);
    margin-top: -2.8rem;
    margin-bottom: -2rem;
  }

  .offer {
    gap: 0.45rem;
    font-size: 1.55rem;
  }

  .countdown {
    gap: 0.45rem;
  }

  .countdown span {
    min-width: 2.35rem;
  }

  .service-button {
    font-size: 0.9rem;
  }

  .social {
    margin-top: 1.6rem;
    gap: 0.7rem;
  }

  .social li {
    flex-basis: 3rem;
  }
}
