:root {
  --bg: #fff0e0;
  --bg-deep: #ffe4c4;
  --surface: rgba(255, 250, 244, 0.9);
  --surface-strong: #fffaf4;
  --surface-warm: rgba(255, 239, 220, 0.9);
  --surface-cool: rgba(239, 246, 255, 0.88);
  --text: #2f1d12;
  --muted: #7e5f4b;
  --line: rgba(169, 77, 18, 0.12);
  --brand: #a94d12;
  --brand-2: #dd7a25;
  --brand-3: #ffc063;
  --brand-4: #fff1e1;
  --blue: #0f2f77;
  --blue-2: #0b66c3;
  --blue-3: #dbeafe;
  --green: #166534;
  --red: #b91c1c;
  --white: #ffffff;
  --shadow-lg: 0 22px 56px rgba(106, 52, 18, 0.14);
  --shadow-md: 0 16px 34px rgba(106, 52, 18, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: 1180px;
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(221, 122, 37, 0.18), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(11, 102, 195, 0.12), transparent 24%),
    linear-gradient(180deg, #fff4e7 0%, #fff0e0 40%, #fff9f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(169, 77, 18, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 77, 18, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 84%);
  pointer-events: none;
  z-index: -2;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-noise {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 15% 8%, rgba(255, 192, 99, 0.18), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(15, 47, 119, 0.1), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8e3d0f 0%, var(--brand) 46%, var(--brand-2) 100%);
  box-shadow: 0 14px 28px rgba(169, 77, 18, 0.22);
}

.brand__logo {
  width: 154px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  animation: brandEntrance 880ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand__meta {
  display: none;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  font-weight: 700;
  color: rgba(47, 29, 18, 0.8);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--blue-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: inline-flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(169, 77, 18, 0.08);
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 58%, #f0a13b 100%);
  box-shadow: 0 16px 30px rgba(169, 77, 18, 0.22);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(15, 47, 119, 0.14);
  background: rgba(255, 255, 255, 0.68);
}

.button--ghost {
  color: var(--blue);
  border-color: rgba(15, 47, 119, 0.12);
  background: rgba(239, 246, 255, 0.8);
}

.site-header__actions .button[data-worker-link] {
  color: var(--white);
  background: linear-gradient(135deg, #f7a55d 0%, #ffbf8a 58%, #ffd9aa 100%);
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(169, 77, 18, 0.22);
}

.hero,
.page-hero {
  padding: 54px 0 20px;
}

.home-presentation {
  padding: 30px 0 84px;
}

.home-presentation__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
}

.home-presentation__media {
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: #18130f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 26px 56px rgba(106, 52, 18, 0.26);
}

.home-presentation__media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-presentation__text {
  display: grid;
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(169, 77, 18, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 213, 169, 0.98) 0%, rgba(255, 193, 118, 0.96) 100%);
  box-shadow: var(--shadow-lg);
}

.home-presentation__text--highlight {
  color: #4a240c;
}

.home-presentation__text--highlight strong {
  font-weight: 800;
  display: inline-block;
}

.home-presentation__text .kicker {
  margin: 0;
}

.home-presentation__text h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #4a240c;
  text-wrap: balance;
}

.home-presentation__text p {
  margin: 0;
}

.home-presentation__headline {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(18px, 3vw, 30px);
}

.home-presentation__subtitle {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.hero--home {
  padding-top: 22px;
}

.hero-home-cover {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 32px), 1460px);
  min-height: clamp(430px, 82vh, 920px);
  margin: 0 auto 28px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: #0e1118;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 22px 56px rgba(18, 20, 33, 0.3);
}

.hero-home-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-home-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 16, 0.5) 0%, rgba(6, 9, 16, 0.2) 38%, rgba(6, 9, 16, 0.52) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 192, 99, 0.24), transparent 42%);
  pointer-events: none;
}

.hero-home-cover__overlay {
  position: absolute;
  top: clamp(18px, 4vw, 44px);
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.hero-home-cover__card {
  width: min(100%, 760px);
  max-height: calc(100% - 24px);
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 10, 18, 0.62);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.hero-home-cover__card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-home-cover__title {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  font-size: clamp(1.04rem, 2.2vw, 1.54rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero-home-cover__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.58;
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.hero__copy,
.page-hero__copy,
.page-hero__aside,
.hero__visual {
  min-width: 0;
}

.kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
}

h1 span {
  color: var(--brand);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

p {
  margin: 0;
  line-height: 1.72;
}

.hero__text,
.section-head p,
.feature-card p,
.publish-card p,
.story-card p,
.portal-card p,
.contact-card p,
.job-card p,
.mini-feed li,
.stack-list__item,
.notice-box {
  color: var(--muted);
}

.hero--home .hero__copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero--home .hero__copy h1 {
  max-width: 16ch;
  text-wrap: balance;
}

.hero__subtitle {
  max-width: 38ch;
  color: #3a2416;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.08rem, 2.2vw, 1.62rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.hero__statement {
  max-width: 68ch;
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(169, 77, 18, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero__statement p {
  color: var(--muted);
  line-height: 1.76;
}

.hero__statement p strong {
  color: var(--text);
}

.k-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(221, 122, 37, 0.16);
  color: var(--brand);
  font-weight: 800;
}

.k-highlight--dark {
  background: rgba(255, 192, 99, 0.22);
  color: #ffe4bf;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-strip article,
.stat-panel {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow-md);
}

.stat-strip strong,
.stat-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
}

.stat-strip span,
.stat-panel span {
  color: var(--muted);
  font-weight: 700;
}

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

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow-lg);
}

.hero-panel--wide {
  grid-column: 1 / -1;
}

.hero-panel__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(169, 77, 18, 0.08);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__logo {
  display: block;
  width: min(100%, 280px);
  margin-bottom: 16px;
}

.hero-panel--intro {
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(11, 20, 46, 0.96) 0%, rgba(24, 36, 70, 0.98) 100%);
  color: var(--white);
}

.hero-panel--intro .hero-panel__badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel--intro .hero-panel__logo {
  width: min(100%, 320px);
  animation: splashLogo 1.15s cubic-bezier(0.18, 0.84, 0.22, 1);
}

.hero-panel--intro p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel--appshot {
  background:
    linear-gradient(160deg, rgba(15, 47, 119, 0.88) 0%, rgba(11, 102, 195, 0.92) 100%);
  color: var(--white);
}

.hero-panel--appshot p,
.hero-panel--appshot span,
.hero-panel--appshot strong {
  color: inherit;
}

.hero-panel__screen {
  min-height: 260px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 22, 53, 0.5), rgba(10, 22, 53, 0.12)),
    url("./assets/media/app-login-bg.png") center/cover no-repeat;
  display: flex;
  align-items: end;
}

.hero-panel__screen-copy {
  max-width: 280px;
  display: grid;
  gap: 8px;
}

.hero-panel__screen-copy strong {
  font-size: 1.2rem;
}

.mini-feed {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-feed li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(169, 77, 18, 0.05);
  font-weight: 700;
}

.product-shot {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot--portrait {
  max-width: 370px;
  margin-inline: auto;
}

.product-shot--portrait img {
  transform: translateY(0);
}

.product-shot--landscape {
  margin-bottom: 18px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px;
  background: #0e1118;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 16px 30px rgba(18, 20, 33, 0.24);
}

.hero-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.58) 0%, rgba(5, 8, 16, 0.18) 42%, rgba(5, 8, 16, 0.44) 100%),
    radial-gradient(circle at 84% 22%, rgba(255, 192, 99, 0.2), transparent 40%);
  pointer-events: none;
}

.hero-banner__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: min(78%, 440px);
}

.hero-banner__overlay span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(9, 12, 20, 0.66);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-banner__overlay strong {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 9px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 10, 18, 0.58);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.02rem, 2.2vw, 1.38rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-panel--screenshot {
  background:
    radial-gradient(circle at top left, rgba(11, 102, 195, 0.08), transparent 22%),
    rgba(255, 250, 244, 0.9);
}

.hero-panel--dashboard {
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.16), transparent 18%),
    rgba(255, 250, 244, 0.92);
}

.hero-panel__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 16px;
  align-items: start;
}

.section {
  padding: 86px 0;
}

.section--jobs-start {
  padding-top: 28px;
}

.section--warm {
  background:
    radial-gradient(circle at right top, rgba(255, 192, 99, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 245, 233, 0.82) 0%, rgba(255, 249, 242, 0.72) 100%);
  border-top: 1px solid rgba(169, 77, 18, 0.06);
  border-bottom: 1px solid rgba(169, 77, 18, 0.06);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head--tight {
  margin-bottom: 20px;
}

.feature-grid,
.publish-grid,
.story-grid,
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.plan-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.plan-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-card__label {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.plan-card__price {
  font-family: "Manrope", sans-serif;
  color: var(--blue);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(169, 77, 18, 0.14);
  background: rgba(169, 77, 18, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-card__badge--recommended {
  border-color: rgba(15, 47, 119, 0.16);
  background: rgba(15, 47, 119, 0.08);
  color: var(--blue);
}

.plan-card__badge--premium {
  border-color: rgba(11, 102, 195, 0.18);
  background: linear-gradient(135deg, rgba(11, 102, 195, 0.14) 0%, rgba(255, 192, 99, 0.24) 100%);
  color: #0d4d9b;
}

.plan-card__limit {
  margin: -4px 0 0;
  color: #5b3a25;
  font-weight: 800;
}

.plan-card__lead {
  color: #3a2416;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.55;
}

.plan-card__text {
  color: var(--muted);
}

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

.plan-card__features li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-3) 100%);
}

.plan-card--featured {
  border-color: rgba(169, 77, 18, 0.26);
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.2), transparent 32%),
    var(--surface);
  transform: translateY(-4px);
}

.plan-card--launch {
  position: relative;
  overflow: hidden;
}

.plan-card--launch::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 192, 99, 0.18) 0%, rgba(255, 192, 99, 0) 72%);
  pointer-events: none;
}

.plan-card--premium {
  border-color: rgba(11, 102, 195, 0.18);
  background:
    radial-gradient(circle at top right, rgba(11, 102, 195, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 192, 99, 0.14), transparent 28%),
    var(--surface);
}

.plan-card__launch-note {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(169, 77, 18, 0.12);
  background: rgba(255, 248, 238, 0.9);
  color: #6d4f3b;
  font-weight: 700;
}

.button--disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.94;
}

.plans-visibility-note {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  text-align: center;
}

.plans-visibility-note strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(169, 77, 18, 0.1) 0%, rgba(255, 192, 99, 0.24) 100%);
  color: #4a240c;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: -0.02em;
}

.plans-cta {
  align-items: center;
}

body[data-page="planos"] .page-hero__copy h1 {
  margin-bottom: 18px;
}

body[data-page="planos"] .page-hero__copy .hero__subtitle {
  color: inherit;
  text-shadow: 0 2px 12px rgba(47, 29, 18, 0.18);
}

body[data-page="planos"] .stat-panel--launch {
  background: rgba(185, 28, 28, 0.08);
  border-color: rgba(185, 28, 28, 0.14);
}

body[data-page="planos"] .stat-panel--trial {
  background: rgba(22, 101, 52, 0.1);
  border-color: rgba(22, 101, 52, 0.14);
}

body[data-page="planos"] .plan-card .button {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 58%, #f0a13b 100%);
  box-shadow: 0 16px 30px rgba(169, 77, 18, 0.2);
}

body[data-page="planos"] .plan-card .button--disabled {
  opacity: 1;
}

.feature-card,
.publish-card,
.story-card,
.portal-card,
.spotlight-panel,
.contact-card,
.insight-card,
.cta-banner,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.feature-card,
.publish-card,
.story-card,
.portal-card,
.contact-card,
.insight-card {
  padding: 24px;
}

.feature-card__index {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 47, 119, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.18), transparent 24%),
    var(--surface);
}

.spotlight-grid,
.contact-layout,
.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-section {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 192, 99, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 244, 230, 0.92) 100%);
  box-shadow: var(--shadow-md);
}

.contact-page-main {
  padding: 18px 0 72px;
}

.legal-page-main {
  padding: 0 0 86px;
}

.legal-page-hero {
  padding-bottom: 28px;
}

.legal-page-card {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(169, 77, 18, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 247, 238, 0.94) 100%);
  box-shadow:
    0 22px 44px rgba(169, 77, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.legal-page-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-page__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.78;
}

.legal-page__meta {
  margin: 0;
  color: rgba(74, 48, 28, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.legal-section-wrap {
  padding-top: 24px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(169, 77, 18, 0.12);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 16px 34px rgba(169, 77, 18, 0.08);
}

.legal-section h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.18;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-section a {
  color: var(--brand);
  font-weight: 700;
}

.contact-page-stage {
  padding-top: 8px;
}

body[data-page="contato"] .contact-section {
  min-height: clamp(420px, 58vh, 560px);
  align-content: center;
}

.contact-section h2 {
  color: var(--brand);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.contact-section > p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 8px;
}

.icon-box {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 110px;
  text-decoration: none;
  color: var(--brand);
}

.icon-box__badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(169, 77, 18, 0.2);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 241, 225, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 26px rgba(106, 52, 18, 0.1);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.icon-box svg {
  width: 30px;
  height: 30px;
}

.icon-box__label {
  color: #4a240c;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.icon-box:hover .icon-box__badge,
.icon-box:focus-visible .icon-box__badge {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 58%, #f0a13b 100%);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(169, 77, 18, 0.22);
}

.icon-box:hover .icon-box__label,
.icon-box:focus-visible .icon-box__label {
  color: var(--brand);
}

.icon-box:focus-visible {
  outline: none;
}

.spotlight-panel,
.contact-card,
.insight-card,
.filter-panel,
.cta-banner {
  padding: 24px;
}

.spotlight-panel__head,
.insight-card__head,
.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.spotlight-panel__head span,
.insight-card__head span,
.jobs-toolbar p,
#home-refresh-status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(169, 77, 18, 0.08);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
}

.tag-cloud--interactive .tag {
  border: 0;
}

.job-list {
  display: grid;
  gap: 14px;
}

.job-list--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-list--full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(169, 77, 18, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.job-card__top,
.job-card__meta,
.job-card__actions,
.company-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.job-card__top {
  align-items: flex-start;
}

.job-card__title {
  font-size: 1.18rem;
}

.job-card__company {
  color: var(--blue);
  font-weight: 800;
}

.job-card__chips,
.company-card__chips,
.check-list,
.stack-list {
  display: grid;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 47, 119, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.chip--warm {
  background: rgba(169, 77, 18, 0.08);
  color: var(--brand);
}

.chip--success {
  background: rgba(22, 101, 52, 0.1);
  color: var(--green);
}

.stack-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(169, 77, 18, 0.08);
  font-weight: 700;
}

.publish-card__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-hero__aside {
  display: grid;
  gap: 14px;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.filter-panel__actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(169, 77, 18, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(11, 102, 195, 0.42);
  box-shadow: 0 0 0 4px rgba(11, 102, 195, 0.12);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.portal-card {
  display: grid;
  gap: 8px;
}

.portal-card span,
.company-block__label {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.cta-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.about-highlight {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(169, 77, 18, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.26), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 246, 235, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 44px rgba(106, 52, 18, 0.16);
}

.about-highlight h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.06;
  color: #4a240c;
  text-wrap: balance;
}

.about-highlight__body {
  display: grid;
  gap: 14px;
  max-width: 78ch;
}

.about-highlight__body p {
  color: #5f4434;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.78;
}

.about-highlight__signature {
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(169, 77, 18, 0.16);
  background: rgba(255, 255, 255, 0.66);
}

.about-highlight__signature strong {
  font-family: "Manrope", sans-serif;
  color: var(--brand);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.about-highlight__signature span {
  color: #7e5f4b;
  font-weight: 700;
}

.team-spotlight {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 192, 99, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 250, 244, 0.9) 100%);
  box-shadow: var(--shadow-lg);
}

.team-spotlight-list {
  display: grid;
  gap: 28px;
}

.team-spotlight--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
}

.team-spotlight--reverse .team-spotlight__media {
  order: 2;
}

.team-spotlight--reverse .team-spotlight__content {
  order: 1;
}

.team-spotlight::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 58%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 102, 195, 0.2) 0%, rgba(11, 102, 195, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.team-spotlight__media {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.team-spotlight__photo-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: clamp(180px, 22vw, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 6px;
  border: 1px solid rgba(169, 77, 18, 0.16);
  background:
    linear-gradient(145deg, rgba(11, 102, 195, 0.22) 0%, rgba(221, 122, 37, 0.32) 100%),
    #1a1614;
  box-shadow:
    0 18px 34px rgba(106, 52, 18, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.team-spotlight__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.team-spotlight__photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  transition: transform 540ms ease;
}

.team-spotlight__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 47, 119, 0.16);
  background: rgba(15, 47, 119, 0.08);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-spotlight:hover .team-spotlight__photo,
.team-spotlight:focus-within .team-spotlight__photo {
  transform: scale(1.05);
}

.team-spotlight__content {
  display: grid;
  gap: 14px;
  align-content: start;
}

.team-spotlight__content h1,
.team-spotlight__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.team-spotlight__role {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(169, 77, 18, 0.12);
  color: var(--brand);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.team-spotlight__seal {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 47, 119, 0.18);
  background: linear-gradient(135deg, rgba(15, 47, 119, 0.12) 0%, rgba(11, 102, 195, 0.16) 100%);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-spotlight__seal::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-3) 100%);
  box-shadow: 0 0 0 4px rgba(221, 122, 37, 0.18);
}

.team-spotlight__text {
  color: #000000;
  font-size: 1.02rem;
}

.team-spotlight__statement {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(169, 77, 18, 0.12);
  border-left: 3px solid rgba(169, 77, 18, 0.36);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 250, 244, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.team-spotlight.reveal .team-spotlight__media > *,
.team-spotlight.reveal .team-spotlight__content > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.team-spotlight.reveal.is-visible .team-spotlight__media > *,
.team-spotlight.reveal.is-visible .team-spotlight__content > * {
  opacity: 1;
  transform: translateY(0);
}

.team-spotlight.reveal.is-visible .team-spotlight__media > :nth-child(1) {
  transition-delay: 90ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__media > :nth-child(2) {
  transition-delay: 130ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(1) {
  transition-delay: 170ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(2) {
  transition-delay: 220ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(3) {
  transition-delay: 270ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(4) {
  transition-delay: 320ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(5) {
  transition-delay: 370ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(6) {
  transition-delay: 420ms;
}

.team-spotlight.reveal.is-visible .team-spotlight__content > :nth-child(7) {
  transition-delay: 470ms;
}

.check-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-3) 100%);
}

.notice-box {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 47, 119, 0.06);
  border: 1px solid rgba(15, 47, 119, 0.1);
  white-space: pre-wrap;
}

.site-footer {
  padding: 0 0 30px;
}

.site-footer__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(169, 77, 18, 0.1);
}

.site-footer__logo {
  width: 180px;
  display: block;
}

.site-footer__brand {
  display: inline-flex;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, #8e3d0f 0%, var(--brand) 46%, var(--brand-2) 100%);
  box-shadow: 0 14px 28px rgba(169, 77, 18, 0.18);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes brandEntrance {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashLogo {
  0% {
    opacity: 0;
    transform: scale(0.78);
    filter: blur(6px) drop-shadow(0 0 0 rgba(255, 192, 99, 0));
  }

  58% {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0) drop-shadow(0 0 20px rgba(255, 192, 99, 0.24));
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
  }
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 12, 0.45);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(calc(100% - 24px), 760px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  padding: 24px;
  border-radius: 30px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-lg);
}

.modal__close {
  margin-left: auto;
  display: inline-flex;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(169, 77, 18, 0.08);
  color: var(--brand);
  font-weight: 800;
}

.modal__content {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.company-card {
  display: grid;
  gap: 16px;
}

.company-card__logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(169, 77, 18, 0.12);
  background: var(--white);
}

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

.company-block {
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 47, 119, 0.05);
  border: 1px solid rgba(15, 47, 119, 0.08);
}

.company-jobs {
  display: grid;
  gap: 12px;
}

.company-job {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(169, 77, 18, 0.08);
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.error-page__wrap {
  width: min(calc(100% - 24px), 620px);
  padding: 34px;
  text-align: center;
  border: 1px solid rgba(169, 77, 18, 0.12);
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow-lg);
}

.error-page__wrap img {
  width: min(100%, 220px);
  padding: 14px 16px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #8e3d0f 0%, var(--brand) 46%, var(--brand-2) 100%);
  box-shadow: 0 14px 28px rgba(169, 77, 18, 0.18);
}

@media (max-width: 1080px) {
  .site-header__inner,
  .hero__grid,
  .page-hero__grid,
  .spotlight-grid,
  .contact-layout,
  .insights-grid,
  .feature-grid,
  .plan-grid,
  .publish-grid,
  .story-grid,
  .portal-grid,
  .home-presentation__inner,
  .filter-panel,
  .company-blocks,
  .job-list--compact,
  .job-list--full,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .hero-panel__split {
    grid-template-columns: 1fr;
  }

  .home-presentation__inner {
    justify-items: center;
    align-items: center;
  }

  .home-presentation__media,
  .home-presentation__text {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .home-presentation__text {
    place-items: center;
    text-align: center;
    max-width: 560px;
  }

  .home-presentation__text .kicker,
  .home-presentation__text h1 {
    margin-inline: auto;
    text-align: center;
  }

  .hero-home-cover {
    min-height: clamp(360px, 62vh, 620px);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__actions {
    display: none;
  }

  .cta-banner,
  .jobs-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-spotlight {
    grid-template-columns: 1fr;
  }

  .team-spotlight--reverse .team-spotlight__media,
  .team-spotlight--reverse .team-spotlight__content {
    order: initial;
  }

  .team-spotlight__photo-wrap {
    width: clamp(190px, 42vw, 240px);
  }

  .about-highlight__body {
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(calc(100% - 20px), var(--shell));
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__inner {
    position: relative;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .brand__logo {
    width: 122px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header__actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-header__actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    text-align: center;
    line-height: 1.15;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 0 auto;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid rgba(169, 77, 18, 0.1);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 14px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .hero--home .hero__copy h1 {
    max-width: 100%;
  }

  .hero-home-cover {
    width: min(calc(100% - 20px), 1460px);
    min-height: clamp(300px, 56vh, 500px);
    border-radius: 26px;
  }

  .home-presentation__media {
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
  }

  .home-presentation__text {
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 16px;
    border-radius: 22px;
  }

  .home-presentation__text h1 {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
    line-height: 1.14;
  }

  .about-highlight {
    gap: 14px;
  }

  .about-highlight h1 {
    font-size: clamp(1.72rem, 6.4vw, 2.34rem);
  }

  .legal-page-card {
    border-radius: 26px;
  }

  .legal-page-card .hero__actions {
    gap: 12px;
  }

  .legal-section {
    border-radius: 22px;
  }

  .contact-icons {
    gap: 16px;
  }

  .icon-box {
    min-width: 104px;
  }
}

@media (max-width: 560px) {
  .site-header__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }

  .button {
    width: 100%;
  }

  .brand {
    padding: 9px 12px;
  }

  .brand__meta {
    display: none;
  }

  .hero__actions,
  .filter-panel__actions,
  .site-footer__inner {
    display: grid;
  }

  .spotlight-panel,
  .feature-card,
  .publish-card,
  .story-card,
  .portal-card,
  .contact-card,
  .contact-section,
  .insight-card,
  .team-spotlight,
  .cta-banner,
  .filter-panel {
    padding: 20px;
  }

  .team-spotlight__photo-wrap {
    width: clamp(160px, 52vw, 210px);
  }

  .hero-home-cover {
    min-height: 260px;
    border-radius: 20px;
  }

  .home-presentation {
    padding: 18px 0 64px;
  }

  .home-presentation__media {
    border-radius: 18px;
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
  }

  .home-presentation__text {
    justify-items: center;
    text-align: center;
    width: 100%;
    max-width: 540px;
    margin-inline: auto;
    padding: 14px 14px;
    border-radius: 16px;
  }

  .home-presentation__text h1 {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
    line-height: 1.18;
  }

  .about-highlight {
    padding: 18px;
    border-radius: 20px;
  }

  .about-highlight__body p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-highlight__signature {
    width: 100%;
  }

  .legal-page-main {
    padding-bottom: 56px;
  }

  .legal-page-card {
    padding: 24px 18px;
  }

  .legal-page-card h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .legal-page__lead,
  .legal-section p,
  .legal-section li {
    font-size: 0.96rem;
  }

  .legal-section {
    padding: 20px 16px;
  }

  .contact-icons {
    gap: 14px;
  }

  .icon-box {
    min-width: calc(50% - 7px);
  }

  .icon-box__badge {
    width: 64px;
    height: 64px;
  }

  .hero-home-cover__overlay {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .hero-home-cover__card {
    width: 100%;
    max-height: calc(100% - 8px);
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
  }

  .hero-home-cover__title {
    font-size: 0.98rem;
  }

  .hero-home-cover__text {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__statement {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .hero-banner__overlay {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .hero-banner__overlay strong {
    font-size: 0.96rem;
    padding: 8px 12px;
  }

  .modal__dialog {
    width: calc(100% - 12px);
    margin: 6px auto;
    padding: 18px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
