:root {
  --ink: #111827;
  --muted: #64748b;
  --soft: #f7f7f4;
  --paper: #fffefa;
  --line: rgba(15, 23, 42, .10);
  --accent: #ff6b3d;
  --accent-deep: #e95126;
  --navy: #0f172a;
  --green: #c6f15b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(198, 241, 91, .15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 61, .10), transparent 30%),
    var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .5;
  pointer-events: none;
}

.ambient-one {
  width: 360px;
  height: 360px;
  right: -160px;
  top: 120px;
  background: rgba(255, 107, 61, .08);
}

.ambient-two {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 40px;
  background: rgba(198, 241, 91, .10);
}

.site-header {
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  gap: 3px;
  width: 24px;
  height: 24px;
  padding: 2px;
}

.brand-mark span {
  display: block;
  border-radius: 2px;
  background: var(--ink);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: var(--accent);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .12rem;
  transition: color .2s ease, border-color .2s ease;
}

.header-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero {
  position: relative;
  z-index: 2;
  padding: 6.25rem 0 4.25rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.4rem;
  padding: .5rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 61, .12);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 800;
}

.display-accent {
  display: block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.045em;
  color: var(--accent);
}

.hero-lead {
  max-width: 670px;
  margin: 2rem 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  color: var(--muted);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.7rem;
}

.category-row span {
  padding: .48rem .75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #475569;
  font-size: .78rem;
  font-weight: 700;
}

.notify-card {
  max-width: 665px;
  margin-top: 2.1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
}

.notify-title {
  margin: 0 0 .8rem;
  font-size: .92rem;
  font-weight: 800;
}

.input-wrap {
  display: flex;
  gap: .65rem;
}

.notify-form .form-control {
  min-height: 54px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  padding-left: 1rem;
  box-shadow: none;
  font-size: .92rem;
}

.notify-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(255, 107, 61, .10);
}

.btn-notify {
  min-width: 128px;
  border: 0;
  border-radius: 14px;
  padding: .85rem 1.2rem;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.btn-notify:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.form-note {
  margin-top: .65rem;
  color: #94a3b8;
  font-size: .75rem;
}

.form-note.success {
  color: #15803d;
  font-weight: 700;
}

.form-note.error {
  color: #b91c1c;
  font-weight: 700;
}

.launch-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin-top: 2rem;
}

.launch-meta div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.launch-meta strong,
.launch-meta span {
  display: block;
}

.launch-meta strong {
  font-size: .84rem;
  font-weight: 800;
}

.launch-meta span {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .76rem;
}

.preview-stage {
  position: relative;
  min-height: 570px;
  margin-left: 1.5rem;
}

.browser {
  position: absolute;
  width: min(420px, 92%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  box-shadow: 0 36px 80px rgba(15, 23, 42, .16);
}

.browser-back {
  right: 0;
  top: 0;
  transform: rotate(5deg);
  opacity: .9;
}

.browser-front {
  left: 0;
  top: 150px;
  transform: rotate(-4deg);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.browser-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mini-site {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 22px;
}

.mini-site-dark {
  background: #0f172a;
}

.mini-site-light {
  background: #f7f3eb;
}

.mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mini-logo {
  width: 42px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.mini-lines {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .4;
}

.mini-lines.short {
  width: 52px;
}

.mini-site-dark {
  color: #fff;
}

.mini-site-light {
  color: #0f172a;
}

.mini-copy {
  position: relative;
  z-index: 3;
  width: 58%;
  margin-top: 52px;
}

.mini-tag {
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 14px;
}

.mini-heading {
  height: 12px;
  border-radius: 999px;
  background: currentColor;
  margin-bottom: 8px;
}

.mini-heading.small {
  width: 72%;
}

.mini-text {
  width: 88%;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .38;
  margin-top: 18px;
}

.mini-text.short {
  width: 64%;
  margin-top: 7px;
}

.mini-button {
  width: 70px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent);
  margin-top: 22px;
}

.mini-photo {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 46%;
  height: 72%;
  border-radius: 80px 0 0 0;
}

.photo-one {
  background:
    linear-gradient(150deg, rgba(198, 241, 91, .95), rgba(255, 107, 61, .85)),
    #ddd;
}

.photo-two {
  background:
    linear-gradient(145deg, #f6c453, #ff7a52 48%, #6c63ff);
  border-radius: 120px 0 0 0;
}

.floating-card {
  position: absolute;
  right: 4px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: .78rem;
}

.floating-card span:not(.floating-icon) {
  color: var(--muted);
  font-size: .68rem;
  margin-top: .1rem;
}

.floating-icon {
  display: grid !important;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--green);
  color: var(--navy);
  font-size: 1rem;
}

.dot-grid {
  position: absolute;
  left: 22px;
  bottom: 12px;
  width: 100px;
  height: 100px;
  opacity: .28;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 12px 12px;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding: 1rem 0 2rem;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  color: #94a3b8;
  font-size: .75rem;
}

.footer-line p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 3.5rem;
  }

  .preview-stage {
    max-width: 560px;
    min-height: 500px;
    margin: 2rem auto 0;
  }

  .browser-back {
    right: 2%;
  }

  .browser-front {
    left: 2%;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 2.5rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .launch-meta {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .launch-meta div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .launch-meta span {
    margin-top: 0;
    text-align: right;
  }

  .input-wrap {
    flex-direction: column;
  }

  .btn-notify {
    width: 100%;
  }

  .preview-stage {
    min-height: 420px;
  }

  .browser {
    width: 88%;
  }

  .browser-front {
    top: 120px;
  }

  .mini-site {
    min-height: 230px;
  }

  .mini-copy {
    margin-top: 38px;
  }

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

@media (max-width: 575.98px) {
  .site-header .navbar {
    padding-top: 1.1rem !important;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-lead {
    margin-top: 1.45rem;
  }

  .notify-card {
    border-radius: 18px;
  }

  .category-row {
    gap: .45rem;
  }

  .category-row span {
    font-size: .72rem;
  }

  .preview-stage {
    min-height: 350px;
  }

  .browser-front {
    top: 92px;
  }

  .mini-site {
    min-height: 190px;
    padding: 16px;
  }

  .mini-copy {
    margin-top: 28px;
  }

  .floating-card {
    padding: .7rem .8rem;
  }

  .footer-line {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .browser-front {
    animation: floatFront 6s ease-in-out infinite;
  }

  .browser-back {
    animation: floatBack 7s ease-in-out infinite;
  }

  .floating-card {
    animation: floatCard 5s ease-in-out infinite;
  }

  @keyframes floatFront {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-8px); }
  }

  @keyframes floatBack {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(8px); }
  }

  @keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}
