:root {
  --cream: #faf0e7;
  --paper: #fffaf4;
  --paper-strong: #fffdf9;
  --ink: #17141e;
  --muted: #665f6d;
  --line: rgba(38, 30, 53, 0.14);
  --blueberry: #504880;
  --blueberry-deep: #393258;
  --blueberry-soft: #e3dff3;
  --plum: #8e6088;
  --peach: #eebd9f;
  --olive: #7d8460;
  --danger: #a92e2a;
  --ring: rgba(80, 72, 128, 0.3);
  --shadow: 0 22px 70px rgba(55, 42, 73, 0.14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 38px;
  --shell: 74rem;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(238, 189, 159, 0.28), transparent 24rem),
    var(--cream);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--blueberry-deep);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: 5rem;
  padding: 0.85rem max(1.25rem, calc((100vw - var(--shell)) / 2));
  background: rgba(250, 240, 231, 0.88);
  border-bottom: 1px solid rgba(38, 30, 53, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: block;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(57, 50, 88, 0.2);
}

.wordmark,
.mini-wordmark {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0.36em;
  line-height: 1;
}

.wordmark {
  font-size: 1.12rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2.2rem);
}

.nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--blueberry);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 1rem;
  flex: 0 0 auto;
}

.language-switch {
  gap: 0.25rem;
  color: #948c99;
}

.language-switch button {
  min-width: 2.1rem;
  min-height: 2.75rem;
  padding: 0;
  color: #8a828e;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  color: white;
  background: var(--blueberry-deep);
  border: 1px solid var(--blueberry-deep);
  border-radius: 999px;
  box-shadow: 0 12px 28px -14px var(--blueberry-deep);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blueberry);
  border-color: var(--blueberry);
  box-shadow: 0 16px 34px -14px var(--blueberry-deep);
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1.05rem;
  font-size: 0.82rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: calc(100svh - 5rem);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--blueberry);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7.2vw, 6.75rem);
  font-weight: 820;
  line-height: 0.94;
}

.hero-lede {
  max-width: 39rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.availability {
  margin: 1.4rem 0 0;
  color: #7d7580;
  font-size: 0.8rem;
}

.product-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 39rem;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 21rem);
  min-height: 38rem;
  padding: 1.1rem;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 20% 6%, rgba(238, 189, 159, 0.28), transparent 15rem),
    var(--blueberry-deep);
  border: 0.55rem solid #272238;
  border-radius: 3.1rem;
  box-shadow: 0 40px 90px rgba(41, 33, 57, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transform: rotate(2.5deg);
}

.phone-bar {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 5.2rem;
  height: 1.25rem;
  background: #272238;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.15rem 0.35rem 0;
}

.mini-wordmark {
  color: white;
  font-size: 0.77rem;
}

.status-pill {
  padding: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.profile-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 17rem;
  margin-top: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(250, 240, 231, 0.98), rgba(227, 223, 243, 0.9));
  border-radius: 2rem;
}

.profile-art::before,
.profile-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(1px);
}

.profile-art::before {
  width: 13rem;
  height: 13rem;
  background: rgba(238, 189, 159, 0.72);
  transform: translate(-3.6rem, 5.2rem);
}

.profile-art::after {
  width: 12rem;
  height: 12rem;
  background: rgba(142, 96, 136, 0.55);
  transform: translate(5.3rem, -5.1rem);
}

.profile-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(80, 72, 128, 0.3);
  border-radius: 50%;
}

.orbit-one {
  width: 12rem;
  height: 12rem;
}

.orbit-two {
  width: 8rem;
  height: 8rem;
}

.profile-heart {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  color: var(--blueberry);
  background: rgba(255, 253, 249, 0.82);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(57, 50, 88, 0.18);
  font-size: 2.4rem;
}

.preview-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 0.35rem 0.85rem;
}

.preview-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.visibility-list {
  display: grid;
  gap: 0.55rem;
}

.visibility-list > div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.85rem;
  font-size: 0.75rem;
}

.visibility-icon {
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  color: var(--cream);
}

.public-icon {
  color: #d8dea7;
}

.match-icon {
  color: var(--peach);
}

.private-icon {
  color: #cfc6ed;
}

.film-strip {
  position: absolute;
  z-index: 1;
  width: 6.4rem;
  height: 28rem;
  opacity: 0.45;
  border: 1px solid rgba(80, 72, 128, 0.34);
  border-radius: 1.2rem;
  background-image:
    linear-gradient(var(--cream), var(--cream)),
    repeating-linear-gradient(to bottom, var(--blueberry) 0 0.5rem, transparent 0.5rem 1.15rem);
  background-size: calc(100% - 1.8rem) 100%, 0.65rem 100%;
  background-position: center, left 0.34rem top;
  background-repeat: no-repeat;
}

.film-strip::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(to bottom, transparent 0 0.65rem, rgba(80, 72, 128, 0.12) 0.65rem 4.35rem);
}

.film-strip-left {
  top: 5rem;
  left: 0;
  transform: rotate(-10deg);
}

.film-strip-right {
  right: 0;
  bottom: 3.5rem;
  transform: rotate(11deg);
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: -0.8rem;
  margin: 0;
  color: #8b838d;
  font-size: 0.68rem;
}

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

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

.section-heading h2,
.company-layout h2,
.waitlist-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.02;
}

.section-heading > p:last-child,
.company-copy > p,
.waitlist-copy > p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2.8rem, 6vw, 5rem);
}

.feature-card {
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 45px rgba(55, 42, 73, 0.05);
}

.feature-card-accent {
  background: var(--blueberry);
  color: white;
  border-color: var(--blueberry);
  transform: translateY(-1.2rem);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--blueberry);
  background: var(--blueberry-soft);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card-accent .feature-number {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.feature-card h3 {
  margin: 5.5rem 0 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.feature-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.74);
}

.section-dark {
  color: white;
  background: var(--blueberry-deep);
}

.section-dark .eyebrow {
  color: var(--peach);
}

.section-heading-light {
  max-width: 52rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--blueberry-deep);
  background: var(--peach);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.steps h3 {
  margin: 0;
  font-size: 1.15rem;
}

.steps p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.safety-layout,
.company-layout,
.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.safety-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.safety-panel > div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.safety-panel span {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--blueberry);
  background: var(--blueberry-soft);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.safety-panel p {
  margin: 0;
  font-weight: 700;
}

.safety-panel > a {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--blueberry-deep);
  font-size: 0.86rem;
  font-weight: 750;
  text-underline-offset: 0.3em;
}

.section-company {
  background: #e3dff3;
}

.company-layout {
  align-items: start;
}

.company-copy {
  padding-top: 1.8rem;
}

.company-email {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  color: white;
  background: var(--blueberry-deep);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.company-email span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-email strong {
  font-size: 1rem;
}

.waitlist-layout {
  align-items: start;
}

.waitlist-copy {
  position: sticky;
  top: 8rem;
}

.waitlist-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.waitlist-facts span {
  padding: 0.5rem 0.75rem;
  color: var(--blueberry-deep);
  background: rgba(80, 72, 128, 0.09);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.form-card {
  min-height: 32rem;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.field label {
  color: #4d4750;
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.88rem 0.95rem;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid #d7d0d9;
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input::placeholder {
  color: #aaa2ac;
}

select {
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23665f6d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

select:invalid {
  color: #827a85;
}

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

.form-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.8rem;
}

.submit {
  width: 100%;
  min-height: 3.5rem;
  margin-top: 0.25rem;
  padding: 0.9rem 1.1rem;
  color: white;
  background: var(--blueberry-deep);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 28px -16px var(--blueberry-deep);
  cursor: pointer;
  font-weight: 750;
  transition: background 150ms ease, transform 150ms ease, opacity 150ms ease;
}

.submit:hover {
  background: var(--blueberry);
  transform: translateY(-1px);
}

.submit:disabled {
  opacity: 0.64;
  cursor: progress;
  transform: none;
}

.form-note {
  margin: 0;
  color: #7d7580;
  font-size: 0.7rem;
  text-align: center;
}

.form-note a {
  text-underline-offset: 0.2em;
}

.success {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  color: white;
  background: var(--blueberry);
  border-radius: 50%;
  font-size: 1.8rem;
}

.success-title {
  margin: 1.5rem 0 0;
  color: var(--blueberry-deep);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.success-text {
  max-width: 24rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.site-footer {
  color: white;
  background: #211d2c;
}

.footer-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 3.5rem;
}

.site-footer .wordmark {
  color: white;
}

.site-footer p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 22rem;
    gap: 2rem;
  }

  .feature-card h3 {
    margin-top: 3.5rem;
  }

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

  .feature-card,
  .feature-card-accent {
    min-height: 0;
    transform: none;
  }

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

  .safety-layout,
  .company-layout,
  .waitlist-layout {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .site-header {
    min-height: 4.5rem;
    gap: 0.75rem;
    padding-inline: 1rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .wordmark {
    font-size: 0.95rem;
    letter-spacing: 0.28em;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 4rem 5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .product-visual {
    min-height: 34rem;
  }

  .phone {
    width: 18.5rem;
    min-height: 33rem;
  }

  .profile-art {
    height: 14rem;
  }

  .film-strip {
    height: 23rem;
  }

  .film-strip-left {
    left: max(1.5rem, calc(50% - 12rem));
  }

  .film-strip-right {
    right: max(1.5rem, calc(50% - 12rem));
  }

  .visual-note {
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }

  .section-heading h2,
  .company-layout h2,
  .waitlist-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .safety-layout,
  .company-layout,
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

  .waitlist-copy {
    position: static;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 1rem 1.3rem;
  }
}

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

  .button:not(.button-small) {
    width: 100%;
  }

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
