@font-face {
  font-family: "Roboto";
  src:
    url("../Fonts/Roboto-Black.woff2") format("woff2"),
    url("../Fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src:
    url("../Fonts/Roboto-Bold.woff2") format("woff2"),
    url("../Fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src:
    url("../Fonts/Roboto-Medium.woff2") format("woff2"),
    url("../Fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src:
    url("../Fonts/Roboto-Regular.woff2") format("woff2"),
    url("../Fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbfcfd;
  --surface: #ffffff;
  --surface-soft: #f6f8f7;
  --surface-muted: #f3f5f6;
  --line: #e6ece9;
  --line-strong: #dce5e1;
  --text: #1b2432;
  --muted: #6f7d84;
  --muted-strong: #536068;
  --teal: #14a37f;
  --teal-deep: #0f8e71;
  --teal-soft: #e8f8f2;
  --amber: #f59a23;
  --amber-soft: #fff4e5;
  --blue-soft: #eaf4ff;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --violet-soft: #f2ebff;
  --green-soft: #ecfff6;
  --green: #0f9f6e;
  --orange: #f97316;
  --orange-soft: #fff1e8;
  --shadow-soft: 0 20px 50px rgba(17, 24, 39, 0.06);
  --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 229, 225, 0.8);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(180deg, #18b18a 0%, #0f8e71 100%);
  box-shadow: 0 10px 20px rgba(20, 163, 127, 0.28);
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 5px;
  background: #fff;
}

.brand__text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.site-nav a {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-search,
.hero-search,
.cta-form,
.mini-signup {
  display: flex;
  align-items: center;
}

.header-search {
  width: 230px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--muted);
}

.header-search svg,
.hero-search svg {
  font-size: 1rem;
  flex-shrink: 0;
}

.header-search input,
.hero-search input,
.mini-signup input,
.cta-form input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--text);
}

.header-search input::placeholder,
.hero-search input::placeholder,
.mini-signup input::placeholder,
.cta-form input::placeholder {
  color: #8da0a4;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.82rem;
}

.button--block {
  width: 100%;
}

.button--solid {
  background: linear-gradient(180deg, #19b68d 0%, #109072 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 163, 127, 0.22);
}

.button--solid:hover {
  background: linear-gradient(180deg, #16ab84 0%, #0e8467 100%);
}

.button--outline {
  border: 1px solid #f4b27b;
  background: #fff;
  color: var(--orange);
}

.button--outline:hover,
.button--ghost:hover {
  background: #fff8f2;
}

.button--ghost {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal);
  font-size: 0.86rem;
}

.hero-section,
.cta-section {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 48px 0 36px;
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 163, 127, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(249, 115, 22, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f6fffb 0%, #ffffff 54%, #fff8ef 100%);
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-orb,
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.hero-orb--teal {
  top: -120px;
  left: -90px;
  width: 380px;
  height: 380px;
  background: rgba(20, 163, 127, 0.12);
}

.hero-orb--amber {
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(245, 154, 35, 0.09);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(20, 163, 127, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(232, 248, 242, 0.9);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-pill svg {
  font-size: 0.82rem;
}

.eyebrow-pill--soft {
  background: #f0fbf7;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20, 163, 127, 0.08);
}

.hero-title {
  margin: 26px 0 16px;
  max-width: 980px;
  color: #1a2434;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-title span,
.cta-section h2 span {
  color: var(--teal);
}

.hero-copy {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-copy strong {
  color: var(--text);
  font-weight: 700;
}

.hero-search {
  width: min(100%, 680px);
  gap: 14px;
  min-height: 66px;
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-search input {
  font-size: 1rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.ticker-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 12px;
  width: 100%;
  margin: 34px 0 26px;
  padding: 16px 8px 18px;
  overflow-x: auto;
  border-top: 1px solid rgba(220, 229, 225, 0.8);
  border-bottom: 1px solid rgba(220, 229, 225, 0.8);
  list-style: none;
  scrollbar-width: none;
}

.ticker-list::-webkit-scrollbar {
  display: none;
}

.ticker-list li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: transparent;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 0;
  position: relative;
}

.stat-card + .stat-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 1px;
  height: 48px;
  background: var(--line);
}

.stat-card__icon {
  color: var(--teal);
  font-size: 1rem;
}

.stat-card strong {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-card span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.section-block {
  padding: 62px 0;
}

.section-block--tight {
  padding-top: 48px;
}

.section-block--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.section-block--light {
  background: linear-gradient(180deg, #fbfcfc 0%, #f6f8f7 100%);
  border-top: 1px solid rgba(220, 229, 225, 0.55);
  border-bottom: 1px solid rgba(220, 229, 225, 0.55);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading--center h2 {
  max-width: 720px;
}

.carousel-controls,
.toolbar-pills {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-controls__button,
.toolbar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.carousel-controls__button {
  width: 40px;
  padding: 0;
}

.carousel-controls__button--active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

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

.trend-card,
.tool-card,
.sidebar-card,
.maker-card,
.trust-card,
.featured-issue,
.issue-card,
.issue-banner,
.load-more {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.trend-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px;
  border-radius: 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.trend-card:hover,
.tool-card:hover,
.maker-card:hover,
.issue-card:hover,
.featured-issue:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trend-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.trend-card__top img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.tag-group,
.issue-tags,
.tool-card__tags,
.cta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.label-chip,
.tool-card__tags span,
.issue-tags span,
.cta-pills li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag--teal,
.label-chip--teal,
.issue-badge {
  background: var(--teal-soft);
  color: var(--teal);
}

.tag--amber,
.label-chip--amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.tag--neutral {
  background: #f1f4f6;
  color: var(--muted-strong);
}

.label-chip--violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.label-chip--blue,
.label-chip--sky {
  background: var(--blue-soft);
  color: var(--blue);
}

.label-chip--green {
  background: var(--green-soft);
  color: var(--green);
}

.label-chip--sand {
  background: #fff6e7;
  color: #b87212;
}

.label-chip--orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.trend-card h3,
.tool-card h3,
.featured-issue h3,
.issue-card h3,
.maker-card h3,
.sidebar-card h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.trend-card h3 {
  font-size: 1.1rem;
}

.trend-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.trend-card__meta,
.tool-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.rating,
.tool-card__rating {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.rating::before,
.tool-card__rating::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--amber);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(290px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.tool-feed,
.sidebar-stack,
.winner-list,
.site-footer__links {
  display: grid;
  gap: 18px;
}

.tool-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.tool-card__logo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.tool-card__body {
  min-width: 0;
}

.tool-card__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-card__title-row h3 {
  font-size: 1.18rem;
}

.tool-card__lede {
  margin: 8px 0 10px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
}

.tool-card__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.tool-card__tags {
  margin-top: 16px;
}

.tool-card__tags span {
  border-radius: 10px;
  background: var(--surface-muted);
  color: var(--muted-strong);
  font-size: 0.63rem;
}

.tool-card__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.tool-card__footer a,
.featured-issue__footer a {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 22px;
  color: var(--muted-strong);
  font-weight: 700;
}

.sidebar-card {
  padding: 22px;
  border-radius: 28px;
}

.sidebar-card h3 {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

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

.category-list li,
.winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.category-list li span {
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
}

.category-list li strong,
.winner-item span,
.winner-item div span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.winner-item {
  justify-content: flex-start;
}

.winner-item img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.winner-item__rank {
  min-width: 32px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 700;
}

.winner-item--first .winner-item__rank {
  color: #c58913;
}

.winner-item div {
  display: grid;
  gap: 3px;
}

.winner-item div strong {
  font-size: 0.9rem;
}

.sidebar-card--signup {
  background: linear-gradient(180deg, #f0faf6 0%, #ffffff 100%);
}

.sidebar-card--signup p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mini-signup {
  flex-direction: column;
  gap: 12px;
}

.mini-signup input {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.makers-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.makers-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 20px;
  border-radius: 26px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.maker-card img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin-bottom: 16px;
  object-fit: cover;
}

.maker-card h3 {
  font-size: 1rem;
}

.maker-card p {
  margin: 6px 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.maker-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 220px;
  padding: 26px 20px;
  border-radius: 28px;
  text-align: center;
}

.trust-card__icon {
  color: var(--teal);
  font-size: 1.2rem;
}

.trust-card strong {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.trust-card span:last-child {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 500;
}

.section-heading--issues {
  align-items: center;
}

.issues-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.featured-issue {
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.featured-issue > img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.featured-issue__content {
  padding: 24px 24px 22px;
}

.issue-meta,
.featured-issue__footer,
.social-links,
.site-footer__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.issue-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.issue-badge {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}

.featured-issue h3 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.featured-issue p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.issue-tags span,
.cta-pills li {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--surface-muted);
  color: var(--muted-strong);
  font-size: 0.68rem;
}

.featured-issue__footer {
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.featured-issue__footer div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-issue__footer div span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-issue__footer div strong {
  font-size: 0.82rem;
}

.issue-list {
  display: grid;
  gap: 18px;
}

.issue-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.issue-card img {
  width: 112px;
  height: 112px;
  border-radius: 18px;
  object-fit: cover;
}

.issue-card span,
.issue-card p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.issue-card h3 {
  margin: 8px 0 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.issue-card p {
  margin: 0;
}

.issue-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 24px;
}

.issue-banner strong {
  display: block;
  font-size: 1rem;
}

.issue-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-section {
  padding: 88px 0 92px;
  background:
    radial-gradient(
      circle at left top,
      rgba(20, 163, 127, 0.1),
      transparent 26%
    ),
    radial-gradient(
      circle at right top,
      rgba(249, 115, 22, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #fbfcfc 0%, #fff8ef 100%);
}

.cta-orb--left {
  left: -80px;
  top: 30px;
  width: 360px;
  height: 360px;
  background: rgba(20, 163, 127, 0.09);
}

.cta-orb--right {
  right: -120px;
  bottom: -40px;
  width: 340px;
  height: 340px;
  background: rgba(249, 115, 22, 0.09);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.cta-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-pills {
  justify-content: center;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.cta-pills li {
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.cta-form {
  width: min(100%, 610px);
  gap: 14px;
}

.cta-form input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.cta-note {
  margin-top: 14px;
  color: #8b989d;
  font-size: 0.8rem;
}

.site-footer {
  margin: 0;
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fafcfc 0%, #f3f6f6 100%);
}

.site-footer__top {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.brand--footer .brand__text {
  font-size: 1.4rem;
}

.site-footer__top p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.site-footer__links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 30px 0;
}

.site-footer__links div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.site-footer__links h3 {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.site-footer__links a:hover,
.social-links a:hover {
  color: var(--teal);
}

.site-footer__bottom {
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.social-links {
  justify-content: flex-end;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .trending-grid,
  .makers-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-layout,
  .issues-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 980px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__panel {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-header__panel.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
  }

  .header-search {
    width: 100%;
  }

  .hero-title {
    max-width: 760px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .stat-card:nth-child(3)::before {
    display: none;
  }

  .section-heading--split,
  .issue-banner,
  .featured-issue__footer,
  .cta-form,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sidebar-stack {
    grid-template-columns: 1fr;
  }

  .tool-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .tool-card__logo {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

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

@media (max-width: 700px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .hero-search,
  .cta-form {
    flex-direction: column;
    padding: 16px;
    border-radius: 28px;
  }

  .hero-search {
    min-height: auto;
  }

  .hero-search .button,
  .cta-form .button {
    width: 100%;
  }

  .hero-stats,
  .trending-grid,
  .makers-grid,
  .trust-grid,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .stat-card + .stat-card::before {
    display: none;
  }

  .tool-card,
  .issue-card {
    grid-template-columns: 1fr;
  }

  .tool-card__logo,
  .issue-card img {
    width: 68px;
    height: 68px;
  }

  .toolbar-pills,
  .carousel-controls,
  .hero-actions {
    width: 100%;
  }

  .toolbar-pills,
  .hero-actions {
    flex-direction: column;
  }

  .toolbar-pill,
  .hero-actions .button,
  .button--ghost,
  .issue-banner .button {
    width: 100%;
  }

  .site-footer__links div,
  .site-footer__top,
  .site-footer__bottom {
    justify-items: flex-start;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}

/* 
 * Agency Details Custom Styles
 * Modern, responsive, and semantic layout 
 */

.agency-page {
  background: var(--bg);
}

.agency-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.agency-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.agency-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.agency-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.agency-badge.premium {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--teal-soft);
  color: var(--teal);
  border-color: rgba(20, 163, 127, 0.2);
  backdrop-filter: none;
}

.agency-profile {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 12px;
}

.agency-profile__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 4px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.agency-profile__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.agency-profile__info {
  flex: 1;
}

.agency-profile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.agency-profile__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.agency-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
}

.agency-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.agency-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.agency-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.agency-glass-pill span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 400;
}

/* Nav Tabs */
.agency-tabs-container {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px; /* Height of header */
  z-index: 20;
}

.agency-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.agency-tabs::-webkit-scrollbar {
  display: none;
}

.agency-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.agency-tab:hover {
  color: var(--text);
}

.agency-tab.active {
  color: var(--teal);
}

.agency-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  border-radius: 3px 3px 0 0;
}

.agency-tab-action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Layout */
.agency-section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.agency-section.bg-soft {
  background: var(--bg);
}

.agency-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Overview Content */
.agency-about {
  margin-bottom: 40px;
}

.agency-about h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
}

.agency-about p {
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.agency-services h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 163, 127, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s;
}
.service-pill:hover {
  transform: translateY(-2px);
}

/* Sidebar */
.agency-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  font-size: 1.2rem;
}

.stat-icon.teal {
  background: var(--teal-soft);
  color: var(--teal);
}
.stat-icon.violet {
  background: var(--violet-soft);
  color: var(--violet);
}
.stat-icon.amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.stat-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}

.sidebar-cta {
  padding: 20px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

/* Focus Areas */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.focus-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.focus-card:hover {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.focus-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-card span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.bg-teal-subtle {
  background: #e8f8f2;
  color: #14a37f;
}
.bg-yellow-subtle {
  background: #fef3c7;
  color: #d97706;
}
.bg-orange-subtle {
  background: #ffedd5;
  color: #ea580c;
}
.bg-violet-subtle {
  background: #ede9fe;
  color: #7c3aed;
}
.bg-pink-subtle {
  background: #fce7f3;
  color: #db2777;
}
.bg-blue-subtle {
  background: #dbeafe;
  color: #2563eb;
}

/* Reviews Section */
.review-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.rating-summary {
  background: var(--surface-soft);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  text-align: center;
}

.rating-score {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--amber);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-bars {
  margin-top: 24px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.rating-bar-row .number {
  color: var(--muted);
  width: 12px;
}
.rating-bar-row .star {
  color: var(--amber);
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--teal-deep));
  border-radius: 3px;
}

.rating-bar-row .percent {
  color: var(--muted);
  width: 32px;
  text-align: right;
  font-size: 0.75rem;
}

/* Review Cards */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-card__stars {
  color: var(--amber);
  display: flex;
  gap: 2px;
}
.review-card__date {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-card__text {
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-author__info h4 {
  margin: 0 0 2px 0;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.review-author__info span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Case Studies */
.case-study-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface-soft);
  color: var(--muted-strong);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.filter-pill.active {
  background: linear-gradient(180deg, #19b68d 0%, #109072 100%);
  color: #fff;
}

.filter-pill:hover:not(.active) {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.case-study-hero {
  display: flex;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

.case-study-hero__image {
  flex: 1;
  min-height: 320px;
}

.case-study-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-hero__content {
  flex: 1;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-hero__content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.case-study-hero__content p {
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-study-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.15);
  border-radius: var(--radius-lg);
}

.case-study-result .icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 163, 127, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.case-study-result .info span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}
.case-study-result .info strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-study-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}

.case-study-card__img {
  height: 160px;
  position: relative;
}

.case-study-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.case-study-card__content {
  padding: 16px;
}

.case-study-card__content h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.case-study-card__content span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .agency-layout {
    grid-template-columns: 1fr;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .rating-summary {
    max-width: 400px;
    margin: 0 auto;
  }

  .case-study-hero {
    flex-direction: column;
    gap: 0;
  }

  .case-study-hero__content {
    padding: 30px;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .agency-title {
    font-size: 2rem;
  }

  .agency-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .agency-hero__actions {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: space-between;
  }

  .agency-tab-action {
    display: none;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   main.css — Page-specific styles for AI App Daily
   (Ai-app.html, Agencies-details-page.html, etc.)
   ============================================================ */

/* ── Page-specific design tokens ── */
:root {
  --badge-hot-bg: #fff1f2;
  --badge-hot-color: #ef4444;
  --badge-top-bg: #f0fdf4;
  --badge-top-color: #16a34a;
  --badge-best-bg: #fff7ed;
  --badge-best-color: #f97316;
  --badge-new-bg: var(--teal-soft);
  --badge-new-color: var(--teal);
  --badge-editor-bg: #ede9fe;
  --badge-editor-color: #7c3aed;
}

/* ================================================================
   AI APPS PAGE — Hero
   ================================================================ */

.ai-apps-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, #f0fdf9 0%, #ffffff 100%);
  text-align: center;
}

.ai-apps-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.18);
  border-radius: var(--radius-pill);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.ai-apps-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}

.ai-apps-hero h1 span {
  color: var(--teal);
}

.ai-apps-hero p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ================================================================
   AI APPS PAGE — Type Tabs (AI Apps / AI Models / AI Plugins)
   ================================================================ */

.type-tabs-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.type-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.type-tabs::-webkit-scrollbar {
  display: none;
}

.type-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.type-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.type-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.type-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
}

.type-tab.active .type-tab__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.type-tab:not(.active) .type-tab__count {
  background: var(--line);
  color: var(--muted);
}

/* ================================================================
   AI APPS PAGE — Category Filter Pills
   ================================================================ */

.cat-filters {
  display: flex;
  gap: 8px;
  padding: 14px 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}

.cat-filters::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}

.cat-pill.active {
  background: var(--text);
  color: #fff;
}

.cat-pill:not(.active) {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--muted-strong);
}

.cat-pill:not(.active):hover {
  background: #fff;
  border-color: var(--line-strong);
}

/* ================================================================
   AI APPS PAGE — App Card Grid
   ================================================================ */

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  text-decoration: none;
  color: inherit;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  border-color: var(--line-strong);
}

.app-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.app-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: cover;
  flex-shrink: 0;
}

/* App Badges */
.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.app-badge--hot {
  background: var(--badge-hot-bg);
  color: var(--badge-hot-color);
}
.app-badge--top {
  background: var(--badge-top-bg);
  color: var(--badge-top-color);
}
.app-badge--best {
  background: var(--badge-best-bg);
  color: var(--badge-best-color);
}
.app-badge--new {
  background: var(--badge-new-bg);
  color: var(--badge-new-color);
}
.app-badge--editor {
  background: var(--badge-editor-bg);
  color: var(--badge-editor-color);
}

.app-card__name {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 3px;
  line-height: 1.2;
}

.app-card__cat {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.app-card__desc {
  font-size: 0.82rem;
  color: var(--muted-strong);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

/* Platform chips */
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 7px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 163, 127, 0.15);
}

.app-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--surface-soft);
  margin-top: auto;
}

.app-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.app-card__rating .star {
  color: var(--amber);
  font-size: 0.75rem;
}

.app-card__rating .reviews {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}

.app-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
}

.apps-section {
  padding: 48px 0 72px;
}

/* ================================================================
   AGENCY DETAILS PAGE — Hero
   ================================================================ */

.agency-page {
  background: var(--bg);
}

.agency-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.agency-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.agency-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.agency-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.agency-badge.premium {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--teal-soft);
  color: var(--teal);
  border-color: rgba(20, 163, 127, 0.2);
  backdrop-filter: none;
}

.agency-profile {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 12px;
}

.agency-profile__logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 4px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.agency-profile__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.agency-profile__info {
  flex: 1;
}

.agency-profile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.agency-profile__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.agency-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
}

.agency-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.agency-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.agency-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.agency-glass-pill span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 400;
}

/* Agency Nav Tabs */
.agency-tabs-container {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px;
  z-index: 20;
}

.agency-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.agency-tabs::-webkit-scrollbar {
  display: none;
}

.agency-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.agency-tab:hover {
  color: var(--text);
}
.agency-tab.active {
  color: var(--teal);
}

.agency-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  border-radius: 3px 3px 0 0;
}

.agency-tab-action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Agency Layout */
.agency-section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.agency-section.bg-soft {
  background: var(--bg);
}

.agency-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.agency-about {
  margin-bottom: 40px;
}
.agency-about h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
}
.agency-about p {
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.agency-services h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(20, 163, 127, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s;
}

.service-pill:hover {
  transform: translateY(-2px);
}

/* Agency Sidebar */
.agency-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  font-size: 1.2rem;
}
.stat-icon.teal {
  background: var(--teal-soft);
  color: var(--teal);
}
.stat-icon.violet {
  background: var(--violet-soft);
  color: var(--violet);
}
.stat-icon.amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.stat-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
}

.sidebar-cta {
  padding: 20px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

/* Focus Areas */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.focus-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.focus-card:hover {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.focus-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-card span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.bg-teal-subtle {
  background: #e8f8f2;
  color: #14a37f;
}
.bg-yellow-subtle {
  background: #fef3c7;
  color: #d97706;
}
.bg-orange-subtle {
  background: #ffedd5;
  color: #ea580c;
}
.bg-violet-subtle {
  background: #ede9fe;
  color: #7c3aed;
}
.bg-pink-subtle {
  background: #fce7f3;
  color: #db2777;
}
.bg-blue-subtle {
  background: #dbeafe;
  color: #2563eb;
}

/* Reviews Section */
.review-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.rating-summary {
  background: var(--surface-soft);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  text-align: center;
}

.rating-score {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--amber);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-bars {
  margin-top: 24px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.rating-bar-row .number {
  color: var(--muted);
  width: 12px;
}
.rating-bar-row .star {
  color: var(--amber);
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--teal-deep));
  border-radius: 3px;
}

.rating-bar-row .percent {
  color: var(--muted);
  width: 32px;
  text-align: right;
  font-size: 0.75rem;
}

/* Review Cards */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-card__stars {
  color: var(--amber);
  display: flex;
  gap: 2px;
}
.review-card__date {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-card__text {
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author__info h4 {
  margin: 0 0 2px 0;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.review-author__info span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Case Studies */
.case-study-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface-soft);
  color: var(--muted-strong);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.filter-pill.active {
  background: linear-gradient(180deg, #19b68d 0%, #109072 100%);
  color: #fff;
}

.filter-pill:hover:not(.active) {
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.case-study-hero {
  display: flex;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

.case-study-hero__image {
  flex: 1;
  min-height: 320px;
}

.case-study-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-hero__content {
  flex: 1;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-hero__content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.case-study-hero__content p {
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-study-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.15);
  border-radius: var(--radius-lg);
}

.case-study-result .icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 163, 127, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.case-study-result .info span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}

.case-study-result .info strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-study-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}

.case-study-card__img {
  height: 160px;
  position: relative;
}

.case-study-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.case-study-card__content {
  padding: 16px;
}

.case-study-card__content h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.case-study-card__content span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================================================================
   SHARED FOOTER — site-footer
   ================================================================ */

.site-footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.site-footer__brand p {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 12px 0 0;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 40px;
}

.site-footer__links h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.site-footer__links a {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--teal);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--teal);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

@media (max-width: 1200px) {
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .agency-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .review-layout {
    grid-template-columns: 1fr;
  }
  .rating-summary {
    max-width: 400px;
    margin: 0 auto;
  }
  .case-study-hero {
    flex-direction: column;
    gap: 0;
  }
  .case-study-hero__content {
    padding: 30px;
  }
  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .app-grid {
    grid-template-columns: 1fr;
  }
  .ai-apps-hero {
    padding: 64px 0 40px;
  }
  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  .agency-title {
    font-size: 2rem;
  }
  .agency-profile {
    flex-direction: column;
    align-items: flex-start;
  }
  .agency-hero__actions {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: space-between;
  }
  .agency-tab-action {
    display: none;
  }
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   GET LISTED PAGES
   ============================================= */

.gl-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--teal-soft) 0%, #fff 100%);
  text-align: center;
}

.gl-hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.2);
  border-radius: var(--radius-pill);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gl-hero .eyebrow-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
}

.gl-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 12px;
}

.gl-title span {
  color: var(--teal);
}

.gl-subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.gl-content {
  padding: 48px 0 64px;
}

.gl-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.gl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* Stepper */
.gl-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.gl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}

.gl-step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.gl-step__circle--done {
  background: linear-gradient(135deg, var(--teal) 0%, #0f8e71 100%);
}

.gl-step__circle--active {
  background: linear-gradient(135deg, var(--teal) 0%, #0f8e71 100%);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.gl-step__circle--pending {
  background: #f1f5f4;
  color: #a0aeb4;
}

.gl-step__circle svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2.5;
}

.gl-step__label {
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.gl-step__label--active {
  color: var(--teal);
}

.gl-step__label--pending {
  color: #a0aeb4;
}

.gl-step__label--done {
  color: var(--muted);
}

.gl-step-line {
  width: 80px;
  height: 2px;
  border-radius: 2px;
  margin-top: 17px;
  margin-left: 4px;
  margin-right: 4px;
}

.gl-step-line--done {
  background: var(--teal);
}

.gl-step-line--pending {
  background: #e5e7eb;
}

/* Form heading */
.gl-form-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}

.gl-form-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Form fields */
.gl-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.gl-field {
  display: flex;
  flex-direction: column;
}

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

.gl-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-strong);
  margin-bottom: 6px;
}

.gl-field label .req {
  color: #ef4444;
}

.gl-field input,
.gl-field select,
.gl-field textarea {
  width: 100%;
  padding: 11px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.gl-field input:focus,
.gl-field select:focus,
.gl-field textarea:focus {
  border-color: var(--teal);
}

.gl-field input::placeholder,
.gl-field textarea::placeholder {
  color: #a0aeb4;
}

.gl-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.gl-field textarea {
  min-height: 100px;
  resize: vertical;
}

.gl-field .field-hint {
  font-size: 0.7rem;
  color: #a0aeb4;
  margin-top: 4px;
}

.gl-field .char-count {
  font-size: 0.7rem;
  color: #a0aeb4;
  text-align: right;
  margin-top: 4px;
}

/* Form actions */
.gl-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gl-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  background: #f1f5f4;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gl-back:hover {
  background: #e5ebe9;
}

.gl-submit {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 163, 127, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gl-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 163, 127, 0.28);
}

/* Sidebar */
.gl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gl-sidebar-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.gl-sidebar-card--highlight {
  background: var(--teal-soft);
  border-color: rgba(20, 163, 127, 0.2);
}

.gl-sidebar-card h4 {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 16px;
}

.gl-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gl-benefit:last-child {
  margin-bottom: 0;
}

.gl-benefit__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(20, 163, 127, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-benefit__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
}

.gl-benefit span {
  font-size: 0.75rem;
  color: var(--muted-strong);
  font-weight: 500;
}

/* Timeline */
.gl-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.gl-timeline-step:last-child {
  margin-bottom: 0;
}

.gl-timeline-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.gl-timeline-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.gl-timeline-text small {
  font-size: 0.75rem;
  color: #a0aeb4;
}

.gl-help-text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

.gl-help-text a {
  color: var(--teal);
  font-weight: 600;
}

/* Review page */
.gl-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.2);
  border-radius: var(--radius-pill);
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.gl-type-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
}

.gl-review-details {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.gl-review-item dt {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a0aeb4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.gl-review-item dd {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.gl-review-item--full {
  grid-column: 1 / -1;
}

.gl-notice {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 163, 127, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
}

.gl-notice svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.gl-notice p {
  font-size: 0.875rem;
  color: var(--teal-deep);
  line-height: 1.65;
  margin: 0;
}

.gl-notice strong {
  font-weight: 700;
}

/* Confirmation page */
.gl-confirm {
  text-align: center;
  padding: 60px 40px;
}

.gl-confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.gl-confirm-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 2.5;
}

.gl-confirm h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px;
}

.gl-confirm p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}

.gl-confirm p strong {
  color: var(--text);
  font-weight: 700;
}

.gl-confirm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gl-confirm-actions .button--outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.gl-confirm-actions .button--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ================================================================
   COMPANY ONBOARDING
   ================================================================ */

.co-page {
  background:
    radial-gradient(circle at top left, rgba(20, 163, 127, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(20, 163, 127, 0.04), transparent 18%),
    var(--bg);
}

.co-main {
  padding-bottom: 18px;
}

.co-hero {
  padding: 28px 0 20px;
}

.co-hero__panel {
  padding: 22px 0 10px;
}

.co-hero__eyebrow {
  margin-bottom: 14px;
}

.co-hero__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.co-hero__subtitle {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.co-stepper-shell {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.co-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 760px;
}

.co-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--muted);
}

.co-step--active {
  color: var(--text);
  font-weight: 700;
}

.co-step__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eceff1;
  color: #8a959b;
  font-size: 0.72rem;
  font-weight: 700;
}

.co-step--active .co-step__bubble {
  background: var(--teal);
  color: #fff;
}

.co-step__label {
  font-size: 0.95rem;
  white-space: nowrap;
}

.co-stepper__connector {
  width: 22px;
  height: 1px;
  background: #d8dee2;
  flex-shrink: 0;
}

.co-content {
  padding: 10px 0 60px;
}

.co-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.co-card {
  padding: 22px 24px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.03);
}

.co-card__head {
  margin-bottom: 18px;
}

.co-card__head h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.co-card__head p {
  margin: 8px 0 0;
  color: #8d9aa0;
  font-size: 0.86rem;
}

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

.co-upload h3 {
  margin: 0 0 14px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
}

.co-upload__box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 122px;
  min-height: 114px;
  padding: 14px 12px;
  border: 1px dashed rgba(20, 163, 127, 0.55);
  border-radius: 10px;
  background: #f1fbf8;
  color: var(--teal-deep);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.35;
  cursor: pointer;
  position: relative;
}

.co-upload__box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.co-upload__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 400;
}

.co-upload {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.co-upload__notes {
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.45;
}

.co-upload__notes p {
  margin: 0;
}

.co-upload__notes p + p {
  margin-top: 1px;
}

.co-upload__notes strong {
  color: var(--text);
}

.co-upload__notes small {
  display: block;
  margin-top: 8px;
  color: #9a9ea2;
  font-style: italic;
}

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

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

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

.co-field {
  display: flex;
  flex-direction: column;
}

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

.co-field label {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.co-field label span {
  color: #ef4444;
}

.co-field label small {
  color: var(--text);
  font-weight: 600;
}

.co-field input,
.co-field select,
.co-editor textarea {
  width: 100%;
  min-height: 36px;
  padding: 10px 12px;
  border: 1px solid #d8dce2;
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 0.84rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.co-field input:focus,
.co-field select:focus,
.co-editor textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 163, 127, 0.12);
}

.co-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236c737a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

.co-editor {
  position: relative;
  padding-top: 18px;
}

.co-editor__tabs {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.co-editor__tabs span {
  padding: 4px 10px;
  border: 1px solid #d8dce2;
  background: #f7f8f9;
  color: #7f8790;
  font-size: 0.72rem;
}

.co-editor__tabs span.is-active {
  background: #fff;
  color: var(--muted-strong);
  border-bottom-color: #fff;
}

.co-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #d8dce2;
  border-bottom: 0;
  background: #fafbfc;
  color: #57606a;
  font-size: 0.74rem;
}

.co-editor__menu {
  padding: 1px 6px;
  border: 1px solid #d8dce2;
  background: #fff;
  border-radius: 2px;
}

.co-editor textarea {
  min-height: 160px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  resize: vertical;
}

.co-editor__count {
  margin-top: 6px;
  color: #8d95a1;
  font-size: 0.72rem;
  text-align: right;
}

.co-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.co-submit {
  min-width: 132px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #19b68d 0%, #109072 100%);
  box-shadow: none;
}

.co-submit:hover {
  background: linear-gradient(180deg, #16ab84 0%, #0e8467 100%);
}

.co-page .site-footer {
  margin-top: 24px;
}

.co-stage {
  padding: 24px 0 56px;
}

.co-stage__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.co-stage__toolbar {
  margin-top: 16px;
}

.co-stage__grid {
  display: grid;
  gap: 16px;
}

.co-stage__grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.co-stage__grid--single {
  grid-template-columns: 1fr;
}

.co-stage__cardhead {
  padding: 14px 16px 8px;
}

.co-stage__cardhead h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
}

.co-stage__cardhead p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.co-stage__body {
  padding: 0 16px 16px;
}

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

.co-chip-cloud--scroll {
  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
}

.co-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d7dbe0;
  background: #eceeef;
  color: #5d6770;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

.co-chip--active {
  border-color: rgba(238, 88, 103, 0.25);
  background: #f06f82;
  color: #fff;
}

.co-stage__search {
  width: 100%;
  height: 28px;
  margin: 8px 0 12px;
  padding: 0 10px;
  border: 1px solid #d8dce2;
  border-radius: 2px;
  background: #fff;
  font-size: 0.72rem;
  outline: none;
}

.co-slider-block + .co-slider-block {
  margin-top: 14px;
}

.co-slider-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
}

.co-slider-note {
  margin: 0 0 8px;
  color: #9aa1a8;
  font-size: 0.66rem;
}

.co-slider-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: #d7d7d7;
}

.co-slider-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--slider-pos, 50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  transform: translate(-50%, -50%);
}

.co-slider-track__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--slider-fill, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(20, 163, 127, 0.55), rgba(20, 163, 127, 0.75));
}

.co-subgrid {
  display: grid;
  gap: 12px;
}

.co-subgrid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.co-subgrid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.co-subgrid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.co-section-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.co-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 3px;
  background: #f5a8b1;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.co-group {
  padding: 10px 10px 12px;
  border: 1px solid #dfe3e6;
  border-radius: 2px;
}

.co-group + .co-group {
  margin-top: 10px;
}

.co-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.co-group__head h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
}

.co-group__status {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 0 5px;
  border-radius: 2px;
  background: #f5a8b1;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
}

.co-actions--split {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 10px;
}

.co-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 3px;
  background: #a7a7a7;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.co-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 3px;
  background: linear-gradient(180deg, #e4544c 0%, #d93a34 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.co-thanks {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
}

.co-thanks__card {
  width: min(100%, 430px);
  padding: 46px 42px 40px;
  border-radius: 16px;
  border: 1px solid rgba(220, 229, 225, 0.9);
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  text-align: center;
}

.co-thanks__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #f36d80;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}

.co-thanks__card h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 900;
}

.co-thanks__card p {
  margin: 0 0 24px;
  color: #8a97a0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.co-thanks__card .button {
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f36d80 0%, #ef6a77 100%);
  color: #fff;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .co-upload-grid,
  .co-grid--three {
    grid-template-columns: 1fr 1fr;
  }

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

/* Responsive */
@media (max-width: 900px) {
  .gl-grid {
    grid-template-columns: 1fr;
  }
  .gl-sidebar {
    order: -1;
  }
  .gl-title {
    font-size: 2.5rem;
  }

  .co-hero {
    padding-top: 20px;
  }

  .co-upload-grid,
  .co-grid--three,
  .co-grid--two {
    grid-template-columns: 1fr;
  }

  .co-upload {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .co-upload__box {
    width: 100%;
    max-width: 150px;
  }

  .co-stepper-shell {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .gl-fields {
    grid-template-columns: 1fr;
  }
  .gl-review-details {
    grid-template-columns: 1fr;
  }
  .gl-card {
    padding: 24px;
  }
  .gl-title {
    font-size: 2rem;
  }
  .gl-confirm-actions {
    flex-direction: column;
  }

  .co-card {
    padding: 18px 16px;
  }

  .co-stage__grid--split,
  .co-subgrid--two,
  .co-subgrid--three,
  .co-subgrid--four {
    grid-template-columns: 1fr;
  }

  .co-thanks__card {
    padding: 32px 24px;
  }

  .co-hero__title {
    font-size: 1.7rem;
  }

  .co-editor__tabs {
    position: static;
    margin-bottom: 8px;
  }

  .co-editor__toolbar {
    gap: 6px;
    font-size: 0.7rem;
  }

  .co-editor textarea {
    min-height: 140px;
  }
}

/* =============================================
   AUTH PAGES
   ============================================= */

.auth-page {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(20, 163, 127, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(14, 140, 113, 0.08), transparent 26%),
    linear-gradient(180deg, #f6fbf9 0%, #ffffff 55%, #f7fbfa 100%);
  overflow-x: hidden;
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.auth-page::before {
  top: 110px;
  left: -130px;
  width: 320px;
  height: 320px;
  background: rgba(20, 163, 127, 0.12);
}

.auth-page::after {
  right: -120px;
  bottom: 140px;
  width: 280px;
  height: 280px;
  background: rgba(14, 140, 113, 0.1);
}

.auth-main {
  position: relative;
  z-index: 1;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  width: min(calc(100% - 32px), 1440px);
  margin: 0 auto;
  padding: 22px 0 28px;
  gap: 22px;
  align-items: stretch;
  min-height: calc(100vh - 72px);
}

.auth-panel,
.auth-visual {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 100px);
  border: 1px solid rgba(220, 229, 225, 0.85);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.06);
}

.auth-panel {
  display: flex;
  align-items: center;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.auth-panel__inner {
  width: min(100%, 620px);
}

.auth-kicker {
  margin: 0 0 12px;
  color: #66737b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 26px;
  padding: 0 16px;
  border: 1px solid rgba(20, 163, 127, 0.18);
  border-radius: 999px;
  background: #f1fbf7;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(20, 163, 127, 0.06);
}

.auth-role svg {
  font-size: 0.8rem;
}

.auth-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.auth-subtitle {
  max-width: 54ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.auth-stepper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  color: #94a0ab;
  font-size: 0.84rem;
  font-weight: 700;
}

.auth-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-stepper__item span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2dad7;
  background: #fff;
  color: #839099;
  font-size: 0.7rem;
}

.auth-stepper__item.is-active {
  color: var(--text);
}

.auth-stepper__item.is-active span {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.auth-stepper__divider {
  width: 18px;
  height: 1px;
  background: #d6dbe0;
}

.auth-form {
  display: grid;
  gap: 16px;
}

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

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

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

.auth-field label {
  color: #41505a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.auth-field label span {
  color: #ef4444;
}

.auth-input,
.auth-select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #dbe5e0;
  border-radius: 16px;
  background: #f8fbf9;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-input::placeholder {
  color: #9aa7ae;
}

.auth-input:focus,
.auth-select:focus {
  border-color: rgba(20, 163, 127, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 163, 127, 0.08);
}

.auth-note {
  margin-top: 2px;
  color: #73808a;
  font-size: 0.82rem;
  line-height: 1.55;
}

.auth-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -4px;
  color: #7a858d;
  font-size: 0.8rem;
}

.auth-link {
  color: var(--teal);
  font-weight: 700;
}

.auth-link:hover {
  color: var(--teal-deep);
}

.auth-link--soft {
  color: var(--teal-deep);
}

.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-button:hover {
  transform: translateY(-1px);
}

.auth-button--primary {
  background: linear-gradient(180deg, #18b18a 0%, #0f8e71 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(20, 163, 127, 0.22);
}

.auth-button--primary:hover {
  background: linear-gradient(180deg, #16a981 0%, #0d8467 100%);
}

.auth-button--dark {
  border: 1px solid rgba(20, 163, 127, 0.2);
  background: #fff;
  color: var(--teal);
}

.auth-button--dark:hover {
  background: #f1fbf7;
}

.auth-button--soft {
  border: 1px solid #dbe5e0;
  background: #fff;
  color: var(--text);
}

.auth-button--block {
  width: 100%;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64707a;
  font-size: 0.82rem;
  line-height: 1.55;
}

.auth-checkbox input {
  margin-top: 3px;
}

.auth-otp {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 4px;
}

.auth-otp input {
  width: 100%;
  min-height: 56px;
  border: 1px solid #dbe5e0;
  border-radius: 16px;
  background: #f8fbf9;
  text-align: center;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  outline: none;
}

.auth-otp input:focus {
  border-color: rgba(20, 163, 127, 0.55);
  box-shadow: 0 0 0 4px rgba(20, 163, 127, 0.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 2px;
  color: #9aa2ab;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: #dfe4e8;
  flex: 1;
}

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

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

.auth-hint-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64707a;
  font-size: 0.82rem;
  line-height: 1.5;
}

.auth-hint-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #18b18a 0%, #0f8e71 100%);
  box-shadow: 0 0 0 4px rgba(20, 163, 127, 0.08);
  flex-shrink: 0;
}

.auth-visual {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(160deg, #0f8e71 0%, #107f69 50%, #0b6b5a 100%);
  border-color: rgba(13, 148, 136, 0.14);
}

.auth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.09), transparent 20%);
  pointer-events: none;
}

.auth-visual__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  color: #fff;
}

.auth-visual__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-visual__eyebrow svg {
  font-size: 0.75rem;
}

.auth-visual__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.auth-visual__lead {
  max-width: 42ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.75;
}

.auth-visual__stack {
  display: grid;
  gap: 14px;
}

.auth-visual__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.auth-visual__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-visual__icon svg {
  font-size: 1rem;
}

.auth-visual__card h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 800;
}

.auth-visual__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.55;
}

.auth-visual__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 10px;
}

.auth-visual__meter {
  display: grid;
  gap: 8px;
}

.auth-visual__meter span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-visual__meter strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.auth-visual__badge {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-page .site-footer {
  margin-top: 8px;
}

.auth-page .site-footer__top {
  padding-top: 42px;
}

@media (max-width: 1180px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-panel,
  .auth-visual {
    min-height: auto;
  }

  .auth-visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .auth-layout {
    width: min(calc(100% - 20px), 1440px);
    padding-top: 14px;
  }

  .auth-panel,
  .auth-visual {
    border-radius: 26px;
  }

  .auth-panel {
    padding: 26px 20px;
  }

  .auth-panel__inner {
    max-width: 100%;
  }

  .auth-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .auth-form-grid,
  .auth-social-grid {
    grid-template-columns: 1fr;
  }

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

  .auth-visual__copy {
    padding: 26px 20px;
  }

  .auth-visual__title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .auth-visual__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
