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

:root {
  color-scheme: light;
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F6F6F4;
  --surface-tint: #F3F3F1;
  --border: #E7E7E4;
  --border-strong: #D9D9D5;
  --text: #0F0F0F;
  --text-secondary: #4A4A48;
  --muted: #6B6B68;
  --muted-2: #9A9A96;
  --accent: #0F0F0F;
  --accent-hover: #2A2A2A;
  --accent-soft: rgb(15 15 15 / 0.06);
  --accent-ring: rgb(15 15 15 / 0.18);
  --brand-yellow: oklch(0.82 0.14 92);
  --hero-glow: oklch(0.972 0.032 92);
  --hero-glow-soft: oklch(0.985 0.014 92);
  --ink: #0F0F0F;
  --ink-hover: #2A2A2A;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgb(15 15 15 / 0.05), 0 1px 1px rgb(15 15 15 / 0.03);
  --shadow: 0 1px 2px rgb(15 15 15 / 0.05), 0 8px 24px rgb(15 15 15 / 0.06);
  --shadow-lg: 0 2px 4px rgb(15 15 15 / 0.04), 0 24px 64px rgb(15 15 15 / 0.1);
  --container: 1080px;
  --container-narrow: 680px;
  --gutter: 32px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  min-height: 100%;
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-size: 16px;
  line-height: 1.6;
}

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

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.125rem;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

mark {
  background: none;
  color: var(--text);
  font-weight: 600;
}

s {
  color: var(--muted-2);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

strong {
  font-weight: 600;
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* buttons */
.button,
.product-card__primary-action,
.product-card__secondary-action,
.follow-along__link,
.ordinary-space-button,
.interest-registration__form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.button--primary,
.product-card__primary-action,
.ordinary-space-button--dark,
.interest-registration__form input[type="submit"] {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 1px 2px rgb(15 15 15 / 0.25), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.button--primary:hover,
.product-card__primary-action:hover,
.ordinary-space-button--dark:hover,
.interest-registration__form input[type="submit"]:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
}

.button--secondary,
.product-card__secondary-action,
.ordinary-space-button--outline,
.follow-along__link {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover,
.product-card__secondary-action:hover,
.ordinary-space-button--outline:hover,
.follow-along__link:hover {
  background: var(--surface-alt);
  border-color: #C9C9C4;
  color: var(--text);
}

.button--large,
.ordinary-space-button--large {
  padding: 13px 22px;
  font-size: 16px;
  border-radius: 12px;
}

/* header */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 255 255 / 0);
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header-wrap.is-stuck {
  background: rgb(255 255 255 / 0.82);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.6) inset, 0 8px 24px rgb(15 15 15 / 0.05);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
}

.site-header {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px var(--gutter);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 12px;
  border-radius: 10px;
  color: var(--text);
}

.site-logo__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgb(15 15 15 / 0.2), inset 0 0 0 1px rgb(255 255 255 / 0.08);
}

.site-logo__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}

.site-nav__toggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.site-nav__toggle:hover {
  background: var(--surface-alt);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 9px 14px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item.is-open > .site-nav__link {
  background: var(--surface-alt);
}

.site-nav__chevron {
  color: var(--muted-2);
  transition: transform 0.15s ease;
}

.site-nav__item.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 340px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.site-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.site-menu--compact {
  min-width: 200px;
}

.site-nav__item.is-open > .site-menu {
  display: block;
}

@media (hover: hover) and (min-width: 44.01rem) {
  .site-nav__item:hover > .site-menu {
    display: block;
  }

  .site-nav__item:hover > .site-nav__link {
    background: var(--surface-alt);
  }
}

.site-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

a.site-menu__item:hover {
  background: var(--surface-alt);
}

.site-menu__item--plain {
  padding: 10px 12px;
}

.site-menu__item--disabled {
  cursor: default;
  color: var(--muted);
}

.site-menu__item--disabled .site-menu__icon--app {
  opacity: 0.6;
}

.site-menu__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.site-menu__icon--app {
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1), 0 2px 6px rgb(15 15 15 / 0.18);
}

.site-menu__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.site-menu__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-menu__description {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.site-menu__badge {
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 2px 8px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

.site-menu__divider {
  height: 1px;
  margin: 8px 6px;
  background: var(--border);
}

/* hero */
.hero {
  position: relative;
  isolation: isolate;
  padding: 88px var(--gutter) 80px;
  text-align: center;
}

.hero::before,
.ordinary-space-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -88px;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(40% 58% at 50% 48%, var(--hero-glow) 0%, var(--hero-glow-soft) 40%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--brand-yellow);
  padding: 9px 14px 9px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgb(15 15 15 / 0.12), inset 0 1px 0 rgb(255 255 255 / 0.35);
}

.hero__announcement:hover {
  background: oklch(0.79 0.15 92);
  color: var(--ink);
}

.hero__announcement-arrow {
  margin-left: -2px;
  transition: transform 0.15s ease;
}

.hero__announcement:hover .hero__announcement-arrow {
  transform: translateX(2px);
}

.hero h1 {
  max-width: 16ch;
  margin: 26px auto 0;
}

.hero__subtitle {
  max-width: 34rem;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

/* sections */
.band {
  padding: 96px var(--gutter);
}

.band--alt {
  background: var(--surface-alt);
}

.band__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.band h2 {
  margin-bottom: 20px;
}

.band p {
  margin: 16px auto 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.why {
  padding: 80px var(--gutter);
}

.why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.why__quote {
  position: relative;
  width: 100%;
  margin: 36px 0 0;
  border: 1px solid oklch(0.93 0.05 92);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, oklch(0.985 0.018 92) 0%, oklch(0.975 0.03 92) 100%);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
}

.why__mark {
  display: block;
  margin: 0 auto 14px;
  color: var(--brand-yellow);
}

.why__original {
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
}

.why__translation {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.why__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 34rem;
  margin-top: 48px;
  text-align: left;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.why__copy mark,
.why__copy strong {
  color: var(--text);
}

/* products */
.products {
  padding: 80px var(--gutter);
}

.products__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.products__heading {
  max-width: 36rem;
  margin: 0 auto 48px;
  text-align: center;
}

.products__heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.product-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1), 0 4px 12px rgb(15 15 15 / 0.18);
}

.product-card h3 {
  font-size: 20px;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.product-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
  padding: 4px 10px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}

.product-card__badge--available {
  border-color: oklch(0.9 0.08 92);
  background: oklch(0.96 0.05 92);
  color: oklch(0.45 0.1 80);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.product-card__actions--form {
  width: 100%;
}

.product-card__actions--form .interest-registration--compact {
  max-width: none;
}

.product-card__actions--form .interest-registration__form {
  padding: 4px 4px 4px 14px;
  border-radius: 12px;
  box-shadow: none;
}

.product-card__actions--form .interest-registration__form input[type="submit"] {
  border-radius: 9px;
  padding: 9px 14px;
  font-size: 14px;
}

.product-card__actions--form .interest-registration__privacy {
  margin-top: 8px;
  font-size: 12.5px;
}

/* follow along */
.follow-along {
  padding: 80px var(--gutter) 96px;
  text-align: center;
}

.follow-along__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.follow-along p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.follow-along__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

/* interest registration */
.interest-registration__heading {
  margin-bottom: 8px;
  font-size: 22px;
}

.interest-registration > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15.5px;
}

.interest-registration__form {
  display: flex;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface);
  padding: 6px 6px 6px 16px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.interest-registration__form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring);
}

.interest-registration__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.interest-registration__form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 15px;
}

.interest-registration__form input[type="email"]::placeholder {
  color: var(--muted-2);
}

.interest-registration__form input[type="email"]:focus {
  outline: none;
}

.interest-registration__form input[type="submit"] {
  border-radius: 9px;
  padding: 10px 16px;
  font-size: 14.5px;
}

.interest-registration__privacy {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.interest-registration--compact {
  width: 100%;
  max-width: 26rem;
}

.interest-registration--compact .interest-registration__form input[type="submit"] {
  background: var(--ink);
  box-shadow: none;
}

.interest-registration--compact .interest-registration__form input[type="submit"]:hover {
  background: var(--ink-hover);
}

.interest-registration--compact .interest-registration__privacy {
  margin-top: 10px;
  font-size: 12.5px;
}

.interest-registration__success {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface-tint);
  padding: 14px 18px;
  color: var(--text);
  font-size: 14.5px;
}

/* Ordinary Space product page */
.ordinary-space-hero {
  position: relative;
  isolation: isolate;
  padding: 64px var(--gutter) 64px;
  text-align: center;
}

.ordinary-space-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}

.ordinary-space-app-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1), 0 12px 32px rgb(15 15 15 / 0.22);
}

.ordinary-space-app-name {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ordinary-space-hero h1 {
  margin: 12px auto 0;
  max-width: 18ch;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
}

.ordinary-space-hero__subtitle {
  max-width: 36rem;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.ordinary-space-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ordinary-space-download p {
  color: var(--muted-2);
  font-size: 13.5px;
}

.ordinary-space-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ordinary-space-notes li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.7);
  padding: 7px 12px 7px 10px;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
}

.ordinary-space-notes svg {
  color: var(--muted);
}

.ordinary-space-demo {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}

.ordinary-space-demo__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.ordinary-space-demo__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #000;
}

.ordinary-space-demo__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ordinary-space-demo > p {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 14px;
  text-align: center;
}

/* showcase rows */
.showcase {
  padding: 80px var(--gutter);
}

.showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 56px;
  max-width: var(--container);
  margin: 0 auto;
}

.showcase--reverse .showcase__inner {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.showcase--reverse .showcase__copy {
  order: 2;
}

.showcase__copy {
  max-width: 30rem;
}

.showcase__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.showcase__copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.showcase__list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.showcase__list-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showcase__list-copy strong {
  font-size: 15px;
}

.showcase__list-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.showcase__keys {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
}

.showcase__keys-sep {
  padding: 0 2px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
}

.showcase__note {
  margin-top: 24px;
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.5;
}

.showcase__copy .showcase__note {
  margin-top: 24px;
  font-size: 13.5px;
}

kbd {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border: 1px solid var(--border-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--surface);
  padding: 0 7px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
}

.showcase__media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.showcase__image,
.showcase__video {
  display: block;
  width: 100%;
  height: auto;
}

.showcase__placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
}

.showcase__placeholder svg {
  display: block;
}

.showcase__placeholder-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgb(15 15 15 / 0.7);
  padding: 6px 12px;
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

/* pricing */
.pricing {
  padding: 80px var(--gutter);
}

.pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.pricing__heading {
  max-width: 36rem;
  margin: 0 auto 40px;
  text-align: center;
}

.pricing__heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.pricing-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 999px;
  background: var(--brand-yellow);
  padding: 4px 10px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 18px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.pricing-card__amount {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__term {
  color: var(--muted);
  font-size: 15px;
}

.pricing-card__summary {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 15.5px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-card__features svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--text);
}

.pricing-card__form {
  margin-top: auto;
  padding-top: 28px;
}

.pricing-card__button {
  width: 100%;
  padding: 12px 20px;
  font-size: 15.5px;
}

.pricing__note {
  max-width: 36rem;
  margin: 28px auto 0;
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
}

.ordinary-space-story {
  padding: 80px var(--gutter);
}

.ordinary-space-story__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.ordinary-space-story__lead {
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  line-height: 1.4;
}

.ordinary-space-story__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 34rem;
  margin-top: 36px;
  text-align: left;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.ordinary-space-releases {
  padding: 80px var(--gutter) 96px;
  text-align: center;
}

.ordinary-space-releases__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 36rem;
  margin: 0 auto;
}

.ordinary-space-releases p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.ordinary-space-releases .button {
  margin-top: 30px;
}

/* contact page */
.support-hero {
  position: relative;
  isolation: isolate;
  padding: 88px var(--gutter) 120px;
  text-align: center;
}

.support-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -88px;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(40% 58% at 50% 48%, var(--hero-glow) 0%, var(--hero-glow-soft) 40%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

.support-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 36rem;
  margin: 0 auto;
}

.support-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.support-email {
  display: inline-flex;
  align-items: stretch;
  margin-top: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.support-email__address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.support-email__address svg {
  color: var(--muted);
}

.support-email__address:hover {
  background: var(--surface-alt);
}

.support-email__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-left: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 0 16px;
  color: var(--text-secondary);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.support-email__copy:hover {
  color: var(--text);
}

.support-email__copied-icon,
.support-email__copied-label {
  display: none;
}

.support-email__copy.is-copied .support-email__copy-icon,
.support-email__copy.is-copied .support-email__copy-label {
  display: none;
}

.support-email__copy.is-copied .support-email__copied-icon,
.support-email__copy.is-copied .support-email__copied-label {
  display: inline;
}

.support-email__copy.is-copied {
  color: var(--text);
}

.faq {
  padding: 80px var(--gutter) 96px;
}

.faq__inner {
  max-width: 46rem;
  margin: 0 auto;
}

.faq__heading {
  text-align: center;
}

.faq__heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq__item:hover,
.faq__item[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__chevron {
  flex: 0 0 auto;
  color: var(--muted-2);
  transition: transform 0.15s ease;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.faq__answer a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__contact {
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.faq__contact a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* closing call to action */
.closing {
  padding: 16px var(--gutter) 80px;
}

.closing__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--ink);
  padding: 88px var(--gutter);
  color: #FFFFFF;
  text-align: center;
}

.closing__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 60% at 50% 30%, oklch(0.82 0.14 92 / 0.32) 0%, transparent 70%),
    radial-gradient(30% 50% at 15% 85%, oklch(0.82 0.14 92 / 0.12) 0%, transparent 70%),
    radial-gradient(30% 50% at 85% 80%, oklch(0.82 0.14 92 / 0.12) 0%, transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

.closing__panel > * {
  position: relative;
}

.closing__icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #1C1C1C;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12), 0 12px 32px rgb(0 0 0 / 0.5);
}

.closing__panel h2 {
  max-width: 16ch;
  margin-top: 28px;
  color: #FFFFFF;
}

.closing__panel p {
  max-width: 30rem;
  margin-top: 16px;
  color: rgb(255 255 255 / 0.68);
  font-size: 17px;
}

.closing__button {
  margin-top: 32px;
  padding: 13px 22px;
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 16px;
}

.closing__button:hover {
  background: #EFEFED;
  color: var(--ink);
}

/* legal pages */
.legal-page {
  min-height: 100vh;
}

.legal-title {
  padding: 48px var(--gutter) 40px;
  text-align: center;
}

.legal-tabs {
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-alt);
  padding: 3px;
}

.legal-tabs__tab {
  border-radius: 8px;
  padding: 7px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.legal-tabs__tab:hover {
  color: var(--text);
}

.legal-tabs__tab--active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.legal-title h1 {
  margin: 28px 0 10px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.legal-title p {
  color: var(--muted-2);
  font-size: 14.5px;
}

.legal-document {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
}

.legal-document__card {
  display: flex;
  flex-direction: column;
  gap: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 48px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-document__lead {
  color: var(--text);
  font-size: 17px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-section h2 {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  margin-top: 6px;
  font-size: 16px;
}

.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
}

.legal-document__card a {
  color: var(--accent);
  font-weight: 500;
}

.legal-document__card a:hover {
  text-decoration: underline;
}

/* footer */
.site-footer {
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter);
  color: var(--muted);
  font-size: 13.5px;
}

.site-footer__brand,
.site-footer__links {
  display: flex;
  align-items: center;
}

.site-footer__brand {
  gap: 14px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.site-footer__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.site-footer__links {
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__links a:hover {
  color: var(--text);
}

.flash {
  position: fixed;
  z-index: 30;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 36rem);
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  font-size: 15px;
  text-align: center;
}

.flash--alert {
  border-color: #E0503C;
}

@media (max-width: 44rem) {
  :root {
    --gutter: 20px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .band,
  .why,
  .products,
  .follow-along,
  .pricing,
  .ordinary-space-story,
  .ordinary-space-releases {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .products__grid,
  .pricing__grid,
  .showcase__inner,
  .showcase--reverse .showcase__inner {
    grid-template-columns: 1fr;
  }

  .showcase {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .support-hero {
    padding-top: 48px;
  }

  .closing {
    padding-bottom: 56px;
  }

  .closing__panel {
    border-radius: var(--radius-lg);
    padding: 56px 24px;
  }

  .support-email {
    width: 100%;
    flex-direction: column;
  }

  .support-email__address {
    justify-content: center;
  }

  .support-email__address span {
    overflow-wrap: anywhere;
  }

  .support-email__copy {
    justify-content: center;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
  }

  .showcase__inner {
    gap: 28px;
  }

  .showcase--reverse .showcase__copy {
    order: 0;
  }


  .site-header {
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-logo__name {
    display: none;
  }

  .site-nav {
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav__toggle {
    display: grid;
  }

  .site-nav__menu {
    position: absolute;
    top: calc(100% - 4px);
    left: var(--gutter);
    right: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open .site-nav__menu {
    display: flex;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    padding: 12px 14px;
  }

  .site-menu {
    position: static;
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 4px 0 4px 8px;
    box-shadow: none;
  }

  .site-menu::before {
    display: none;
  }

  .ordinary-space-hero {
    padding-top: 40px;
  }

  .ordinary-space-demo {
    padding-bottom: 64px;
  }

  .ordinary-space-demo__frame {
    padding: 6px;
    border-radius: 12px;
  }

  .ordinary-space-demo__media {
    border-radius: 8px;
  }

  .legal-title {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .legal-document {
    padding-bottom: 64px;
  }

  .legal-document__card {
    gap: 30px;
    padding: 28px 22px;
  }

  .follow-along__actions,
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .interest-registration__form {
    flex-direction: column;
    padding: 6px;
  }

  .interest-registration__form input[type="email"] {
    padding: 10px 12px;
  }

  .product-card__actions {
    width: 100%;
  }

  .product-card__actions a {
    flex: 1;
  }
}
