/* ============================================================
   beta01 — Wippit SMB Beta Landing
   Brand: Wippit (Chili Red on Raisin Black)
   Typography: Elaine Sans (display) + DM Sans (body)
   ============================================================ */

/* ---- Fonts ------------------------------------------------- */
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Black.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-BlackItalic.ttf') format('truetype');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ---- Tokens ----------------------------------------------- */
:root {
  --red:    #DD2C10;
  --red-hi: #f33b1d;
  --black:  #1C1C21;
  --black-2:#161619;
  --line:   #2a2a30;
  --silver: #C9C7C8;
  --white:  #FFFFFF;

  --container:        1200px;
  --container-narrow: 820px;
  --section-pad:      120px;

  --font-display: 'Elaine Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--white); text-decoration: none; }

::selection { background: var(--red); color: var(--white); }

/* ---- Utilities -------------------------------------------- */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }
.accent           { color: var(--red); }
em                { font-style: italic; color: var(--silver); }

/* ---- Topbar ----------------------------------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(28, 28, 33, 0.78);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar .brand,
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-mark { height: 30px; width: auto; display: block; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 1.45rem; color: var(--white);
  letter-spacing: -0.01em; line-height: 1;
}
.footer-brand .brand-mark { height: 22px; opacity: 0.85; }
.footer-brand .brand-word { font-size: 1.1rem; opacity: 0.85; }
.topbar-cta {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  border: 1px solid var(--white); padding: 8px 18px; border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.topbar-cta:hover { background: var(--white); color: var(--black); }

/* ---- Buttons ---------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  font-size: 16px;
  transition: transform 0.1s ease-out, background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hi); transform: translateY(-1px); }
.btn-primary.big   { font-size: 18px; padding: 18px 38px; margin-top: 36px; }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--silver);
}
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.topbar-cta:focus-visible {
  outline: 2px solid var(--white); outline-offset: 4px;
}

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 28px 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,33,0.55) 0%, rgba(28,28,33,0.85) 65%, var(--black) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 960px; }

.hero h1.display {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(2.6rem, 7.2vw, 6rem);
  line-height: 0.98; letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.hero h1.display .line { display: block; }

.hero .lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--silver);
  margin: 0 auto 40px;
  line-height: 1.55; max-width: 700px;
}
.hero-note {
  margin-top: 24px;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--silver);
}

/* ---- Section frame ---------------------------------------- */
section { padding: var(--section-pad) 0; position: relative; }

.section-kicker {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--white);
  text-transform: none;
  text-align: center;
  margin: 0 0 18px;
}
.section-tagline {
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--silver);
  margin: 0 auto 56px;
  max-width: 640px;
  line-height: 1.5;
}

h2, h3, h4 {
  font-family: var(--font-display); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 24px;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-weight: 700; font-size: 1.25rem; margin: 0 0 10px; }

p { margin: 0 0 20px; color: rgba(255,255,255,0.92); }

/* ---- Split layout ----------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  width: 100%; height: auto;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-image { order: -1; }
}

/* ---- Story ------------------------------------------------ */
.story { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.story .punch {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.25rem; color: var(--white);
  border-left: 3px solid var(--red); padding-left: 18px;
  margin-top: 28px;
}

/* ---- Meet ------------------------------------------------- */
.meet { text-align: center; }
.meet .meet-h {
  font-style: italic; font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  margin-bottom: 40px;
}
.meet .meet-lead {
  font-size: 1.2rem; line-height: 1.55;
  max-width: 720px; margin: 0 auto 22px;
  color: rgba(255,255,255,0.92);
}
.meet .meet-lead em { color: var(--white); font-style: italic; }

/* ---- Wipps gallery ---------------------------------------- */
.wipps {
  background: var(--black-2);
  padding-top: 100px;
  padding-bottom: 140px;
}
.wipps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.wipp-card {
  background: var(--black); border: 1px solid var(--line);
  padding: 36px 32px; border-radius: 16px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.wipp-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(221, 44, 16, 0.12);
}
.wipp-card img { width: 56px; height: 56px; margin-bottom: 22px; }
.wipp-card h4 { color: var(--white); margin: 0 0 10px; }
.wipp-card p {
  font-size: 0.96rem; color: var(--silver); margin: 0; line-height: 1.55;
}
@media (max-width: 900px) {
  .wipps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wipps-grid { grid-template-columns: 1fr; }
}

/* ---- AI under the hood ------------------------------------ */
.ai .ai-line {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; line-height: 1.35;
  border-left: 3px solid var(--red); padding-left: 22px;
  margin: 24px 0 36px;
  color: var(--white);
}
.ai .ai-line em { color: var(--silver); font-style: italic; }

/* ---- Flywheel --------------------------------------------- */
.flywheel {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  text-align: center;
}
.flywheel-steps {
  list-style: none; padding: 0; margin: 40px auto 28px; max-width: 620px;
  counter-reset: fly;
}
.flywheel-steps li {
  counter-increment: fly;
  position: relative;
  padding: 22px 28px 22px 86px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  text-align: left;
  color: rgba(255,255,255,0.92);
}
.flywheel-steps li strong { color: var(--white); font-weight: 700; }
.flywheel-steps li::before {
  content: counter(fly);
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
}
.flywheel-steps li:not(:last-child)::after {
  content: '↓';
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  color: var(--red); font-size: 16px; font-weight: 700;
  background: var(--black);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  z-index: 1;
}
.flywheel-steps li .stat {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--silver);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.flywheel-steps li .stat .stat-cite {
  display: inline-block;
  margin-left: 4px;
  font-style: normal;
  font-size: 0.88em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px dotted rgba(201, 199, 200, 0.5);
  transition: color 0.15s, border-color 0.15s;
}
.flywheel-steps li .stat .stat-cite:hover {
  color: var(--white);
  border-color: var(--white);
}
.flywheel-note {
  text-align: center; font-style: italic; color: var(--silver);
  margin-top: 36px;
  margin-bottom: 10px;
}
.flywheel-reframe {
  text-align: center;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--white);
  max-width: 760px;
  margin: 36px auto 22px;
  line-height: 1.55;
}
.flywheel-reframe strong {
  color: var(--white);
  font-weight: 700;
  display: inline-block;
}
.flywheel-sources {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(201, 199, 200, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.flywheel-sources a {
  color: inherit;
  border-bottom: 1px dotted rgba(201, 199, 200, 0.35);
  transition: color 0.15s, border-color 0.15s;
}
.flywheel-sources a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ---- Beta ------------------------------------------------- */
.beta { background: var(--black-2); }
.beta-heading {
  text-align: center;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: 60px;
}
.beta-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.beta-card {
  background: var(--black); border: 1px solid var(--line);
  padding: 44px 40px; border-radius: 16px;
  display: flex; flex-direction: column;
}
.beta-card-kicker {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px;
  color: var(--red); margin-bottom: 14px;
  font-family: var(--font-body); font-weight: 700;
}
.beta-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.beta-card ul {
  list-style: none; padding: 0; margin: 0 0 36px; flex-grow: 1;
}
.beta-card li {
  padding: 10px 0 10px 30px; position: relative;
  color: var(--silver); font-size: 0.98rem; line-height: 1.55;
}
.beta-card li::before {
  content: '→'; position: absolute; left: 0; top: 10px;
  color: var(--red); font-weight: 700;
}
.beta-card .btn-primary,
.beta-card .btn-secondary { align-self: flex-start; }

@media (max-width: 860px) {
  .beta-cards { grid-template-columns: 1fr; }
}

/* ---- Closing ---------------------------------------------- */
.closing { text-align: center; padding: var(--section-pad) 0 140px; }
.closing-line {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  margin: 0;
}

/* ---- Footer ----------------------------------------------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
/* footer-brand styles inherited from .brand component above */
.footer-meta {
  display: flex; gap: 24px; align-items: center;
  color: var(--silver); font-size: 0.9rem;
}
.footer-meta a { color: var(--silver); transition: color 0.15s; }
.footer-meta a:hover { color: var(--white); }

/* ---- Small screens ---------------------------------------- */
@media (max-width: 600px) {
  :root { --section-pad: 80px; }
  body { font-size: 17px; }
  .topbar { padding: 14px 18px; }
  .topbar .brand img { height: 22px; }
  .topbar-cta { padding: 6px 14px; font-size: 0.88rem; }
  .hero { padding: 120px 20px 70px; }
  .container { padding: 0 20px; }
  .wipp-card { padding: 28px 24px; }
  .beta-card { padding: 32px 26px; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---- Command / inline code (shared; added 2026-05-30 for /setup) ---- */
pre.cmd {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem; line-height: 1.55;
  color: var(--white);
  overflow-x: auto;
  white-space: pre;
}
pre.cmd .c { color: var(--silver); }            /* comment line */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 6px; padding: 1px 6px;
  color: var(--white);
}

/* ---- Get-started steps + OS tabs (added 2026-05-30 for /setup) ---- */
/* One tight section holds both steps; gaps are controlled by .step-block,
   not by stacking two full-padded <section>s (which left dead space). */
.steps { padding: 80px 0; }
.step-block + .step-block { margin-top: 64px; }

.step-num {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--white); margin: 0 0 26px;
}
.step-num .n {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-style: normal;
}
.os-tabs { display: flex; gap: 10px; margin: 0 0 14px; }
.os-tab {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--silver); background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 18px; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.os-tab[aria-selected="true"] { border-color: var(--red); color: var(--white); }
.os-tab:hover { color: var(--white); }
.hide { display: none !important; }
.ask-card {
  background: var(--black); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 34px; margin: 0 0 22px;
}
.ask-card .say { font-size: 1.05rem; color: var(--silver); margin: 0 0 12px; }
.ask-card .quote {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.6rem; color: var(--red); margin: 0; line-height: 1.1;
}
.owner-note {
  background: var(--black-2); border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px; padding: 22px 26px;
  color: var(--silver); font-size: 1rem; line-height: 1.6;
}
.owner-note strong { color: var(--white); }
.owner-note a { color: var(--red); }

/* ---- Closing sub-line (added 2026-05-30 for /setup) ---- */
.closing-sub {
  color: var(--silver); font-size: 1rem; line-height: 1.5;
  max-width: 540px; margin: 22px auto 0;
}

/* ---- Step actions row (added 2026-05-30 for /setup step 1) ---- */
.step-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

/* ---- Topbar nav (added 2026-05-30) ---- */
.topbar-nav { display: flex; gap: 26px; align-items: center; }
.topbar-nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--silver); transition: color 0.15s;
}
.topbar-nav a:hover { color: var(--white); }
@media (max-width: 760px) { .topbar-nav { display: none; } }

/* ---- Docs page ---- */
.doc-head { padding: 140px 0 0; }
.doc-section { padding: 56px 0 0; }
.doc-section h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.doc-section p { color: var(--silver); }
.doc-section code { white-space: nowrap; }
.doc-lead { color: var(--silver); font-size: 1.15rem; max-width: 680px; }

/* ---- Ideas grid ---- */
.ideas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .ideas-grid { grid-template-columns: 1fr; } }
.idea-card {
  background: var(--black-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 32px;
}
.idea-card h4 { color: var(--white); font-size: 1.2rem; margin: 0 0 6px; }
.idea-card .who { color: var(--red); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; font-family: var(--font-body); margin: 0 0 14px; }
.idea-card .say {
  display: block; margin-top: 14px; padding: 14px 16px;
  background: var(--black); border: 1px solid var(--line); border-left: 3px solid var(--red);
  border-radius: 10px; color: var(--white); font-style: italic; line-height: 1.5;
}
.idea-card .say::before { content: "Tell Claude: "; font-style: normal; color: var(--silver); font-weight: 700; }

/* ---- Auth / form pages (signup, redeem) — Spring-served, link this ---- */
.auth-wrap { min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-start; justify-content: center; padding: 72px 24px; }
.auth-card { width: 100%; max-width: 470px; background: var(--black-2); border: 1px solid var(--line); border-radius: 16px; padding: 40px; }
.auth-card .brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.auth-card h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 6px; }
.auth-card .sub { color: var(--silver); font-size: 0.98rem; margin: 0 0 24px; }
.auth-card label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--white); margin: 18px 0 7px; }
.auth-card input { width: 100%; padding: 12px 14px; font-size: 1rem; font-family: var(--font-body); color: var(--white); background: var(--black); border: 1px solid var(--line); border-radius: 10px; }
.auth-card input::placeholder { color: #6b6b73; }
.auth-card input:focus { outline: none; border-color: var(--red); }
.auth-card .suffix-wrap { display: flex; align-items: stretch; }
.auth-card .suffix-wrap input { border-radius: 10px 0 0 10px; }
.auth-card .suffix { display: flex; align-items: center; padding: 0 14px; color: var(--silver); background: var(--black); border: 1px solid var(--line); border-left: 0; border-radius: 0 10px 10px 0; white-space: nowrap; font-size: 0.95rem; }
.auth-card .btn-primary { width: 100%; margin-top: 26px; padding: 14px; }
.auth-card button:disabled { opacity: 0.55; cursor: default; }
.auth-card .err { color: var(--red-hi); font-size: 0.9rem; margin: 14px 0 0; min-height: 1em; }
.auth-card .ok { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.4rem; color: var(--white); }
.auth-card .warn { background: rgba(221,44,16,0.08); border: 1px solid var(--line); border-left: 3px solid var(--red); color: var(--silver); font-size: 0.9rem; border-radius: 10px; padding: 12px 14px; margin: 14px 0; }
.auth-card dl { margin: 16px 0 0; }
.auth-card dt { font-size: 0.72rem; font-weight: 700; color: var(--silver); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 14px; }
.auth-card dd { margin: 4px 0 0; font-size: 0.95rem; word-break: break-all; color: var(--white); }
.auth-card .mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; background: var(--black); border: 1px solid var(--line); border-radius: 8px; padding: 7px 10px; }
.auth-card .links { margin-top: 26px; font-size: 0.9rem; color: var(--silver); }
.auth-card a, .auth-card .links a { color: var(--red); }

/* ---- Auth: textarea + hint (signup) ---- */
.auth-card textarea { width: 100%; padding: 12px 14px; font-size: 1rem; font-family: var(--font-body); color: var(--white); background: var(--black); border: 1px solid var(--line); border-radius: 10px; min-height: 110px; resize: vertical; }
.auth-card textarea::placeholder { color: #6b6b73; }
.auth-card textarea:focus { outline: none; border-color: var(--red); }
.auth-card .hint { color: var(--silver); font-weight: 400; font-size: 0.78rem; }
