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

:root {
  --bg: #0b0f14;
  --bg-raised: #0f141b;
  --bg-card: rgba(18, 23, 30, 0.92);
  --bg-card-strong: rgba(15, 20, 27, 0.96);
  --fg: #e8eef5;
  --fg-dim: #a9b4c2;
  --fg-muted: #677587;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);

  --blue: #4ea8de;
  --green: #6bcb77;
  --yellow: #d4c84a;
  --amber: #f0a050;
  --coral: #ef6461;
  --deep-red: #b93232;

  --accent: #f0a050;
  --accent-dim: rgba(240, 160, 80, 0.12);
  --accent-glow: rgba(240, 160, 80, 0.12);

  --radius: 22px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", "Fira Code", monospace;
}

html {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(78, 168, 222, 0.24), transparent 28%),
    radial-gradient(circle at 82% 82%, rgba(240, 160, 80, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0f14 0%, #0c121a 55%, #0b1016 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(11, 15, 20, 0.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-brand svg { width: 28px; height: 28px; }
.nav-brand .accent { color: var(--accent); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--fg-dim);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #0f1115 !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(240, 160, 80, 0.18);
}

.section {
  position: relative;
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 7.5rem 0;
}

.hero-section {
  padding-top: 9.5rem;
  padding-bottom: 6rem;
}

.compact-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem 2.5rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-copy {
  max-width: 480px;
  justify-self: end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(240, 160, 80, 0.22);
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.section-title {
  font-size: clamp(2.15rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-title {
  max-width: 12ch;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-dim);
  max-width: 640px;
}

.hero-sub {
  max-width: 60ch;
}

.grad-text {
  background: linear-gradient(135deg, var(--amber), var(--coral), #ffd49b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow-text {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-accent {
  background: var(--accent);
  color: #0e1116;
  box-shadow:
    0 16px 40px rgba(240, 160, 80, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(240, 160, 80, 0.26),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 160, 80, 0.25);
  background: rgba(240, 160, 80, 0.08);
  color: var(--accent);
}

.card,
.hero-shot,
.hero-note,
.workflow-visual,
.shot-card,
.cta-card,
.theme-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  padding: 1.8rem;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover,
.view-card:hover,
.theme-card:hover,
.shot-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.card::after,
.view-card::after,
.theme-card::after,
.shot-card::after {
  content: "";
  position: absolute;
  inset: 0 20% auto;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: opacity 0.35s ease;
}

.card:hover::after,
.view-card:hover::after,
.theme-card:hover::after,
.shot-card:hover::after {
  opacity: 0.55;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(240, 160, 80, 0.15);
  background: rgba(240, 160, 80, 0.08);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.view-card h3,
.theme-meta h3,
.hero-note h3,
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.card p,
.view-card p,
.theme-meta p,
.hero-note p,
.shot-card figcaption,
.hero-shot figcaption,
.step-card p,
.workflow-visual li,
.cta-copy {
  color: var(--fg-dim);
  line-height: 1.7;
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0 2.2rem;
}

.hero-points span {
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-dim);
  font-size: 0.84rem;
  font-weight: 600;
}

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

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.hero-shot,
.shot-card {
  position: relative;
  overflow: hidden;
}

.shot-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
}

.hero-shot img,
.shot-card img,
.shot-media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-shot .shot-media img {
  aspect-ratio: 1.18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.shot-card .shot-media img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.shot-media-manage img {
  object-position: left top;
}

.hero-shot figcaption,
.shot-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: 0.85rem;
}

.shot-expand {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 23, 0.82);
  color: var(--fg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.shot-media:hover .shot-expand,
.shot-media:focus-visible .shot-expand {
  opacity: 1;
  transform: translateY(0);
}

.shot-media:focus-visible {
  outline: 2px solid rgba(240, 160, 80, 0.75);
  outline-offset: -2px;
}

.hero-shot-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-card-strong);
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-shot-secondary img {
  aspect-ratio: 1.15;
}

.hero-note {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.workflow-preview {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat {
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 1.5rem;
  align-items: stretch;
}

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

.step-card {
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.step-index {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.workflow-visual {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.workflow-visual img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.proof-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.proof-list li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.92rem;
}

.proof-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.shot-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 9, 14, 0.82);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-shell {
  position: relative;
  width: min(1200px, 100%);
  max-height: calc(100vh - 4rem);
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(15, 19, 28, 0.96);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lightbox-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.35rem 0.2rem;
}

.lightbox-copy h3 {
  margin: 0;
  color: var(--fg);
  font-size: 1.1rem;
  font-weight: 700;
}

.lightbox-caption {
  margin: 0;
  color: var(--fg-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 23, 0.9);
  color: var(--fg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--border-glow);
}

.views-grid,
.feature-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.view-card,
.theme-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.view-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.view-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.view-card p {
  font-size: 0.86rem;
}

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

.theme-card {
  display: grid;
  gap: 1rem;
}

.theme-swatch {
  min-height: 124px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.theme-swatch.wide {
  min-height: 130px;
}

.theme-accent {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.theme-meta p {
  font-size: 0.84rem;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-dim);
  font-size: 0.86rem;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.platform-chip:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
  color: var(--fg);
}

.platform-chip svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge.soon {
  background: rgba(78, 168, 222, 0.12);
  color: var(--blue);
  text-transform: none;
  letter-spacing: 0;
}

.final-cta {
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.cta-card {
  padding: 2rem;
  text-align: center;
}

.cta-card .section-title {
  margin-inline: auto;
  max-width: 15ch;
}

.cta-copy {
  max-width: 680px;
  margin: 0 auto 2rem;
}

.site-footer {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--fg-muted);
  font-size: 0.78rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.content-page {
  min-height: 100vh;
  max-width: 820px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--accent); }

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.prose {
  color: var(--fg-dim);
  line-height: 1.85;
}

.prose h2 {
  margin: 2.4rem 0 0.8rem;
  color: var(--fg);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.prose ul {
  margin-bottom: 1rem;
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
}

.prose strong { color: var(--fg); }

.prose a {
  color: var(--accent);
  border-bottom: 1px solid rgba(240, 160, 80, 0.35);
  transition: border-color 0.2s ease;
}

.prose a:hover {
  border-color: var(--accent);
}

.prose code {
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.9em;
}

@media (max-width: 1100px) {
  .marketing-hero,
  .section-head,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    justify-self: start;
  }

  .feature-grid,
  .views-grid,
  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav {
    padding: 0 1rem;
  }

  .section {
    width: min(1240px, calc(100% - 2rem));
  }

  .hero-showcase,
  .screenshot-grid,
  .stats,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .hero-shot .shot-media img {
    aspect-ratio: 1.3;
  }
}

@media (max-width: 768px) {
  .nav-links .hide-m { display: none; }

  .hero-section {
    padding-top: 8.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .feature-grid,
  .views-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .platform-grid,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    width: min(1240px, calc(100% - 2rem));
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-nav {
    height: 64px;
  }

  .section {
    width: min(1240px, calc(100% - 1.5rem));
    padding: 4rem 0;
  }

  .hero-section {
    padding-top: 7.75rem;
  }

  .pill {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .btn {
    width: 100%;
  }

  .platform-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-shell {
    padding: 0.8rem;
    border-radius: 22px;
  }

  .lightbox-image {
    max-height: calc(100vh - 10rem);
  }

  .content-page {
    padding: 6.75rem 1rem 3rem;
  }
}
