:root {
  --bg1: #7b5cff;
  --bg2: #ff8a00;
  --bg3: #00d4ff;
  --bg4: #e52e71;
  --ink: #0b0b12;
  --card: rgba(255, 255, 255, 0.93);
  --muted: #5b5b70;
  --ring: #0b0b12;
  --success: #17c964;
  --warn: #ffb020;
  --error: #ff4d4f;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% 10%, #ffe4f1 0%, #fff 35%), linear-gradient(120deg, #f7f7ff 0%, #ffffff 100%);
}

/* Full-screen animated gradient halo */
.halo {
  position: fixed;
  inset: -20vmax;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
  background: conic-gradient(from 0deg, var(--bg1), var(--bg3), var(--bg2), var(--bg4), var(--bg1));
  animation: spin 24s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

@media (prefers-reduced-motion: reduce) {
  .halo {
    animation: none
  }
}

/* Floating colorful blobs */
.blob {
  position: absolute;
  width: 44vmin;
  height: 44vmin;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  mix-blend-mode: multiply;
}

.b1 {
  background: linear-gradient(135deg, #ffd23f, #ff8a00);
  left: -10vmin;
  top: 10vmin;
  animation: float1 18s ease-in-out infinite;
}

.b2 {
  background: linear-gradient(135deg, #00eaff, #7b5cff);
  right: -14vmin;
  top: 20vmin;
  animation: float2 22s ease-in-out infinite;
}

.b3 {
  background: linear-gradient(135deg, #e52e71, #ff8a00);
  left: 20vmin;
  bottom: -10vmin;
  animation: float3 26s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(4vmin)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5vmin)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6vmin)
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none
  }
}

/* Layout */
.wrap {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 48px);
}

.card {
  position: relative;
  max-width: 980px;
  width: 100%;
  background: var(--card);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .06)
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(24px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Fredoka, Inter, system-ui;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(22px, 2.2vw, 28px)
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
  background: radial-gradient(120% 120% at 30% 20%, #fff 0%, #ffe6f7 40%, #ffd7ef 60%, #ffc7e7 100%);
}

.logo svg {
  width: 24px;
  height: 24px
}

h1 {
  font-family: Fredoka, Inter, system-ui;
  font-size: clamp(32px, 5.6vw, 64px);
  line-height: 1.02;
  margin: 16px 0 12px;
}

.tagline {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  margin: 0 0 20px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 14px;
  background: #f3f3ff;
  border: 1px dashed #cfcffb
}

.badge i {
  font-style: normal;
  font-weight: 700
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 16px;
  border: 1.5px solid #e8e8ff;
  width: min(520px, 100%)
}

.input:focus-within {
  border-color: #b5b5ff;
  box-shadow: 0 0 0 4px #ebebff
}

input[type=email] {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 12px;
  font-size: 16px
}

button.primary {
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #7b5cff, #e52e71);
  color: #fff;
  box-shadow: 0 10px 20px rgba(123, 92, 255, .25);
}

button.primary:active {
  transform: translateY(1px)
}

a.primary-link {
  display: inline-block;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #7b5cff, #e52e71);
  color: #fff;
  box-shadow: 0 10px 20px rgba(123, 92, 255, .25);
}

a.primary-link:focus {
  outline: 2px solid #b5b5ff;
  outline-offset: 2px
}

.links {
  display: flex;
  gap: 14px;
  margin-top: 10px
}

.ghost {
  background: transparent;
  border: 1.5px dashed #e6e6fa;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #5841d8;
  font-weight: 600
}

.illus {
  position: relative;
  height: 100%;
}

.phone {
  width: min(440px, 95%);
  margin-inline: auto;
  aspect-ratio: 10/18;
  background: #fff;
  border-radius: 36px;
  border: 10px solid #0b0b12;
  box-shadow: 0 30px 60px rgba(15, 23, 42, .18), inset 0 0 0 8px #0b0b12;
  padding: 18px;
}

.screen {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fefeff, #f5f7ff);
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.pill {
  height: 10px;
  width: 80px;
  background: #0b0b12;
  border-radius: 10px
}

.feed {
  display: grid;
  gap: 12px;
  padding: 14px
}

.post {
  background: #fff;
  border: 1px solid #ebecff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b5cff, #00eaff)
}

.name {
  font-weight: 800;
  font-family: Fredoka
}

.handle {
  color: #8a8ab5;
  font-size: 12px
}

.bubble {
  grid-column: 1 / -1;
  margin-left: 48px;
  padding: 12px;
  border-radius: 14px;
  background: #f6f6ff;
  border: 1px dashed #dfdffb
}

.bar {
  height: 10px;
  background: linear-gradient(90deg, #7b5cff, #e52e71, #ff8a00);
  border-radius: 8px
}

footer {
  text-align: center;
  color: #787891;
  font-size: 13px;
  padding: 10px 0 24px
}

footer a {
  color: #5841d8;
  text-decoration: none;
  font-weight: 600
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
