:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-alt: #eef2ff;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-strong: #ea580c;
  --accent-grad: linear-gradient(135deg, #f97316, #fb7185);
  --border-subtle: rgba(148, 163, 184, 0.6);
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-strong: #020617;
  --danger: #ef4444;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.85);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #e5edff 0, #f3f4f6 45%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

main {
  padding-top: 80px;
}

.marble-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.marble-surface::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background:
    radial-gradient(1000px 420px at 8% 0%, rgba(249, 115, 22, 0.14), transparent 58%),
    radial-gradient(780px 360px at 92% 10%, rgba(96, 165, 250, 0.12), transparent 54%),
    radial-gradient(560px 300px at 50% 40%, rgba(249, 115, 22, 0.06), transparent 62%),
    repeating-linear-gradient(
      135deg,
      rgba(2, 6, 23, 0.035) 0px,
      rgba(2, 6, 23, 0.035) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 30px
    );
  opacity: 0.42;
  pointer-events: none;
}

.marble-surface > * {
  position: relative;
  z-index: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-illustration svg {
    animation: none !important;
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--accent-grad);
  color: #0b1220;
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.25);
  user-select: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo {
  max-width: 190px;
}

.brand-logo--small {
  height: 28px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.35rem 0.1rem;
  position: relative;
  color: #4b5563;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-grad);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-strong);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--accent-strong);
}

.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 60%;
  background: #4b5563;
  margin: 0 auto;
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 1.25rem 3.5rem;
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 65%);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.85rem;
  color: var(--text-strong);
}

.accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  max-width: 33rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.hero-illustration {
  max-width: 520px;
  margin: 0.25rem auto 1.25rem;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
  animation: floaty 7s ease-in-out infinite;
}

.btn {
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent-grad);
  color: #111827;
  box-shadow: 0 16px 40px rgba(129, 140, 248, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.7);
}

.btn.ghost {
  background: #ffffff;
  color: #111827;
  border-color: rgba(148, 163, 184, 0.9);
}

.btn.ghost:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  background: #fff7ed;
}

.btn.full-width {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  max-width: 760px;
}

.hero-metrics dt {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 1.25rem;
}

.hero-metrics dd {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero-panel {
  display: flex;
  align-items: stretch;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.06), #ffffff);
  border-radius: 26px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.5rem 1.5rem 1.3rem;
  width: 100%;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-steps {
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.hero-step-no {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(249, 115, 22, 0.25);
  margin-top: 2px;
}

.hero-steps h3 {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-strong);
}

.hero-steps p {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.hero-form-note {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-form {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
  background-color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.hero-form-note {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section-alt {
  background: radial-gradient(circle at top left, #eef2ff, #ffffff);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-header h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.75rem;
  color: var(--text-strong);
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.06), #ffffff);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text-strong);
}

.card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.83rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-size: 0.8rem;
}

.checklist--compact li {
  padding-left: 1.1rem;
  margin-bottom: 0.1rem;
}

.about-visual-card {
  grid-column: 1 / -1;
  padding: 1.6rem 1.7rem;
}

.about-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.about-visual-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--text-strong);
}

.about-visual-copy p {
  margin: 0 0 0.9rem;
}

.about-visual-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.services-visual {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.services-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.services-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  cursor: default;
  transition: border-color 0.35s ease, background 0.35s ease,
    transform 0.18s ease, box-shadow 0.35s ease;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-meta h3 {
  margin: 0;
  font-size: 0.95rem;
}

.service-meta p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.service-pill-row span {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.9);
  color: #4b5563;
}

.service-card:hover {
  border-color: var(--accent-strong);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  transform: translateY(-1px);
}

.service-card--featured {
  border-color: rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: none;
}

.service-card--featured:hover {
  border-color: var(--accent-strong);
  box-shadow: 0 22px 65px rgba(249, 115, 22, 0.16), 0 18px 45px rgba(2, 6, 23, 0.08);
}

.services-highlight {
  background: radial-gradient(circle at top left, rgba(249, 250, 251, 1), #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.3rem 1.35rem 1.2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.services-highlight h3 {
  margin: 0 0 0.4rem;
}

.services-highlight p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.pill-list li {
  font-size: 0.72rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
}

.mini-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  padding: 0.8rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mini-panel-meta {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-main);
}

.training-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.training-item {
  position: relative;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-list li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.7rem;
  color: #4b5563;
}

.careers-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  align-items: stretch;
}

.careers-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.text-link {
  font-size: 0.85rem;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.text-link i {
  font-size: 0.75rem;
}

.careers-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.3rem 1.4rem 1.2rem;
  background: radial-gradient(circle at top left, #ffffff, #eff6ff);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.careers-panel p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.pill-strip span {
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.contact-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.contact-details h3 {
  margin: 0.2rem 0;
}

.contact-details p {
  margin: 0.1rem 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-details a {
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.55);
  text-underline-offset: 0.15rem;
}

.contact-points {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.85rem;
  color: var(--text-main);
}

.contact-form {
  background: radial-gradient(circle at top left, #ffffff, #eef2ff);
  border-radius: 24px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.4rem 1.5rem 1.3rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-status {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  min-height: 1rem;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: var(--danger);
}

.footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: radial-gradient(circle at top left, #ffffff, #eef2ff);
  padding: 1.4rem 1.25rem 1.6rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-panel {
    order: -1;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto 1.4rem;
  }

  .about-grid,
  .training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-layout,
  .careers-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 1rem;
    top: 58px;
    padding: 0.7rem 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(209, 213, 219, 0.9);
    flex-direction: column;
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links--open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .hero {
    padding-top: 4.1rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .training-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row,
  .contact-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-header {
    text-align: left;
  }
}

