:root {
  --bg: #0a0a0a;
  --surface: #171717;
  --surface-soft: #101214;
  --border: #2a2a2a;
  --text: #f3eee6;
  --muted: #a7a09a;
  --accent: #d4af37;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.10), transparent 18%),
    linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
}

a { color: inherit; }

.site-shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

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

.brand {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav a {
  text-decoration: none;
}

.pill-link,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.pill-link,
.primary-action {
  background: var(--accent);
  color: #0a0a0a;
}

.secondary-action {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(17, 17, 17, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.pricing-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.pricing-card--accent {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.pricing-card h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  font-weight: 600;
}

.price-line {
  margin: 18px 0 0;
  font-size: 42px;
  font-family: 'Playfair Display', Georgia, serif;
}

.price-line span {
  color: var(--muted);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-left: 6px;
}

.lander-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 48px;
  align-items: center;
  padding: 36px 0 56px;
}

.brand-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.monogram-mark-wrap,
.auth-mark-wrap {
  position: relative;
  border-radius: 14px;
  overflow: visible;
}

.monogram-mark,
.auth-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  border: 1.2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 5px 13px rgba(0, 0, 0, 0.34),
    0 1px 11px rgba(212, 175, 55, 0.16);
}

.monogram-mark-wrap {
  width: 68px;
  height: 68px;
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.25);
}

.wordmark,
.auth-title,
.lead-line {
  font-family: 'Playfair Display', Georgia, serif;
}

.wordmark {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.tagline,
.auth-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 10px;
  font-weight: 500;
}

.brand-copy {
  margin-top: 46px;
  max-width: 520px;
}

.lead-line {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 600;
}

.lead-line__row {
  display: block;
}

.lead-line__row--emphasis {
  font-style: italic;
}

.support-copy {
  margin: 18px 0 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.support-copy strong {
  color: var(--white);
  font-weight: 700;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  color: #d8dbe1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.plan-stack {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 460px;
}

.plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.plan-card--primary {
  border-color: rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.015));
}

.plan-card--pro {
  display: block;
}

.plan-label,
.plan-copy,
.plan-meta {
  margin: 0;
}

.plan-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.plan-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.plan-price {
  color: #d8dbe1;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-copy {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 30ch;
}

.plan-action,
.plan-meta {
  flex: 0 0 auto;
  font-size: 12px;
}

.plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
}

.plan-meta {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #d8dbe1;
  padding: 0;
  text-align: right;
  line-height: 1.4;
}

.auth-panel {
  display: flex;
  justify-content: flex-end;
}

.auth-card {
  position: relative;
  width: 100%;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(18, 18, 18, 0.99));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.auth-card__top {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
}

.auth-mark-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.25);
}

.auth-title {
  margin: 24px 0 0;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.google-button,
.email-button,
.auth-input {
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
}

.google-button {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
}

.google-button:hover,
.google-button:focus-visible {
  border-color: #3a3a3a;
}

.google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

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

.auth-divider em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
}

.email-form {
  display: block;
}

.auth-input {
  padding: 0 16px;
  color: var(--white);
  background: var(--surface);
  outline: none;
}

.auth-input::placeholder {
  color: var(--muted);
}

.auth-input:focus {
  border-color: var(--accent);
}

.auth-help,
.handoff-note {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.email-button {
  margin-top: 20px;
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.handoff-note {
  margin-top: 12px;
  font-size: 11px;
}

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

@media (max-width: 860px) {
  .lander-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding-top: 22px;
  }

  .brand-column {
    min-height: auto;
  }

  .auth-panel {
    justify-content: stretch;
  }

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

@media (max-width: 560px) {
  .lander-shell {
    width: min(100vw - 28px, 1120px);
    padding-top: 18px;
  }
  .brand-lockup {
    align-items: flex-start;
  }
  .monogram-mark {
    border-radius: 12px;
  }
  .monogram-mark-wrap {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }
  .auth-card {
    padding: 18px;
  }
  .auth-mark-wrap,
  .auth-mark {
    border-radius: 12px;
  }
  .auth-title {
    font-size: 44px;
  }
  .tagline,
  .auth-subtitle {
    letter-spacing: 0.28em;
  }
  .plan-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .plan-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .plan-action,
  .plan-meta {
    margin-top: 2px;
  }
  .plan-meta {
    max-width: none;
    text-align: left;
  }

  .site-shell {
    width: min(100vw - 28px, 1120px);
    padding-top: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .pricing-card {
    padding: 18px;
    border-radius: 20px;
  }
}