:root {
  --ink: #151713;
  --muted: #65675f;
  --paper: #f4f0e8;
  --paper-deep: #eae3d7;
  --coral: #ff365c;
  --lime: #18d6dd;
  --violet: #7029ff;
  --orange: #ff9700;
  --line: rgba(21, 23, 19, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 42%, rgba(255, 255, 255, 0.75), transparent 32%),
    var(--paper);
  font-family: "DM Sans", sans-serif;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header,
footer {
  width: min(1400px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 52px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.header-link {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  transition: gap 180ms ease, color 180ms ease;
}

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

main {
  width: min(1400px, calc(100% - 96px));
  min-height: calc(100vh - 208px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  padding: 80px 0 90px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 104, 70, 0.14);
  animation: pulse 2.4s ease-in-out infinite;
}

h1 {
  max-width: 790px;
  margin: 0;
  font: 700 clamp(54px, 6.1vw, 98px)/0.98 "Manrope", sans-serif;
  letter-spacing: -0.065em;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--orange), var(--coral) 45%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 600px;
  margin: 34px 0 38px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

.waitlist-form { max-width: 610px; }

.input-wrap {
  display: flex;
  padding: 7px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(63, 50, 29, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-wrap:focus-within {
  border-color: rgba(255, 104, 70, 0.65);
  box-shadow: 0 18px 50px rgba(63, 50, 29, 0.1), 0 0 0 4px rgba(255, 104, 70, 0.08);
}

input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: 500 16px "DM Sans", sans-serif;
}

input::placeholder { color: #92938d; }

button {
  min-height: 55px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: 600 15px "DM Sans", sans-serif;
  transition: background 180ms ease, transform 180ms ease;
}

button:hover { background: var(--coral); transform: translateY(-1px); }
button:active { transform: translateY(0); }

.form-message {
  min-height: 20px;
  margin: 12px 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.form-message.success { color: #397117; }
.form-message.error { color: #b83b24; }

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

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: spin 38s linear infinite; }

.shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.shape-coral { width: 120px; height: 120px; top: 52px; right: 20px; background: linear-gradient(135deg, var(--orange), var(--coral), var(--violet)); }
.shape-lime { width: 82px; height: 82px; left: 15px; bottom: 72px; background: var(--lime); }

.preview-card {
  position: relative;
  z-index: 2;
  width: min(390px, 75vw);
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(68, 54, 31, 0.18);
  backdrop-filter: blur(15px);
  transform: rotate(3deg);
}

.preview-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 25px;
}

.image-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 11px;
  color: white;
  background: rgba(5, 5, 12, .72);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-top { display: flex; align-items: center; justify-content: space-between; }
.mini-logo i { width: 5px; border-radius: 5px; background: var(--ink); transform: rotate(22deg); }
.mini-logo i:nth-child(1) { height: 12px; }
.mini-logo i:nth-child(2) { height: 20px; background: var(--coral); }
.mini-logo i:nth-child(3) { height: 15px; }
.card-tag { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.card-prompt {
  height: 220px;
  margin-top: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 21px;
  background: var(--lime);
}

.card-prompt small { margin-bottom: 8px; color: rgba(21, 23, 19, .6); }
.card-prompt strong { font: 700 27px/1.15 "Manrope", sans-serif; letter-spacing: -.04em; }
.suggestions { display: flex; gap: 7px; margin: 18px 0; }
.suggestions span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 30px; font-size: 11px; }
.card-action { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.card-action b { width: 35px; height: 35px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(68, 54, 31, 0.15);
  animation: float 5s ease-in-out infinite;
}

.floating-card small,
.floating-card strong { display: block; }
.floating-card small { margin-bottom: 2px; color: var(--muted); font-size: 10px; }
.floating-card strong { font-size: 13px; }
.floating-top { top: 105px; left: 2%; }
.floating-bottom { right: -2%; bottom: 110px; animation-delay: -2.3s; }
.floating-icon,
.avatar { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; background: var(--coral); color: white; }
.avatar { background: var(--ink); border-radius: 50%; font-weight: 700; }

footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a:hover { color: var(--ink); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.reveal { opacity: 0; transform: translateY(16px); animation: reveal 700ms cubic-bezier(.2,.8,.2,1) forwards; }
.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 200ms; }
.reveal-delay-3 { animation-delay: 300ms; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255, 104, 70, 0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px) rotate(-1deg); } }

@media (max-width: 1000px) {
  .site-header, footer, main { width: min(100% - 48px, 760px); }
  main { grid-template-columns: 1fr; padding-top: 64px; gap: 45px; }
  .hero { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero-copy, .waitlist-form { margin-left: auto; margin-right: auto; }
  .visual { min-height: 540px; }
  .floating-top { left: 6%; }
  .floating-bottom { right: 4%; }
}

@media (max-width: 600px) {
  .site-header, footer, main { width: calc(100% - 32px); }
  .site-header { height: 86px; }
  main { padding: 48px 0 64px; }
  h1 { font-size: clamp(46px, 14vw, 67px); }
  .hero-copy { margin-top: 26px; }
  .input-wrap { display: block; padding: 6px; }
  input { width: 100%; height: 54px; text-align: center; }
  button { width: 100%; justify-content: center; }
  .visual { min-height: 460px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 300px; height: 300px; }
  .preview-card { width: min(330px, 86vw); min-height: 0; padding: 6px; border-radius: 25px; }
  .preview-card img { border-radius: 20px; }
  .card-prompt { height: 175px; }
  .card-prompt strong { font-size: 22px; }
  .suggestions span { padding: 7px 8px; }
  .floating-top { top: 55px; left: -2%; }
  .floating-bottom { right: -1%; bottom: 52px; }
  .shape-coral { width: 82px; height: 82px; right: -10px; }
  .shape-lime { width: 60px; height: 60px; }
  footer { padding: 25px 0; flex-direction: column; gap: 18px; text-align: center; }
}

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