/* =========================
   TOKENS
========================= */
:root {
  --cream: #f3efe3;
  --cream2: #e8e1d3;
  --white: #ffffff;

  --black: #0b0b0b;
  --blue: #1746ff;
  --red: #ff4d2e;
  --yellow: #f7d84b;

  --green: #1f3f34;
  --green2: #142c24;
  --green-light: #edf5f1;

  --terra: #ff4d2e;
  --terra-light: #fff0e8;

  --text: #0b0b0b;
  --muted: #3f3f3f;
  --border: #0b0b0b;

  --shadow-sm: 4px 4px 0 var(--black);
  --shadow-md: 6px 6px 0 var(--black);
  --shadow-lg: 10px 10px 0 var(--black);

  --radius: 0;
  --radius-sm: 0;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   LAYOUT
========================= */
.container,
.wrap,
.main,
.output-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background: var(--black);
  color: #ffffff;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 6px solid var(--red);
  box-shadow: none;
}

.topbar * {
  color: inherit;
}

/* =========================
   HERO
========================= */
.hero {
  background: var(--cream);
  color: var(--black);

  padding: 110px 6% 95px;

  text-align: left;
  border-bottom: 6px solid var(--black);

  position: relative;
  overflow: hidden;
}

.hero * {
  color: inherit;
}

.hero h1 {
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.9;

  font-weight: 900;
  margin-bottom: 30px;

  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.08em;

  max-width: 1100px;
}

.hero h1 em,
.hero h1 span {
  display: inline-block;

  background: var(--blue);
  color: #ffffff;

  padding: 4px 14px 10px;

  font-style: normal;
  transform: rotate(-1deg);

  border: 4px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
}

.hero p {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;

  color: var(--black);

  max-width: 820px;
  margin: 0 0 42px;

  font-weight: 700;
}

/* CTA spacing */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

/* Trust bar under CTA */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 34px;
}

.hero-trust span {
  background: #ffffff;
  border: 3px solid var(--black);

  padding: 8px 12px;

  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;

  box-shadow: 4px 4px 0 var(--black);
}

/* =========================
   BUTTONS
========================= */
.btn,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--red);
  color: #ffffff;

  padding: 20px 36px;
  min-height: 68px;

  border-radius: 0;
  border: 4px solid var(--black);

  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  box-shadow: var(--shadow-md);
  transition: 0.12s ease;
}

.btn:hover,
.primary:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--black);
}

/* =========================
   CARDS — HOMEPAGE / MARKETING
========================= */
.card,
.role,
.example-card,
.step-card,
.why-card,
.org-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}

/* =========================
   KEEP TRANSLATION / RESUME PAGE SMOOTH
========================= */
.resume-doc {
  background: var(--white);
  border: 1px solid #d7ddd8;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

/* =========================
   RESUME HEADER (SMOOTH)
========================= */
.resume-header,
.resume-head {
  background: #eef5f2;
  color: #111827;
  padding: 28px;
}

.resume-head small {
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.resume-head h2 {
  margin-top: 10px;
  color: #111827;
  letter-spacing: -0.02em;
}

/* =========================
   RESUME BODY
========================= */
.resume-body {
  padding: 28px;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2f5e47;
  font-weight: 800;
  border-bottom: 1px solid #d7ddd8;
  padding-bottom: 10px;
  margin-bottom: 18px;
}

/* =========================
   BULLETS
========================= */
.bullet,
.bullet-list {
  padding-left: 20px;
}

.bullet li,
.bullet-list li {
  margin: 10px 0;
  line-height: 1.6;
  color: #111827;
  font-weight: 500;
}

/* =========================
   CHIPS — SMOOTH TOOL STYLE
========================= */
.chip {
  display: inline-block;
  background: #edf5f1;
  border: 1px solid #d7ddd8;
  color: #2f5e47;
  border-radius: 8px;
  padding: 7px 10px;
  margin: 4px;
  font-size: 14px;
}

/* =========================
   PATHWAY — SMOOTH TOOL STYLE
========================= */
.pathway {
  background: #edf5f1;
  border-left: 4px solid #2f5e47;
  border-radius: 0 10px 10px 0;
  padding: 16px;
  color: #111827;
}

/* =========================
   MOBILE HERO
========================= */
@media (max-width: 700px) {

  .hero {
    padding: 72px 6% 64px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.92;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn,
  .hero-actions .primary {
    width: 100%;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-trust span {
    width: 100%;
    justify-content: center;
  }

}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--black);
  color: #ffffff;
  padding: 40px 6%;
  border-top: 6px solid var(--red);
}

footer * {
  color: inherit;
}

.footer-tagline {
  color: rgba(255,255,255,0.9);
}
