/* Movix pro site — same palette as movixbiz.com (style.css) */
:root {
  --bg: #FFFFFF; --bg2: #F7F8FA; --bg3: #EEF0F4;
  --txt: #1A1A2E; --txt2: #5A5A72; --txt3: #8A8AA0;
  --accent: #EA580C; --accent-h: #C2410C; --teal: #0D9488;
  --border: #E2E4E9; --err: #DC2626; --ok: #0D9488;
  --radius: 12px; --shadow: 0 2px 12px rgba(0,0,0,.06);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--txt); background: var(--bg2); line-height: 1.6; font-size: 16px; min-height: 100vh;
  display: flex; flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }
button { font-family: inherit; }

.topbar { background: var(--bg); border-bottom: 1px solid var(--border); }
.topbar-in { max-width: 1040px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--txt); font-weight: 700; font-size: 17px; }
.brand:hover { color: var(--txt); }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.who { font-size: 13px; color: var(--txt2); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.linkbtn { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 13px; padding: 0; }

main { flex: 1; width: 100%; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 40px 20px 56px; }
.center { text-align: center; }
h1 { font-size: 34px; line-height: 1.2; letter-spacing: -.01em; }
h2 { font-size: 22px; line-height: 1.3; }
.lead { color: var(--txt2); margin-top: 10px; font-size: 17px; }

.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.auth-card { width: 100%; max-width: 420px; margin: 48px auto 0; padding: 32px 28px; }
.auth-card h1 { font-size: 22px; margin-bottom: 6px; }
.sub { color: var(--txt2); font-size: 14px; margin-bottom: 22px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px 16px;
  border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: 1px solid transparent; transition: background .15s, opacity .15s; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--accent-h); color: #fff; }
.btn-outline { background: var(--bg); color: var(--txt); border-color: var(--border); }
.btn-outline:hover:not(:disabled) { background: var(--bg2); color: var(--txt); }
.btn-google { background: #fff; color: #1f1f1f; border-color: var(--border); }
.btn-google:hover:not(:disabled) { background: var(--bg2); }

.divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--txt3); font-size: 12px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
label { display: block; font-size: 13px; color: var(--txt2); margin-bottom: 6px; }
input[type=email], input[type=password] { width: 100%; padding: 11px 12px; margin-bottom: 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 15px; font-family: inherit; }
input:focus { outline: none; border-color: var(--accent); }
.row-links { display: flex; justify-content: space-between; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--txt2); flex-wrap: wrap; }

.msg { font-size: 14px; margin-top: 16px; padding: 11px 13px; border-radius: 8px; display: none; }
.msg.show { display: block; }
.msg.err { background: rgba(220,38,38,.07); color: var(--err); border: 1px solid rgba(220,38,38,.2); }
.msg.ok { background: rgba(13,148,136,.08); color: var(--ok); border: 1px solid rgba(13,148,136,.25); }
.msg.info { background: rgba(234,88,12,.07); color: var(--accent-h); border: 1px solid rgba(234,88,12,.2); }
.hidden { display: none !important; }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.plan { padding: 28px 24px; display: flex; flex-direction: column; position: relative; }
.plan.pick { border: 2px solid var(--accent); box-shadow: 0 6px 24px rgba(234,88,12,.14); }
.plan h3 { font-size: 20px; }
.price { font-size: 38px; font-weight: 700; margin: 10px 0 2px; letter-spacing: -.02em; }
.price small { font-size: 15px; font-weight: 500; color: var(--txt2); }
.plan .kind { color: var(--txt2); font-size: 14px; margin-bottom: 16px; }
.plan ul { list-style: none; margin-bottom: 22px; flex: 1; }
.plan li { font-size: 15px; padding: 5px 0 5px 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.plan .fine { font-size: 12px; color: var(--txt3); margin-top: 10px; text-align: center; }
.tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }

.notice { margin-top: 32px; padding: 22px 24px; }
.notice h2 { font-size: 18px; margin-bottom: 8px; }
.notice p, .notice li { color: var(--txt2); font-size: 14px; }
.notice ul { margin: 6px 0 0 18px; }
.notice + .notice { margin-top: 16px; }

.done { max-width: 560px; margin: 36px auto 0; padding: 32px 28px; text-align: center; }
.done .big { font-size: 44px; }

.foot { border-top: 1px solid var(--border); background: var(--bg); }
.foot-in { max-width: 1040px; margin: 0 auto; padding: 18px 20px; font-size: 13px; color: var(--txt2);
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.foot a { color: var(--txt2); }
.foot a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  h1 { font-size: 27px; }
  .wrap { padding-top: 28px; }
}
