:root {
  --bg: #eef6ff;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #62748e;
  --line: rgba(7, 92, 179, 0.14);
  --blue: #075cb3;
  --sky: #1cb2f8;
  --teal: #199d9a;
  --green: #63ba1a;
  --amber: #ffb000;
  --shadow: 0 22px 70px rgba(7, 92, 179, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 0%, rgba(28, 178, 248, 0.24), transparent 32%),
    radial-gradient(circle at 92% 4%, rgba(99, 186, 26, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff, var(--bg));
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 12px;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: #25476f;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
}

nav a:hover { background: #eef6ff; color: var(--blue); }

main {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.section-block,
.cta-section,
.metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at top right, rgba(255, 176, 0, 0.22), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 950;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.detail-title {
  max-width: 100%;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 62ch;
  color: #36536f;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 34px rgba(7, 92, 179, 0.22);
}

.button.secondary {
  color: var(--blue);
  background: white;
  border-color: var(--line);
}

.button.light {
  color: #0b1f36;
  background: white;
}

.button.compact-button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.82rem;
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-strip span,
.job-tag {
  border-radius: 999px;
  padding: 7px 10px;
  background: #eff8ff;
  color: #075cb3;
  font-weight: 900;
  font-size: 0.82rem;
}

.date-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: #ecfdf3;
  color: #027a48;
  font-weight: 950;
}

.hero-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(99, 186, 26, 0.16), transparent 36%),
    #0f2742;
  color: white;
}

.hero-panel p,
.hero-panel li { color: rgba(255, 255, 255, 0.8); }

.hero-panel ul { padding-left: 20px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.metrics article {
  padding: 22px;
  box-shadow: none;
}

.metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.metrics span,
.section-head p,
.card p,
.support-grid span,
.job-card p,
.job-meta { color: var(--muted); }

.section-block {
  padding: clamp(22px, 4vw, 34px);
  margin-top: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.collapsible-card > summary {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  cursor: pointer;
  list-style: none;
}

.collapsible-card > summary::-webkit-details-marker { display: none; }

.collapsible-card > summary::after {
  content: "Collapse";
  color: var(--blue);
  background: #eff8ff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.collapsible-card:not([open]) > summary {
  margin-bottom: 0;
}

.collapsible-card:not([open]) > summary::after {
  content: "Expand";
}

.section-head p { max-width: 48ch; margin-bottom: 0; }

.job-tools {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 12px;
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #25476f;
  font-size: 0.86rem;
  font-weight: 900;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #25476f;
  line-height: 1.45;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid rgba(7, 92, 179, 0.22);
  border-radius: 16px;
  background: white;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

pre {
  white-space: pre-wrap;
  overflow-x: auto;
  color: #17324f;
  font: 0.92rem/1.55 "Cascadia Mono", Consolas, monospace;
}

.notice {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(7, 92, 179, 0.18);
  border-radius: 18px;
  background: #eff8ff;
  color: #075cb3;
  font-weight: 850;
}

.notice.success {
  background: #ecfdf3;
  color: #027a48;
  border-color: rgba(2, 122, 72, 0.22);
}

.notice.danger {
  background: #fff5f5;
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.22);
}

.notice.info {
  background: #eff8ff;
  color: #075cb3;
}

.card .notice,
.section-block .notice {
  width: 100%;
  margin: 0 0 14px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.wide-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.full {
  grid-column: 1 / -1;
}

.narrow-card {
  max-width: 560px;
  margin: 18px auto 0;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.data-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(7, 92, 179, 0.12);
  text-align: left;
  vertical-align: top;
}

.data-table input,
.data-table select {
  min-width: 150px;
  min-height: 40px;
  border-radius: 12px;
}

.data-table input[type="checkbox"] {
  min-width: auto;
  width: 18px;
  height: 18px;
}

.data-table th {
  color: #25476f;
  background: #f5fbff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table small {
  color: var(--muted);
  font-weight: 750;
}

.inline-form {
  display: grid;
  min-width: 270px;
  gap: 8px;
}

.inline-form input {
  min-height: 40px;
  border-radius: 12px;
}

.register-actions {
  margin-bottom: 14px;
}

.bulk-share-box {
  width: 100%;
  min-height: 340px;
  margin-bottom: 14px;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.55;
}

.whatsapp-group-card {
  border: 1px solid rgba(99, 186, 26, 0.28);
  background:
    radial-gradient(circle at top right, rgba(99, 186, 26, 0.16), transparent 26%),
    #ffffff;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.job-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card h3 { margin-bottom: 4px; }

.job-meta {
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 700;
}

.job-card .button {
  margin-top: auto;
  width: fit-content;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  margin-top: 18px;
}

.card {
  padding: clamp(22px, 4vw, 34px);
}

.dark-card {
  color: white;
  background:
    radial-gradient(circle at bottom right, rgba(28, 178, 248, 0.25), transparent 34%),
    linear-gradient(135deg, #0f2742, #075cb3);
}

.dark-card p { color: rgba(255, 255, 255, 0.82); }

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
  margin-right: 8px;
}

.support-block { background: linear-gradient(135deg, #ffffff, #f6fbff); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: white;
}

.support-grid strong {
  display: block;
  margin-bottom: 6px;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  margin-top: 18px;
  background:
    radial-gradient(circle at left bottom, rgba(99, 186, 26, 0.14), transparent 28%),
    #ffffff;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header,
  .section-head,
  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  nav { justify-content: flex-start; }

  .hero,
  .metrics,
  .jobs-grid,
  .split-section,
  .support-grid,
  .job-tools,
  .wide-form,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  h1 { max-width: 100%; }
}
