:root {
  color-scheme: light;
  --background: #f8f9fa;
  --surface: #ffffff;
  --surface-low: #f3f4f5;
  --surface-mid: #edeeef;
  --surface-high: #e1e3e4;
  --text: #191c1d;
  --muted: #404944;
  --line: #d8dfdb;
  --line-strong: #bfc9c3;
  --primary: #003527;
  --primary-soft: #064e3b;
  --primary-tint: #b0f0d6;
  --secondary: #006a61;
  --secondary-soft: #86f2e4;
  --tertiary: #002c65;
  --tertiary-soft: #d8e2ff;
  --danger: #ba1a1a;
  --danger-soft: #ffdad6;
  --warning: #8a4b00;
  --warning-soft: #ffedd5;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--text);
  font-family: "Atkinson Hyperlegible Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
svg {
  max-width: 100%;
}

.material-symbols-outlined {
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.icon-fill {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  background: rgba(248, 249, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark,
.seal {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
}

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

.top-nav {
  align-self: stretch;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 8px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-nav a:hover,
.top-nav a.active {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.public-login-link {
  color: var(--primary);
  font-weight: 800;
}

.public-start-link {
  min-height: 38px;
  padding-inline: 20px;
}

.layout {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  min-height: calc(100vh - 56px);
}

.sidebar {
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  padding: 18px 12px;
  background: var(--surface-low);
  border-right: 1px solid var(--line);
  overflow-y: auto;
}

.identity-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 4px 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.identity-card strong,
.identity-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.identity-card strong {
  color: var(--primary);
  font-size: 13px;
}

.identity-card span {
  color: var(--muted);
  font-size: 12px;
}

.side-nav {
  display: grid;
  gap: 4px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--secondary-soft);
  color: var(--primary);
  text-decoration: none;
}

.sidebar-footer {
  margin-top: 24px;
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
}

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

.app-main .shell {
  width: min(100%, 1160px);
}

.public-shell {
  width: min(var(--container), calc(100% - 32px));
}

.messages {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #a7d4ff;
  border-radius: var(--radius);
  background: #eaf4ff;
  color: var(--tertiary);
  font-weight: 700;
}

.message.success {
  border-color: #9bd9c0;
  background: #e7f8f0;
  color: #07543a;
}

.message.error {
  border-color: #f2aaa5;
  background: var(--danger-soft);
  color: var(--danger);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding: 44px 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.hero.compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 26px;
  text-align: left;
}

.hero h1,
.hero h2,
.hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.page-title h1 {
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero p {
  max-width: 740px;
  margin-top: 0;
  color: #d9f7eb;
  font-size: 18px;
}

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

.page-title p,
.muted {
  color: var(--muted);
}

.eyebrow,
.label {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-tint);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--secondary-soft);
  box-shadow: 0 0 0 4px rgba(134, 242, 228, 0.18);
}

.panel,
.card,
.metric-card,
.table-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  margin-bottom: 18px;
  padding: 24px;
}

.form-panel,
.table-panel {
  padding: 22px;
}

.narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

.bento-grid,
.dashboard-grid,
.grid,
.stats {
  display: grid;
  gap: 16px;
}

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

.span-8 {
  grid-column: span 8;
}

.span-7 {
  grid-column: span 7;
}

.span-6 {
  grid-column: span 6;
}

.span-5 {
  grid-column: span 5;
}

.span-4 {
  grid-column: span 4;
}

.span-3 {
  grid-column: span 3;
}

.span-12 {
  grid-column: 1 / -1;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 0;
}

.metric-card,
.stats div {
  padding: 18px;
}

dt,
.metric-label,
th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

dd,
.metric-value {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.metric-dark {
  background: var(--primary);
  color: #fff;
}

.metric-dark .metric-label {
  color: var(--primary-tint);
}

.metric-dark .metric-value {
  color: var(--secondary-soft);
}

.card {
  padding: 18px;
}

.card h2,
.card h3 {
  margin-bottom: 8px;
}

.card p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-box {
  display: inline-grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--secondary-soft);
  color: var(--primary);
}

.icon-box.blue {
  background: var(--tertiary-soft);
  color: var(--tertiary);
}

.ce-home {
  --ce-primary: #00281c;
  --ce-primary-container: #00402e;
  --ce-accent: #6bfe9c;
  --ce-accent-text: #00210c;
  --ce-muted: #4b5563;
  --ce-border: #e5e7eb;
  --ce-surface: #fdfdfd;
  --ce-soft: #f3f4f5;
  width: calc(100% + 32px);
  margin: -24px -16px 0;
  color: #191c1d;
  font-family: Inter, "Atkinson Hyperlegible Next", ui-sans-serif, system-ui, sans-serif;
}

.ce-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.ce-hero {
  min-height: 430px;
  padding: 80px 0;
  background:
    linear-gradient(90deg, rgba(0, 40, 28, 0.91), rgba(0, 64, 46, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(107, 254, 156, 0.16), transparent 32%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuA2TyTTHhszi5-hvZitw6SgAVnCN3gWcjXecPh1nHt01dJaxCMldI_uijGeFhJjNI7kppiaE4oD9r15FDGe5XWTMpNDFMoFtdgo-JfgQiQ3x_W-K3NOvSxQSzL0kTHJa0kYX9vKuuoWWskJFhEOuw7hk7sFru8aWpFqCdUx65auFAcI_Yiiw1a8P27c6Tl4Gk3XFqwnAjverzD8OvgaRYQtMDRkGyz3OFaRWeVDYq60ySuQW2fAyyl4Yw"),
    var(--ce-primary);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.ce-hero-copy {
  max-width: 720px;
}

.ce-hero h1,
.ce-section h2,
.ce-final-card h2 {
  margin: 0;
  color: inherit;
  font-family: Inter, "Atkinson Hyperlegible Next", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.ce-hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.08;
  font-weight: 800;
}

.ce-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #9ad2b9;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.ce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ce-actions-center {
  justify-content: center;
}

.ce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ce-button:hover {
  text-decoration: none;
}

.ce-button-accent {
  background: var(--ce-accent);
  color: var(--ce-accent-text);
}

.ce-button-outline {
  border-color: rgba(154, 210, 185, 0.6);
  color: #9ad2b9;
}

.ce-button-light {
  background: #fff;
  color: var(--ce-primary);
}

.ce-button-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.ce-section {
  padding: 86px 0;
  background: var(--ce-surface);
}

.ce-section-muted {
  background: var(--ce-soft);
}

.ce-section-heading {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
}

.ce-section h2 {
  color: var(--ce-primary);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.ce-section-heading p {
  margin: 18px auto 0;
  color: var(--ce-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

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

.ce-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--ce-border);
  border-radius: 12px;
  background: #fff;
}

.ce-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #dcfce7;
  color: #006d37;
}

.ce-card h3,
.ce-step h3 {
  margin: 20px 0 8px;
  color: var(--ce-primary);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.ce-card p,
.ce-step p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.ce-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.ce-steps {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

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

.ce-step > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--ce-primary);
  color: #fff;
  font-weight: 800;
}

.ce-step h3 {
  margin: 0 0 6px;
}

.ce-visual-card {
  padding: 28px;
  border: 1px solid var(--ce-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 40, 28, 0.12);
}

.ce-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--ce-soft);
}

.ce-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ce-chip-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(0, 109, 55, 0.12);
  border-radius: 999px;
  background: #dcfce7;
  color: #006d37;
  font-weight: 800;
}

.ce-chip-row .material-symbols-outlined {
  font-size: 17px;
}

.ce-final {
  padding: 0 0 72px;
  background: var(--ce-surface);
}

.ce-final-card {
  position: relative;
  overflow: hidden;
  padding: 74px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(107, 254, 156, 0.12), transparent 28%),
    var(--ce-primary);
  color: #fff;
  text-align: center;
}

.ce-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ce-accent);
  color: #00743a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ce-final-card h2 {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
}

.ce-final-card p {
  margin: 28px 0 0;
  color: #9ad2b9;
  font-weight: 700;
}

.ce-footer {
  padding: 38px 0 0;
  background:
    linear-gradient(90deg, rgba(0, 40, 28, 0.98), rgba(0, 64, 46, 0.9)),
    url("https://www.transparenttextures.com/patterns/cubes.png"),
    linear-gradient(90deg, rgba(0, 40, 28, 0.98), rgba(0, 64, 46, 0.94)),
    var(--ce-primary);
  color: #9ad2b9;
}

.ce-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 48px;
  padding-bottom: 38px;
}

.ce-footer h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 24px;
}

.ce-footer p {
  max-width: 360px;
  margin: 0 0 22px;
}

.ce-footer a,
.ce-footer strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ad2b9;
  font-weight: 700;
}

.ce-footer a + a,
.ce-footer nav a,
.ce-footer nav strong {
  margin-top: 12px;
}

.ce-footer strong {
  color: var(--ce-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ce-footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(154, 210, 185, 0.16);
  color: rgba(154, 210, 185, 0.72);
}

.ce-home-v2 {
  --ce-v2-primary: #00281c;
  --ce-v2-secondary: #006d37;
  --ce-v2-mint: #6bfe9c;
  --ce-v2-surface: #fdfdfd;
  --ce-v2-muted: #404944;
  --ce-v2-border: #e5e7eb;
  margin-top: -24px;
  font-family: Inter, "Atkinson Hyperlegible Next", ui-sans-serif, system-ui, sans-serif;
  background: var(--ce-v2-surface);
}

.ce-home-v2 .ce-container {
  width: min(1200px, calc(100% - 48px));
}

.ce-v2-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 56px);
  padding: 72px 0;
  overflow: hidden;
  background: var(--ce-v2-primary);
  color: #fff;
}

.ce-v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.ce-v2-hero-copy {
  max-width: 580px;
}

.ce-v2-tagline {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--ce-v2-mint);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ce-v2-hero h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.ce-v2-hero p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.ce-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ce-v2-link:hover {
  color: var(--ce-v2-mint);
  text-decoration: none;
}

.ce-v2-hero-media {
  position: relative;
}

.ce-v2-hero-media::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 999px;
  background: rgba(0, 109, 55, 0.24);
  filter: blur(44px);
}

.ce-v2-hero-media img {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.ce-v2-section {
  padding: 88px 0;
}

.ce-v2-heading {
  max-width: 720px;
  margin: 0 auto 76px;
  text-align: center;
}

.ce-v2-heading h2,
.ce-v2-workflow h2 {
  margin: 0;
  color: var(--ce-v2-primary);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.ce-v2-heading > span {
  display: block;
  width: 64px;
  height: 5px;
  margin: 16px auto 22px;
  border-radius: 999px;
  background: var(--ce-v2-secondary);
}

.ce-v2-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ce-v2-muted);
  line-height: 1.65;
}

.ce-v2-zigzag {
  display: grid;
  gap: 96px;
}

.ce-v2-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 88px;
  align-items: center;
}

.ce-v2-row-flip .ce-v2-copy-block {
  order: 2;
}

.ce-v2-copy-block {
  max-width: 470px;
}

.ce-v2-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: #dcfce7;
  color: var(--ce-v2-secondary);
  font-size: 30px;
}

.ce-v2-copy-block h3,
.ce-v2-steps h3 {
  margin: 22px 0 10px;
  color: var(--ce-v2-primary);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.ce-v2-copy-block p,
.ce-v2-steps p {
  margin: 0;
  color: var(--ce-v2-muted);
  line-height: 1.65;
}

.ce-v2-placeholder {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 18px;
  background: #edeeef;
  box-shadow: 0 18px 40px rgba(0, 40, 28, 0.18);
}

.ce-v2-placeholder .material-symbols-outlined {
  color: rgba(0, 40, 28, 0.12);
  font-size: 94px;
}

.ce-v2-principle {
  position: relative;
  padding: 56px 0;
  background:
    linear-gradient(rgba(0, 40, 28, 0.78), rgba(0, 40, 28, 0.78)),
    url("https://lh3.googleusercontent.com/aida/AP1WRLsbw7kHbtbJyc0ryhS2980lvsM3KT3ZJKo6o6VOld9UEKW4g1uJhv0RDUT5KIXe7J6TesFGY5kj6sxXCsmEQZTEMwUJAjrm3DzbLL363HQynLXOr6OLfqlhUw56196KiN91f6UcJUkz-g9-_yk1rs2vel8NzW4Kkv_xGS77b47whAoB6G40T892FfTf12iDa7--gMKjfLcdF5RTPuCi4gWGXABQmoGtsAUDSXIzA7M0uBpeZ_EKrpBDXYM");
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.ce-v2-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ce-v2-mint);
  color: #00743a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ce-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.ce-v2-stats div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.ce-v2-stats strong {
  display: block;
  color: var(--ce-v2-mint);
  font-size: 56px;
  line-height: 1;
}

.ce-v2-stats span {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ce-v2-workflow {
  background: #f3f4f5;
}

.ce-v2-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 88px;
  align-items: center;
}

.ce-v2-steps {
  display: grid;
  gap: 34px;
  margin-top: 44px;
}

.ce-v2-steps > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
}

.ce-v2-steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(0, 40, 28, 0.18);
  border-radius: 999px;
  color: var(--ce-v2-primary);
  font-size: 20px;
  font-weight: 700;
}

.ce-v2-steps h3 {
  margin: 0 0 8px;
}

.ce-v2-dashboard {
  padding: 16px;
  border: 1px solid var(--ce-v2-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 40, 28, 0.16);
}

.ce-v2-dashboard img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.ce-v2-groups {
  background: #fdfdfd;
}

.ce-v2-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ce-v2-group-grid div {
  display: grid;
  min-height: 170px;
  place-items: center;
  align-content: center;
  gap: 20px;
  border: 1px solid var(--ce-v2-border);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.ce-v2-group-grid span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #edeeef;
  color: var(--ce-v2-secondary);
  font-size: 28px;
}

.ce-v2-group-grid p {
  margin: 0;
  color: var(--ce-v2-primary);
  font-weight: 600;
}

.ce-v2-footer {
  padding: 58px 0 28px;
  background: var(--ce-v2-primary);
  color: #9ad2b9;
}

.ce-v2-footer h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 24px;
}

.ce-v2-footer p {
  max-width: 360px;
  margin: 0 0 28px;
}

.ce-v2-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
}

.ce-v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(154, 210, 185, 0.72);
}

.ce-v2-footer-bottom p {
  margin: 0;
}

.ce-v2-footer-bottom div {
  display: flex;
  gap: 24px;
}

.icon-box.warn {
  background: var(--warning-soft);
  color: var(--warning);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-mid);
}

.progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--secondary);
}

.progress-ring {
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, #fff 68%, transparent 69%),
    conic-gradient(var(--secondary) 78%, var(--surface-mid) 0);
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface-mid);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.badge.success,
.status-approved,
.status-verified,
.status-resolved {
  background: #dff6ea;
  color: #07543a;
}

.badge.info,
.status-submitted,
.status-in-review,
.status-open {
  background: var(--tertiary-soft);
  color: var(--tertiary);
}

.badge.warn,
.status-pending {
  background: var(--warning-soft);
  color: var(--warning);
}

.badge.danger,
.status-rejected,
.status-escalated {
  background: var(--danger-soft);
  color: var(--danger);
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: var(--primary-soft);
  color: #fff;
  text-decoration: none;
}

.button.secondary,
button.secondary {
  border-color: var(--secondary);
  background: transparent;
  color: var(--secondary);
}

.button.secondary:hover,
button.secondary:hover {
  background: var(--secondary-soft);
  color: var(--primary);
}

.button.ghost,
button.ghost,
.icon-button {
  border-color: var(--line);
  background: var(--surface);
  color: var(--muted);
}

.button.ghost:hover,
button.ghost:hover,
.icon-button:hover {
  background: var(--surface-low);
  color: var(--primary);
}

.icon-button {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 999px;
}

.inline {
  display: inline-flex;
}

.inline button {
  min-height: 36px;
  padding: 0 12px;
}

form {
  margin: 0;
}

form p {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

label {
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

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

input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  accent-color: var(--secondary);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}

.helptext {
  color: var(--muted);
  font-size: 13px;
}

.errorlist {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--danger-soft);
  color: var(--danger);
  list-style-position: inside;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

tbody tr:hover {
  background: var(--surface-low);
}

.subsection {
  margin-top: 24px;
}

.mobile-nav {
  display: none;
}

.auth-wrap {
  display: grid;
  min-height: calc(100vh - 120px);
  place-items: center;
}

.auth-card {
  width: min(100%, 440px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-card .seal {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.auth-card h1,
.auth-card p {
  text-align: center;
}

.candidate-card {
  display: grid;
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding-top: 54px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.avatar {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--tertiary-soft);
  color: var(--tertiary);
  font-weight: 800;
}

.bar-list {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  gap: 6px;
}

.bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 150px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface-low);
}

.mini-chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 0 0;
  background: #95aaa2;
}

.mini-chart span:nth-child(5),
.mini-chart span:nth-child(6) {
  background: var(--secondary);
}

.screen-frame {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.screen-aside {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: var(--surface-low);
}

.screen-body {
  padding: 28px;
}

.prose {
  max-width: 780px;
}

.prose p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .layout {
    display: block;
  }

  .sidebar {
    display: none;
  }

  .shell,
  .app-main .shell,
  .public-shell {
    width: min(100% - 32px, var(--container));
    margin-bottom: 96px;
  }

  .ce-home {
    width: calc(100% + 32px);
    margin: -24px -16px 0;
  }

  .ce-card-grid,
  .ce-split,
  .ce-footer-grid,
  .ce-v2-hero-grid,
  .ce-v2-row,
  .ce-v2-workflow-grid {
    grid-template-columns: 1fr;
  }

  .ce-v2-hero-media {
    display: none;
  }

  .ce-v2-row-flip .ce-v2-copy-block {
    order: 0;
  }

  .ce-v2-group-grid,
  .ce-v2-stats {
    grid-template-columns: 1fr;
  }

  .ce-split {
    gap: 44px;
  }

  .dashboard-grid,
  .screen-frame,
  .hero.compact {
    grid-template-columns: 1fr;
  }

  .screen-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .span-8,
  .span-7,
  .span-6,
  .span-5,
  .span-4,
  .span-3 {
    grid-column: 1 / -1;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: var(--surface);
  }

  .mobile-nav a {
    display: grid;
    min-height: 64px;
    place-items: center;
    gap: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-nav a.active {
    color: var(--primary);
  }

  .mobile-nav a:hover {
    text-decoration: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 12px;
  }

  .brand {
    font-size: 15px;
  }

  .top-actions {
    gap: 6px;
  }

  .shell,
  .app-main .shell,
  .public-shell {
    width: calc(100% - 24px);
    margin-top: 16px;
  }

  .ce-home {
    width: calc(100% + 24px);
    margin: -16px -12px 0;
  }

  .ce-container {
    width: calc(100% - 32px);
  }

  .ce-hero,
  .ce-section {
    padding: 54px 0;
  }

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

  .ce-hero h1 {
    font-size: 36px;
  }

  .ce-v2-hero h1 {
    font-size: 36px;
  }

  .ce-hero p {
    font-size: 16px;
  }

  .ce-v2-hero {
    min-height: calc(100vh - 56px);
    padding: 58px 0;
  }

  .ce-v2-section {
    padding: 56px 0;
  }

  .ce-v2-heading {
    margin-bottom: 44px;
  }

  .ce-v2-zigzag {
    gap: 56px;
  }

  .ce-v2-row {
    gap: 28px;
  }

  .ce-v2-placeholder {
    min-height: 180px;
  }

  .ce-v2-stats strong {
    font-size: 44px;
  }

  .ce-v2-footer-bottom {
    display: grid;
  }

  .ce-section-heading {
    margin-bottom: 36px;
  }

  .ce-card,
  .ce-visual-card {
    padding: 24px;
  }

  .ce-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ce-button {
    width: 100%;
  }

  .ce-final-card {
    padding: 52px 22px;
  }

  .hero {
    padding: 28px 18px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

  .panel,
  .form-panel,
  .table-panel,
  .auth-card {
    padding: 18px;
  }

  .page-title,
  .section-head {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }

  .topbar .button,
  .topbar button {
    width: auto;
  }

  .icon-button,
  .inline button {
    width: auto;
  }

  .actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  th,
  td {
    padding: 11px 10px;
  }
}

.vh-home-page {
  --vh-primary: #00281c;
  --vh-primary-soft: #00402e;
  --vh-surface: #f9f9f7;
  --vh-surface-low: #f4f4f1;
  --vh-text-soft: #6e7974;
  background: var(--vh-surface);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}

.vh-home-page .topbar {
  position: sticky;
  min-height: 80px;
  padding: 0 24px;
  background: rgba(249, 249, 247, 0.82);
  border-bottom: 1px solid rgba(192, 201, 194, 0.3);
  backdrop-filter: blur(14px);
}

.vh-home-page .brand {
  gap: 12px;
  color: var(--vh-primary);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.vh-home-page .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #fff url("https://lh3.googleusercontent.com/aida/AP1WRLspktU432csMzXNb-HJHPGXzVqC2SNSZF7tiYWYorqM7tY0741ouhDUTr3aiLm7mfNVYs1mEG1cBoBxKYJnU32WEVgu9I_rHqUvlAz6SDmggRfZ-yty4NkDr_oBYBI96-_tYsud4a2XZPYf53NkOYE9mrzHi2nz5C09gRiEBlxLXPhW-kE3MMEYmEgy6ytULjBEIKTrpDREV3Wxb7vaEZ0yAxjoE5nmnrkak3hoi2HONCw5eMePvfsK-MQG") center / contain no-repeat;
  color: transparent;
}

.vh-home-page .top-nav {
  display: none;
}

.vh-home-page .public-start-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--vh-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.vh-home-page .public-start-link:hover {
  background: var(--vh-primary-soft);
  text-decoration: none;
}

.vh-home-page .public-shell {
  width: 100%;
  margin: 0;
}

.vh-container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.vh-home h1,
.vh-home h2,
.vh-home h3,
.vh-home h4 {
  margin: 0;
  color: var(--vh-primary);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.vh-home p {
  margin: 0;
}

.vh-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vh-primary);
  color: #fff;
}

.vh-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.vh-hero-copy {
  max-width: 620px;
}

.vh-hero h1 {
  color: #fff;
  font-size: clamp(52px, 4.75vw, 76px);
  font-weight: 800;
  line-height: 1.12;
}

.vh-hero p {
  max-width: 500px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.vh-how {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
  color: #fff;
  font-weight: 800;
}

.vh-how .material-symbols-outlined {
  font-size: 30px;
}

.vh-how:hover {
  color: #6bfe9c;
  text-decoration: none;
}

.vh-hero-visual {
  justify-self: end;
  width: min(100%, 580px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.vh-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.vh-section {
  padding: 128px 0;
}

.vh-section h2 {
  text-align: center;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
}

.vh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 80px;
  text-align: center;
}

.vh-feature-grid article {
  display: grid;
  justify-items: center;
}

.vh-icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 24px;
  background: rgba(0, 64, 46, 0.05);
  color: var(--vh-primary);
  font-size: 48px;
}

.vh-feature-grid h3 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 800;
}

.vh-feature-grid p {
  margin-top: 8px;
  color: #404944;
  font-size: 14px;
  font-weight: 700;
}

.vh-steps-section {
  background: var(--vh-surface-low);
}

.vh-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 96px;
  text-align: center;
}

.vh-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: rgba(192, 201, 194, 0.55);
}

.vh-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.vh-steps span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 4px solid var(--vh-surface);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  color: var(--vh-primary);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.vh-steps h3 {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 800;
}

.vh-steps p {
  max-width: 220px;
  margin-top: 12px;
  color: #404944;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.vh-groups {
  background: var(--vh-surface);
}

.vh-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.vh-group-grid article {
  display: grid;
  min-height: 208px;
  place-items: center;
  gap: 22px;
  padding: 38px;
  border: 1px solid rgba(192, 201, 194, 0.5);
  border-radius: 28px;
  background: #fff;
  color: var(--vh-primary);
  text-align: center;
}

.vh-group-grid span {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 999px;
  background: var(--vh-surface-low);
  color: var(--vh-primary);
  font-size: 40px;
}

.vh-group-grid strong {
  font-size: 15px;
  font-weight: 800;
}

.vh-footer {
  min-height: 500px;
  padding: 92px 0 56px;
  background: var(--vh-primary);
  color: #fff;
}

.vh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.vh-footer-main {
  max-width: 460px;
}

.vh-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.vh-logo-box {
  width: 32px;
  height: 32px;
  background: #fff;
}

.vh-footer-main p {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.vh-footer-links {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.vh-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.vh-footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.vh-footer-links span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 20px;
}

.vh-footer-actions {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
}

@media (max-width: 900px) {
  .vh-home-page .topbar {
    min-height: 72px;
  }

  .vh-home-page .brand {
    font-size: 17px;
  }

  .vh-home-page .brand-mark {
    width: 34px;
    height: 34px;
  }

  .vh-home-page .public-start-link {
    min-width: 88px;
    min-height: 40px;
    padding-inline: 22px;
  }

  .vh-hero {
    min-height: auto;
    padding: 88px 0 104px;
  }

  .vh-hero-grid,
  .vh-feature-grid,
  .vh-steps,
  .vh-group-grid,
  .vh-footer-grid {
    grid-template-columns: 1fr;
  }

  .vh-hero-grid {
    gap: 48px;
  }

  .vh-hero-copy {
    max-width: 620px;
  }

  .vh-hero-visual {
    display: block;
  }

  .vh-section {
    padding: 84px 0;
  }

  .vh-feature-grid,
  .vh-group-grid {
    gap: 24px;
    margin-top: 56px;
  }

  .vh-steps {
    gap: 54px;
    margin-top: 64px;
  }

  .vh-steps::before {
    display: none;
  }

  .vh-footer-actions {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .vh-home-page .public-shell {
    width: 100%;
    margin: 0;
  }

  .vh-container {
    width: min(100% - 30px, 1280px);
  }

  .vh-hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .vh-hero p {
    margin-top: 22px;
    font-size: 17px;
  }

  .vh-hero-visual {
    padding: 10px;
    border-radius: 18px;
  }

  .vh-hero-visual img {
    border-radius: 12px;
  }

  .vh-feature-grid article,
  .vh-steps article {
    min-height: 170px;
  }

  .vh-group-grid article {
    min-height: 176px;
    padding: 28px 18px;
  }

  .vh-footer {
    padding-top: 72px;
  }
}
