:root {
  --orange: #ff6a00;
  --black: #111111;
  --text: #222222;
  --muted: #777777;
  --line: #e8e8e8;
  --bg: #f6f6f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,0.12), transparent 32%),
    #f5f5f5;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
}

.brand-mark,
.logo {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  white-space: nowrap;
}

.brand-mark {
  font-size: 28px;
  margin-bottom: 28px;
}

.brand-mark span,
.logo span {
  color: var(--orange);
  margin-left: 4px;
}

.login-card h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.login-card p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.5;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

input {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.12);
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

button {
  width: 100%;
  font-size: 15px;
}

.button.secondary {
  background: #111;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.alert-error {
  background: #fff1f1;
  color: #9d1c1c;
  border: 1px solid #ffd1d1;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: #111;
  color: #fff;
  padding: 28px 20px;
}

.logo {
  font-size: 22px;
  margin-bottom: 34px;
}

.sidebar .logo {
  color: #fff;
}

.sidebar .logo span {
  color: var(--orange);
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar nav a {
  padding: 13px 14px;
  color: rgba(255,255,255,0.72);
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.main {
  padding: 32px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.topbar h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.topbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.logout {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.card,
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.card {
  padding: 22px;
}

.card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.card strong {
  font-size: 34px;
  letter-spacing: -0.02em;
}

.panel {
  padding: 28px;
}

.panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 820px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .main {
    padding: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
.panel h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  word-spacing: 0;
}

.logo {
  letter-spacing: 0;
  word-spacing: 2px;
}
/* Landing WePrint Connect */

.landing-page {
  background: #ffffff;
  color: #151515;
}

.landing-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.landing-logo span {
  color: var(--orange);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.landing-nav a {
  color: #333;
}

.landing-nav .nav-login {
  padding: 11px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.hero {
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,0.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,106,0,0.11);
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  max-width: 760px;
}

.hero p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #5f5f5f;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255,106,0,0.22);
}

.landing-button.secondary {
  background: #111;
  color: #fff;
  box-shadow: none;
}

.hero-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 10px 13px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  font-size: 13px;
  color: #555;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.mini-dashboard {
  width: min(100%, 440px);
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
}

.mini-top {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 12px;
}

.mini-top span {
  color: var(--orange);
  font-weight: 900;
}

.mini-top strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mini-row span {
  color: rgba(255,255,255,0.62);
}

.mini-row strong {
  text-align: right;
}

.mini-status {
  margin-top: 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}

.mini-status div {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,0.2));
  margin-bottom: 14px;
}

.mini-status p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}

.landing-section {
  padding: 86px 0;
}

.landing-section.soft {
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title.left {
  text-align: left;
  margin: 0;
}

.section-title span,
.cta-box span {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.section-title h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-title p,
.cta-box p {
  margin: 18px 0 0;
  color: #646464;
  line-height: 1.7;
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article,
.model-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.04);
}

.steps-grid article strong {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,106,0,0.12);
  color: var(--orange);
  margin-bottom: 18px;
}

.steps-grid h3,
.model-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.steps-grid p,
.model-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-card.featured {
  background: #111;
  color: #fff;
  border-color: #111;
}

.model-card.featured p {
  color: rgba(255,255,255,0.72);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audience-list span {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 18px;
  font-weight: 900;
}

.cta-section {
  padding: 64px 0 86px;
}

.cta-box {
  background: #111;
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-box p {
  color: rgba(255,255,255,0.72);
  max-width: 760px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-actions .landing-button.secondary {
  background: #fff;
  color: #111;
}

.landing-footer {
  border-top: 1px solid #e8e8e8;
  padding: 28px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666;
}

.footer-inner strong {
  color: #111;
}

@media (max-width: 900px) {
  .landing-nav a:not(.nav-login) {
    display: none;
  }

  .hero-grid,
  .split-section,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .models-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .landing-container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 58px 0;
  }

  .hero h1 {
    letter-spacing: -0.04em;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px;
    border-radius: 26px;
  }

  .footer-inner {
    flex-direction: column;
  }
}