:root {
  --background: #0c0c0f;
  --foreground: #f8f5ef;
  --card: #141417;
  --card-soft: rgba(20, 20, 23, 0.82);
  --muted: #222225;
  --muted-foreground: #aaa39d;
  --primary: #f25f51;
  --primary-ink: #100c0c;
  --border: rgba(255, 255, 255, 0.13);
  --border-soft: rgba(255, 255, 255, 0.08);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--foreground);
  background:
    radial-gradient(circle at 50% -12rem, rgba(242, 95, 81, 0.09), transparent 30rem),
    var(--background);
  font-family: var(--sans);
  font-feature-settings: "rlig" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 100% 28%, rgba(242, 95, 81, 0.025), transparent 26rem);
}

::selection {
  color: var(--foreground);
  background: rgba(242, 95, 81, 0.3);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
blockquote,
figure,
ol {
  margin: 0;
}

ol {
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.72rem 1rem;
  color: var(--primary-ink);
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(12, 12, 15, 0.74);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 12, 15, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  height: 4rem;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  border-radius: 0.75rem;
}

.brand__mark {
  width: 2rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__name {
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.brand--compact .brand__mark {
  width: 1.75rem;
  height: 2.2rem;
}

.brand--compact .brand__name {
  font-size: 1.125rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__links a {
  padding: 0.55rem 0.8rem;
  color: var(--muted-foreground);
  border-radius: 999px;
  font-size: 0.875rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav__links a:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}

.nav__links .nav__waitlist-link {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.7rem;
  color: var(--primary-ink);
  background: var(--primary);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(242, 95, 81, 0.15);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #f4776b;
  box-shadow: 0 10px 30px rgba(242, 95, 81, 0.24);
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.98);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button--small {
  min-height: 2.5rem;
  padding: 0.58rem 1rem;
  font-size: 0.875rem;
}

.button--outline {
  color: var(--foreground);
  background: rgba(12, 12, 15, 0.4);
  border-color: var(--border);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
}

.premium-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: calc(100svh - 4rem);
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(3rem, 5vw, 4rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-top: 1.25rem;
  font-size: clamp(3.4rem, 6vw, 5.15rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero__lede {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__note {
  margin-top: 1rem;
  color: #827c77;
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.hero-visual__glow {
  position: absolute;
  inset: -2rem;
  background: rgba(242, 95, 81, 0.06);
  border-radius: 3rem;
  filter: blur(48px);
}

.hero-visual__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.42fr);
  gap: 0.75rem;
}

.portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 15, 0.98), transparent 46%);
}

.portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}

.portrait figcaption span {
  display: block;
  color: var(--primary);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.portrait figcaption strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.portrait--primary {
  min-height: clamp(32rem, 52vw, 42rem);
  border-radius: 2rem;
}

.hero-visual__side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: clamp(4rem, 8vw, 6rem);
}

.portrait--secondary {
  min-height: clamp(12rem, 22vw, 16rem);
  border-radius: 1.5rem;
}

.portrait--secondary figcaption {
  padding: 0.85rem;
}

.portrait--secondary figcaption span {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.portrait--secondary figcaption strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.remembered-card {
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(20, 20, 23, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.remembered-card > p {
  color: var(--muted-foreground);
  font-size: 0.7rem;
  line-height: 1.4;
}

.remembered-card blockquote {
  margin-top: 0.55rem;
  font-size: clamp(0.74rem, 1.25vw, 0.93rem);
  line-height: 1.55;
}

.section {
  padding-block: clamp(5rem, 9vw, 7rem);
}

.section--tinted {
  border-block: 1px solid var(--border-soft);
  background: rgba(20, 20, 23, 0.26);
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.creation-copy h2,
.early-access h2 {
  margin-top: 1rem;
  font-size: clamp(2.55rem, 5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > p:last-child,
.creation-copy > p:not(.eyebrow),
.early-access__copy {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 1.08rem;
  line-height: 1.7;
}

.continuity-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  margin-top: 3rem;
}

.thought-card,
.promise-list,
.creator-card {
  border: 1px solid var(--border-soft);
  background: var(--background);
  border-radius: 1.5rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.thought-card {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.thought-card__glow {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(242, 95, 81, 0.08);
  border-radius: 50%;
  filter: blur(45px);
}

.thought-card__label {
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.message {
  position: relative;
  max-width: 28rem;
  margin-top: 2rem;
}

.message--you {
  margin-left: auto;
}

.message > p {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.message--you > p {
  text-align: right;
}

.message blockquote {
  padding: 1rem;
  border-radius: 1rem;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.65;
}

.message--you blockquote {
  border: 1px solid rgba(242, 95, 81, 0.25);
  border-bottom-right-radius: 0.3rem;
  background: rgba(242, 95, 81, 0.07);
}

.message--companion blockquote {
  border-bottom-left-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.065);
}

.return-moment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block: 1.75rem;
  color: var(--muted-foreground);
}

.return-moment span {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.return-moment p {
  flex: 0 0 auto;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.thought-card__foot {
  position: relative;
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.promise-list {
  overflow: hidden;
}

.promise-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--border-soft);
}

.promise-list li:last-child {
  border-bottom: 0;
}

.promise-list__number {
  color: rgba(242, 95, 81, 0.72);
  font-family: var(--display);
  font-size: 1.55rem;
}

.promise-list li p {
  color: var(--muted-foreground);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.promise-list h3 {
  margin-top: 0.5rem;
  font-size: clamp(1.45rem, 2.3vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.promise-list li div > span {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.creation-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.creation-copy > p:not(.eyebrow) {
  max-width: 32rem;
}

.creation-copy .button {
  margin-top: 2rem;
}

.creator-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  background: rgba(20, 20, 23, 0.72);
}

.creator-card__portrait {
  position: relative;
  min-height: 27rem;
  overflow: hidden;
}

.creator-card__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-card__portrait span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 42%, rgba(20, 20, 23, 0.98));
}

.creator-card__steps {
  position: relative;
  padding: clamp(2rem, 4vw, 2.5rem);
}

.creator-card__steps ol {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.creator-card__steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.creator-card__steps li > span {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(242, 95, 81, 0.42);
  border-radius: 50%;
  font-size: 0.73rem;
}

.creator-card__steps strong,
.creator-card__steps small {
  display: block;
}

.creator-card__steps strong {
  font-size: 0.9rem;
  font-weight: 650;
}

.creator-card__steps small {
  margin-top: 0.2rem;
  color: var(--muted-foreground);
  font-size: 0.84rem;
  line-height: 1.4;
}

.early-access {
  border-top: 1px solid var(--border-soft);
}

.early-access__inner {
  max-width: 56rem;
  text-align: center;
}

.early-access__logo {
  width: 9.5rem;
  height: auto;
  margin: 0 auto 2rem;
}

.early-access__copy {
  max-width: 39rem;
  margin-inline: auto;
}

.waitlist {
  display: flex;
  max-width: 35rem;
  justify-content: center;
  gap: 0.65rem;
  margin: 2rem auto 0;
}

.waitlist__input {
  min-width: 0;
  min-height: 3rem;
  flex: 1;
  padding: 0.72rem 1rem;
  color: var(--foreground);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  outline: 0;
  background: rgba(12, 12, 15, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist__input::placeholder {
  color: #756f6b;
}

.waitlist__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(242, 95, 81, 0.15);
}

.waitlist__input.is-invalid {
  border-color: #ff8580;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.14);
}

.waitlist__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist__note {
  min-height: 1.4em;
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.waitlist__note.is-success {
  color: #76dda9;
  font-weight: 600;
}

.waitlist__note.is-error {
  color: #ff9691;
}

.waitlist__legal {
  margin-top: 0.45rem;
  color: #77716c;
  font-size: 0.78rem;
}

.waitlist__legal a {
  color: var(--muted-foreground);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.waitlist__legal a:hover {
  color: var(--foreground);
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--border-soft);
  background: rgba(20, 20, 23, 0.2);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.site-footer .brand {
  color: var(--foreground);
}

.site-footer p {
  max-width: 30rem;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.site-footer small {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.site-footer nav a {
  padding-block: 0.2rem;
}

.site-footer nav a:hover {
  color: var(--foreground);
}

@media (max-width: 1023px) {
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero__copy {
    max-width: 44rem;
  }

  .hero-visual {
    max-width: 46rem;
  }

  .portrait--primary {
    min-height: clamp(32rem, 77vw, 42rem);
  }

  .portrait--secondary {
    min-height: clamp(13rem, 33vw, 17rem);
  }

  .continuity-grid {
    gap: 1.25rem;
  }

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

  .creation-copy {
    max-width: 44rem;
  }
}

@media (max-width: 767px) {
  .nav__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(20, 20, 23, 0.98);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.7rem;
  }

  .nav__links .nav__waitlist-link {
    display: block;
  }

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

  .creator-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .creator-card__portrait {
    min-height: 29rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 599px) {
  .container {
    width: min(100% - 1.5rem, 80rem);
  }

  h1 {
    font-size: clamp(3rem, 14.2vw, 4rem);
  }

  .hero__inner {
    padding-block: 3.5rem 4.5rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual__grid {
    grid-template-columns: minmax(0, 1fr) minmax(6.6rem, 0.46fr);
    gap: 0.55rem;
  }

  .hero-visual__side {
    gap: 0.55rem;
    padding-top: 3.5rem;
  }

  .portrait--primary {
    min-height: min(125vw, 35rem);
    border-radius: 1.5rem;
  }

  .portrait--secondary {
    min-height: 11.5rem;
    border-radius: 1.15rem;
  }

  .portrait figcaption {
    padding: 1rem;
  }

  .portrait figcaption strong {
    font-size: 1.7rem;
  }

  .portrait--secondary figcaption {
    padding: 0.6rem;
  }

  .portrait--secondary figcaption span {
    display: none;
  }

  .portrait--secondary figcaption strong {
    font-size: 1rem;
  }

  .remembered-card {
    padding: 0.8rem;
    border-radius: 1.15rem;
  }

  .remembered-card > p {
    font-size: 0.6rem;
  }

  .remembered-card blockquote {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .section-heading h2,
  .creation-copy h2,
  .early-access h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .thought-card,
  .promise-list {
    border-radius: 1.25rem;
  }

  .return-moment {
    gap: 0.5rem;
  }

  .return-moment p {
    font-size: 0.59rem;
  }

  .promise-list li {
    gap: 1rem;
  }

  .creator-card {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
  }

  .creator-card__portrait {
    min-height: 18rem;
  }

  .creator-card__portrait span {
    background: linear-gradient(to bottom, transparent 48%, rgba(20, 20, 23, 0.98));
  }

  .creator-card__steps {
    padding-top: 1rem;
  }

  .waitlist {
    align-items: stretch;
    flex-direction: column;
  }

  .waitlist__input {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
