/* ── Design tokens ── */
/* Palette inherits the frozen Orienting visual brand (see CLAUDE.md / design.md).
   Purple is the one owned color. */
:root {
  --color-bg: #F5F1E6;             /* cream paper */
  --color-primary: #6B4AA6;        /* purple ink — hero, owned color, CTAs */
  --color-primary-hover: #472C7E;  /* deep purple — emphasis, the "ting" highlight */
  --color-text: #2B2738;           /* title/body text */
  --color-text-muted: #8B84A0;     /* muted — taglines, secondary */
  --color-accent: #6B4AA6;         /* section kickers/labels read in purple */
  --color-surface: #FBF9F1;        /* lighter paper for cards */
  --color-dot: #CFC6AE;            /* dot-grid texture */

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'Menlo', monospace;
  --font-cjk: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;

  --max-width: 1080px;
  --spacing-section: 80px;
}

/* Traditional Chinese pages: swap in the CJK stack for readable rendering. */
:lang(zh-Hant) body,
html[lang="zh-Hant"] {
  --font-heading: 'Noto Sans TC', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Noto Sans TC', 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Announcement Bar ── */
.announcement-bar {
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.announcement-bar__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.announcement-bar__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0.8;
  padding: 4px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

.announcement-bar__close:hover {
  opacity: 1;
}

.announcement-bar.hidden {
  display: none;
}

/* ── Navigation ── */
.nav {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(30, 30, 46, 0.08);
  position: sticky;
  top: var(--nav-top, 0px);
  z-index: 99;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* The "ting" inside Orienting — her name, emphasized in deep purple. */
.wordmark__ting {
  color: var(--color-primary-hover);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid rgba(30, 30, 46, 0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ── Hero ── */
.hero {
  padding: var(--spacing-section) 0;
  text-align: left;
  scroll-margin-top: 120px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.hero__lead {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.3;
  color: var(--color-text);
}

.hero__bio-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--color-text);
}

.hero__subline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-text-muted);
  max-width: 560px;
}

.hero__subscribe {
  margin-top: 4px;
  width: 100%;
  max-width: 480px;
}

.hero__subscribe iframe {
  width: 100%;
  display: block;
}

/* ── Hero CTA ── */
.hero__cta {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.hero__cta:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Footer ── */
.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer__wordmark .wordmark__ting {
  color: #C6B6E6;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text);
  color: #fff;
  z-index: 200;
  padding: 16px 0;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__policy {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner__policy:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-banner__btn--decline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cookie-banner__btn--accept {
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

/* ── Subscribe gate ── */
.subscribe-gate__embed {
  display: none;
}

.subscribe-gate__blocked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(30, 30, 46, 0.12);
  border-radius: 8px;
  background: #fff;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.subscribe-gate__msg {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.subscribe-gate__link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
}

.subscribe-gate__link:hover {
  color: var(--color-primary-hover);
}

/* ── Newsletter feed section ── */
.newsletter-feed {
  padding: var(--spacing-section) 0;
}

.newsletter-feed__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.newsletter-feed__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.newsletter-feed__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-text);
  text-align: center;
}

.newsletter-feed__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 4px;
}

.newsletter-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.newsletter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 30, 46, 0.10);
}

.newsletter-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background-color: var(--color-surface);
}

.newsletter-card__image--placeholder {
  background: linear-gradient(135deg, var(--color-surface) 0%, #e8e0d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  font-size: 32px;
}

.newsletter-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  flex: 1;
}

.newsletter-card__date {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.35;
}

.newsletter-card__excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.newsletter-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 8px;
}

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

.newsletter-feed__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  margin-top: 4px;
  transition: color 0.2s;
}

.newsletter-feed__more:hover {
  color: var(--color-primary-hover);
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Announcement bar link ── */
.announcement-bar__link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* ── Nav CTA pill ── */
.nav__cta {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.nav__cta:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
}

/* ── Hero CTA button ── */
.hero__cta-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.hero__cta-btn:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero secondary (On the fence) ── */
.hero__secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hero .hero__secondary {
  align-items: flex-start;
  margin-top: 4px;
}

.hero__fence {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── Waitlist page: hero ── */
.waitlist-hero {
  padding: 64px 0 40px;
  text-align: center;
}

.waitlist-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.waitlist-hero__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.waitlist-hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  color: var(--color-text);
}

.waitlist-hero__subline {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-muted);
  max-width: 440px;
}

/* ── Waitlist page: form section ── */
.waitlist-form-section {
  padding: 0 0 80px;
}

.waitlist-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.form-required {
  color: var(--color-primary);
}

.form-input {
  border: 1.5px solid rgba(30, 30, 46, 0.18);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  padding: 12px 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 74, 166, 0.14);
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.form-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}

.form-option input[type="radio"] {
  accent-color: var(--color-primary);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-other-input {
  display: none;
  padding-left: 27px;
  margin-top: 6px;
}

.form-input--inline {
  width: 100%;
}

.form-field--checkbox .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-field--checkbox input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-submit {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  width: 100%;
}

.form-submit:hover:not(:disabled) {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: -8px;
}

.form-footnote a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-field-error,
.waitlist-form-error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 4px;
}

.waitlist-form-error:not(:empty) {
  background: #fdf0ee;
  border: 1px solid #f5c6c0;
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 560px;
  margin: 0 auto 8px;
}

/* ── Waitlist success state ── */
.waitlist-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist-success__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.waitlist-success__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text);
}

.waitlist-success__text {
  font-size: 16px;
  color: var(--color-text-muted);
}

.waitlist-success__link {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 8px;
}

/* ── Waitlist secondary (On the fence) ── */
.waitlist-secondary {
  background-color: var(--color-surface);
  padding: 60px 0;
}

.waitlist-secondary__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.waitlist-secondary__text {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 440px;
}

.waitlist-secondary__embed iframe {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* ── Thank you page ── */
.thankyou-section {
  padding: 80px 0 60px;
  text-align: center;
}

.thankyou__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thankyou__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.thankyou__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.thankyou__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--color-text);
}

.thankyou__subline {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.thankyou__home-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 8px;
  transition: background-color 0.2s, transform 0.15s;
}

.thankyou__home-btn:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Privacy page ── */
.privacy-section {
  padding: var(--spacing-section) 0;
}

.privacy__inner {
  max-width: 680px;
}

.privacy__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.privacy__headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.privacy__updated {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.privacy__body h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy__body p {
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.privacy__body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy__body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.privacy__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy__body a:hover {
  color: var(--color-primary-hover);
}

/* ── Events: formats section ── */
.events-formats {
  background-color: var(--color-surface);
  padding: var(--spacing-section) 0;
}

.events-formats__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.events-formats__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-text);
}

.events-format-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.events-format-card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.events-format-card__icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.events-format-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
}

.events-format-card__detail {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.events-formats__note {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* ── Events: ethos section ── */
.events-ethos {
  padding: var(--spacing-section) 0;
}

.events-ethos__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.events-ethos__body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.events-ethos__values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0;
}

.events-ethos__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--color-text);
}

/* ── Events: form section ── */
.events-form-section {
  background-color: var(--color-surface);
  padding: 64px 0 80px;
}

/* ── Events: success message ── */
.events-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}

.events-success__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-text);
  line-height: 1.5;
}

/* ── Textarea ── */
.form-textarea {
  resize: vertical;
  min-height: 88px;
}

/* ═══════════════════════════════════════════════════════════
   ORIENTING ADDITIONS — brand motif, bilingual toggle, offers, proof
   ═══════════════════════════════════════════════════════════ */

/* Kickers & CTAs carry the engineer's-notebook monospace signal. */
.newsletter-feed__label,
.waitlist-hero__label,
.privacy__label,
.offers__label,
.proof__label {
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
}

.hero__cta,
.hero__cta-btn,
.nav__cta,
.form-submit,
.offer-card__cta {
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

/* ── Language toggle (EN | 中文) ── */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.nav__lang a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.nav__lang .is-current {
  color: var(--color-primary-hover);
  font-weight: 700;
}

.nav__lang .sep {
  opacity: 0.4;
}

/* ── Hero wordmark treatment (big Orien·ting above the lead) ── */
.hero__wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0.01em;
  color: var(--color-text);
  line-height: 1;
}

.hero__wordmark .wordmark__ting {
  color: var(--color-primary);
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ── Offers block ── */
.offers {
  padding: var(--spacing-section) 0;
  border-top: 1px solid rgba(43, 39, 56, 0.08);
}

.offers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.offers__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.offers__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-text);
  text-align: center;
}

.offers__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid rgba(43, 39, 56, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43, 39, 56, 0.10);
}

.offer-card__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.offer-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--color-text);
  line-height: 1.25;
}

.offer-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.offer-card__cta {
  margin-top: 8px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
}

.offer-card__cta:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-2px);
}

.offer-card__cta--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.offer-card__cta--ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ── Proof block ── */
.proof {
  padding: var(--spacing-section) 0;
  background-color: var(--color-surface);
}

.proof__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.proof__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.proof__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-text);
}

.proof__subline {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.65;
}

.proof__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--color-bg);
  border: 1px solid rgba(43, 39, 56, 0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43, 39, 56, 0.10);
}

.proof-card__domain {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.proof-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-text);
}

.proof-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.proof-card__visit {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 8px;
}

/* ── Dot-grid texture (hero background signal) ── */
.dotgrid {
  background-image: radial-gradient(var(--color-dot) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
}

/* ── Rainbow band (small recurring footer signal) ── */
.rainbow-band {
  display: flex;
  height: 6px;
  width: 100%;
}

.rainbow-band span { flex: 1; }
.rainbow-band span:nth-child(1) { background: #E4572E; }
.rainbow-band span:nth-child(2) { background: #F3A712; }
.rainbow-band span:nth-child(3) { background: #3CAEA3; }
.rainbow-band span:nth-child(4) { background: #4A6FE3; }
.rainbow-band span:nth-child(5) { background: #6B4AA6; }

/* ── Mobile: offers + proof stack ── */
@media (max-width: 767px) {
  .offers__cards,
  .proof__cards {
    grid-template-columns: 1fr;
  }

  .nav__lang {
    padding: 10px 24px;
  }
}

/* ── Mobile: waitlist page ── */
@media (max-width: 767px) {
  .form-row--two {
    grid-template-columns: 1fr;
  }

  .events-format-cards {
    grid-template-columns: 1fr;
  }

  .nav__cta {
    display: block;
    text-align: center;
    margin: 4px 24px 8px;
    padding: 14px 20px;
    border-radius: 999px;
  }
}
