:root {
  color: #f4f0e5;
  background: #183a2c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; min-height: 100vh; }
button, input { font: inherit; }
button { cursor: pointer; }

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 520px);
  gap: clamp(48px, 8vw, 132px);
  align-items: center;
  padding: clamp(36px, 6vw, 88px);
  background:
    radial-gradient(circle at 15% 85%, rgba(137, 173, 111, .2), transparent 33%),
    #183a2c;
}

.intro { min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; }
.brand { display: inline-flex; align-items: baseline; gap: 10px; font-family: Georgia, serif; font-size: 26px; }
.brand__number { font-size: 52px; line-height: .8; color: #b9d29d; }
.intro__copy { max-width: 680px; }
.eyebrow { margin: 0 0 16px; color: #b9d29d; font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, serif; font-weight: 500; letter-spacing: -.03em; }
h1 { max-width: 760px; margin: 0 0 24px; font-size: clamp(48px, 6vw, 82px); line-height: .98; }
h2 { margin: 0 0 12px; color: #17382b; font-size: 38px; }
.intro__copy > p:last-child { max-width: 540px; margin: 0; color: #d9dece; font-size: 19px; line-height: 1.6; }
.status { display: flex; align-items: center; gap: 10px; margin: 0; color: #d9dece; font-size: 14px; }
.status span { width: 9px; height: 9px; border-radius: 50%; background: #b9d29d; box-shadow: 0 0 0 5px rgba(185, 210, 157, .13); }

.auth-card { padding: clamp(28px, 4vw, 48px); border-radius: 28px; background: #f6f2e8; color: #17382b; box-shadow: 0 28px 70px rgba(0, 0, 0, .2); }
.muted { margin: 0 0 26px; color: #647067; line-height: 1.55; }
.tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 24px; padding: 4px; border-radius: 14px; background: #e8e8dc; }
.tab { min-height: 42px; border: 0; border-radius: 11px; color: #536258; background: transparent; }
.tab.is-active { color: #17382b; background: #fff; box-shadow: 0 2px 8px rgba(23, 56, 43, .08); }
.primary, .secondary, .google-button { width: 100%; min-height: 52px; padding: 0 18px; border-radius: 13px; font-weight: 700; }
.primary { margin-top: 4px; border: 0; color: #fff; background: #24553f; }
.primary:hover { background: #1d4935; }
.primary:disabled { cursor: wait; opacity: .65; }
.primary--link { display: flex; align-items: center; justify-content: center; margin: 0 0 12px; text-decoration: none; }
.secondary { border: 1px solid #aeb9ae; color: #24553f; background: transparent; }
.google-button { display: flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid #c9cec3; color: #17382b; background: #fff; }
.google-button span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: #24553f; font-family: Georgia, serif; }
.google-button:hover { border-color: #75907e; background: #fbfcf8; }
.google-button:disabled { cursor: wait; opacity: .65; }
.message { min-height: 22px; margin: 18px 0 0; color: #a53d32; font-size: 14px; line-height: 1.45; }
.message.is-success { color: #2f6a4b; }
.coming-soon { display: grid; gap: 8px; margin: 28px 0; padding: 20px; border-radius: 16px; background: #e9eee5; }
.coming-soon span { color: #647067; line-height: 1.5; }

@media (max-width: 760px) {
  .page { display: block; min-height: 100svh; padding: 24px 18px 34px; }
  .intro { min-height: auto; gap: 42px; padding: 8px 4px 38px; }
  .brand__number { font-size: 44px; }
  .brand { font-size: 23px; }
  h1 { font-size: 43px; }
  .intro__copy > p:last-child { font-size: 17px; }
  .status { display: none; }
  .auth-card { padding: 26px 20px; border-radius: 22px; }
  h2 { font-size: 32px; }
}
