:root {
  color-scheme: light;
  --ink: #241633;
  --muted: #7d7089;
  --soft: #fdfcff;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.82);
  --pink: #fb78a7;
  --rose: #ffd8e6;
  --purple: #7d4aa8;
  --lavender: #efe4ff;
  --blue: #96a8ff;
  --shadow: 0 24px 80px rgba(70, 32, 88, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 197, 219, 0.86), transparent 28rem),
    radial-gradient(circle at 86% 38%, rgba(219, 206, 255, 0.92), transparent 30rem),
    linear-gradient(135deg, #fff8fb 0%, #fdfcff 44%, #f5efff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 22, 51, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 22, 51, 0.028) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 72%, transparent 100%);
}

.ambient-orb {
  position: fixed;
  z-index: -1;
  width: 34vw;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-one {
  left: -8vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(251, 120, 167, 0.56), transparent 68%);
}

.orb-two {
  right: -10vw;
  top: 62vh;
  background: radial-gradient(circle, rgba(150, 168, 255, 0.48), transparent 68%);
  animation-delay: -7s;
}

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

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(125, 74, 168, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(70, 32, 88, 0.08);
  color: var(--purple);
  font-weight: 900;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fb78a7, #7d4aa8);
  color: #fff;
  box-shadow: 0 12px 36px rgba(251, 120, 167, 0.34);
  font-weight: 900;
}

.nav-link {
  padding: 14px 22px;
  border: 1px solid rgba(125, 74, 168, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(70, 32, 88, 0.08);
  color: var(--purple);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 42px;
  min-height: 700px;
}

.hero-copy {
  animation: riseIn 700ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 6.8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1::first-line {
  color: var(--ink);
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-waitlist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  min-height: 68px;
  margin-top: 34px;
  padding: 7px;
  border: 1px solid rgba(125, 74, 168, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 56px rgba(70, 32, 88, 0.12);
  backdrop-filter: blur(18px);
}

.hero-waitlist input {
  height: 54px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-waitlist button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff78a7, #f95f9c);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-note.is-success {
  color: var(--purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #ff78a7, #f95f9c);
  color: #fff;
  box-shadow: 0 16px 36px rgba(249, 95, 156, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(70, 32, 88, 0.1);
}

.button.full {
  width: 100%;
}

.phone-card,
.soft-card,
.culture-panel,
.waitlist,
.app-hero,
.preview-list div {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.phone-card {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  padding: 26px;
  animation: floatPhone 5.6s ease-in-out infinite;
}

.phone-card.real-preview {
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -24% -20% auto auto;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 120, 167, 0.44), transparent 68%);
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.phone-card.real-preview::before {
  inset: 12% 4% auto auto;
  width: 78%;
  height: 42%;
  z-index: -1;
}

.real-preview img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(36, 22, 51, 0.24));
}

.phone-frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  pointer-events: none;
}

.phone-frame span {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--ink);
}

.phone-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--purple);
  font-weight: 900;
}

.dot {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--ink);
}

.app-hero {
  position: relative;
  border-radius: 34px;
  padding: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(251, 120, 167, 0.35), transparent 13rem),
    radial-gradient(circle at 90% 84%, rgba(150, 168, 255, 0.34), transparent 13rem),
    rgba(255, 255, 255, 0.62);
}

.app-hero h2,
.culture-panel h2,
.waitlist h2 {
  margin: 22px 0 12px;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.app-hero p,
.soft-card p,
.culture-list p,
.waitlist p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.45;
}

.mini-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.mini-action-row span {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.mini-action-row span:first-child {
  background: var(--pink);
  color: #fff;
}

.preview-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.preview-list div {
  display: grid;
  gap: 4px;
  border-radius: 24px;
  padding: 18px 20px;
}

.preview-list strong {
  font-size: 1.08rem;
}

.preview-list span {
  color: var(--muted);
  font-weight: 650;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 28px;
}

.soft-card {
  border-radius: 34px;
  padding: 28px;
  min-height: 270px;
  animation: riseIn 700ms ease both;
}

.soft-card:nth-child(2) {
  margin-top: 44px;
  animation-delay: 110ms;
  background: rgba(227, 249, 246, 0.72);
}

.soft-card:nth-child(3) {
  margin-top: 88px;
  animation-delay: 220ms;
  background: rgba(255, 237, 223, 0.78);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--lavender);
  color: var(--purple);
  font-size: 1.6rem;
  font-weight: 900;
}

.soft-card h3 {
  margin: 28px 0 10px;
  font-size: 1.42rem;
  line-height: 1.05;
}

.statement-panel {
  display: grid;
  place-items: center;
  min-height: 320px;
  margin: 30px 0;
  text-align: center;
}

.statement-panel p {
  max-width: 1080px;
  color: rgba(36, 22, 51, 0.52);
  font-size: clamp(3.25rem, 9vw, 6.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 680px;
  margin: 12px 0 28px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 900;
}

.story-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
}

.story-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.45;
}

.story-visual {
  position: relative;
  min-height: 520px;
}

.mockup {
  position: absolute;
  width: min(330px, 58%);
  height: auto;
  filter: drop-shadow(0 34px 52px rgba(36, 22, 51, 0.2));
  animation: floatPhone 6s ease-in-out infinite;
}

.mockup-a {
  left: 2%;
  top: 44px;
  transform-origin: center;
}

.mockup-b {
  right: 0;
  top: 0;
  animation-delay: -2.6s;
  transform-origin: center;
}

.mini-phone {
  position: absolute;
  width: min(260px, 48%);
  min-height: 440px;
  padding: 28px 22px;
  border: 10px solid #111;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 36%, rgba(125, 74, 168, 0.36), transparent 7rem),
    linear-gradient(180deg, #fff 0%, #f8f4ff 100%);
  box-shadow: 0 34px 70px rgba(36, 22, 51, 0.18);
  animation: floatPhone 6s ease-in-out infinite;
}

.mini-phone-a {
  left: 4%;
  top: 42px;
}

.mini-phone-b {
  right: 6%;
  top: 0;
  min-height: 500px;
  animation-delay: -2.8s;
}

.mini-status {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-phone h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.mood-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.mood-row span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.mini-card,
.mini-thread {
  margin-top: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.mini-card.pink {
  background: #ffe2ed;
  color: var(--purple);
}

.mini-thread {
  color: var(--muted);
  font-weight: 800;
}

.culture-panel,
.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  border-radius: 42px;
  padding: clamp(28px, 5vw, 56px);
}

.culture-list {
  display: grid;
  gap: 12px;
}

.culture-list p {
  margin: 0;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.waitlist {
  margin-top: 22px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 230, 0.9), transparent 18rem),
    radial-gradient(circle at 92% 80%, rgba(239, 228, 255, 0.9), transparent 20rem),
    rgba(255, 255, 255, 0.72);
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--purple);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(125, 74, 168, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: 0;
  box-shadow: 0 10px 24px rgba(70, 32, 88, 0.06);
}

input,
select {
  height: 58px;
  padding: 0 18px;
}

textarea {
  min-height: 112px;
  padding: 18px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(251, 120, 167, 0.68);
  box-shadow: 0 0 0 5px rgba(251, 120, 167, 0.14);
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 0.94rem;
}

.form-note.is-success {
  color: var(--purple);
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 560px);
    padding-top: 18px;
  }

  .nav {
    margin-bottom: 28px;
  }

  .hero,
  .culture-panel,
  .waitlist,
  .product-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .soft-card,
  .soft-card:nth-child(2),
  .soft-card:nth-child(3) {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4.4rem);
  }

  .phone-card {
    border-radius: 36px;
    padding: 18px;
  }

  .phone-card.real-preview {
    padding: 0;
  }

  .real-preview img {
    width: min(92%, 390px);
  }

  .statement-panel {
    min-height: 220px;
  }

  .product-story {
    min-height: auto;
  }

  .story-visual {
    min-height: 520px;
  }

  .mockup {
    width: min(310px, 56%);
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-actions {
    align-items: flex-end;
    flex-direction: column;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .nav-link {
    padding-inline: 18px;
  }

  .hero-waitlist {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .hero-waitlist button,
  .button {
    width: 100%;
  }

  .mini-action-row {
    grid-template-columns: 1fr;
  }

  .statement-panel p {
    color: rgba(36, 22, 51, 0.58);
  }

  .story-visual {
    min-height: 560px;
  }

  .mockup {
    width: 68%;
  }

  .mockup-a {
    left: 0;
  }

  .mockup-b {
    right: 0;
    top: 78px;
  }
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-16px) rotate(0.4deg);
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.55;
    transform: scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(34px, -28px, 0) scale(1.08);
  }
}
