/* =========================================
   GLOBAL DESIGN SYSTEM – FORMLLC
========================================= */

/* ===== Theme Variables ===== */
:root {
  --grad-start: #0C1937;
  --grad-mid: #4B1B38;
  --grad-end: #9d1237;

  --text: #f8fafc;
  --muted: #b7c2d1;
  --brand: #ff4d5a;

  --maxw: 1180px;

  --body-text: #0f172a;
  --body-muted: #475569;

  --border: rgba(15, 23, 42, .12);
  --card-border: rgba(2, 6, 23, .12);
  --card-bg: #ffffff;

  --header-border: rgba(255, 255, 255, .22);

  --shadow: 0 10px 24px rgba(2, 6, 23, .06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .35);

  --radius-lg: 18px;
}

/* ===== Reset ===== */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--body-text);
  background: #fff;
  overflow-x: hidden;
}

section,
div,
main {
  max-width: 100%;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Layout Container ===== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(12px, 4vw, 50px);
  padding-block: 6px;
}

/* ===== Utility Classes ===== */
.muted {
  color: var(--body-muted);
}

.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-image {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 560px) {
  .brand-image {
    height: 32px;
  }
}

/* ===== Buttons ===== */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: .78rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 77, 90, .35);
}

.btn.primary:hover {
  opacity: .95;
}

@media (max-width: 900px) {
  .btn.primary{
    margin-top: 20px;
  }
}
.btn.ghost {
  background: transparent;
  color: inherit;
  border: 1px solid var(--border);
}

.btn.secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.btn.secondary:hover {
  background: #f8fafc;
}

/* ===== Common Hero Section ===== */
.cmp-hero {
  padding: clamp(48px, 8vw, 92px) 0 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  background: #fff;
  overflow: clip;
}

.cmp-hero::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(600px 360px at 14% 12%, rgba(255, 77, 90, .10), transparent 60%),
    radial-gradient(520px 320px at 86% 85%, rgba(72, 133, 237, .10), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.cmp-hero .container {
  position: relative;
  z-index: 1;
}

.cmp-hero .breadcrumb {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--body-muted);
}

.cmp-hero .breadcrumb a {
    color: var(--body-text);
    text-decoration: none;
    font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 700;
  color: var(--body-text);
}

.cmp-title {
  margin: 14px 0 10px;
  font-weight: 800;
  letter-spacing: -.5px;
  font-size: clamp(36px, 3vw, 72px);
  line-height: 1.06;
  background: linear-gradient(120deg,
      var(--grad-start) 8%,
      var(--grad-mid) 50%,
      var(--grad-end) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cmp-sub {
  color: var(--body-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Common Card ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-weight: 800;
}

.card p {
  line-height: 1.75;
  margin: 10px 0;
}

/* ===== Key/Value Grid ===== */
.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 12px;
}

.kv .item {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
}

.kv .k {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 900;
  margin-bottom: 4px;
}

.kv .v {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 680px) {
  .kv {
    grid-template-columns: 1fr;
  }
}

/* ===== Simple CTA Block ===== */
.cta-plain {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.cta-plain__wrap {
  max-width: 640px;
  margin: 0 auto;
}

.cta-plain__title {
  margin: 0 0 8px;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 800;
}

.cta-plain__sub {
  margin: 0;
  color: #6b7280;
  font-weight: 500;
}

.cta-plain__btn {
  margin-top: 24px;
}
