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

:root {
  --bg: #f7f9ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --primary: #00a3ff;
  --secondary: #ff6a00;
  --teal: #10b7a3;
  --lime: #7ac943;
  --danger: #ef4444;
  --shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1160px;
  --nav-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(0, 163, 255, 0.22), transparent 33%),
    radial-gradient(circle at 82% 14%, rgba(255, 106, 0, 0.18), transparent 36%),
    radial-gradient(circle at 34% 88%, rgba(16, 183, 163, 0.14), transparent 38%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: -3;
}

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

/* Sichtbare Content-Verlinkungen (SEO + UX): nur im Fließtext */
main p a:not(.btn),
main li a:not(.btn) {
  color: #0b5fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
}

main p a:not(.btn):hover,
main li a:not(.btn):hover {
  color: #003fc4;
}

main p a:not(.btn):focus-visible,
main li a:not(.btn):focus-visible {
  outline: 2px solid rgba(11, 95, 255, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

p {
  margin-top: 0;
  color: var(--muted);
}

ul,
ol {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.36rem;
  color: var(--muted);
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(14px);
  background: rgba(247, 249, 255, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-badge {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 12px;
  background: #fff url("../img/logo-mark.svg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.brand-badge::before {
  content: none;
}

.brand small {
  display: block;
  font-size: 0.69rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.48rem 0.72rem;
  border-radius: 10px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: linear-gradient(110deg, var(--primary), var(--teal));
  color: #fff;
  padding-inline: 0.92rem;
  animation: ctaPulse 2.4s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(0, 163, 255, 0.26);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(110deg, #0d95e7, #0ea997);
  animation-play-state: paused;
}

.mobile-start-cta {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 163, 255, 0.28);
  background: linear-gradient(110deg, rgba(0, 163, 255, 0.1), rgba(16, 183, 163, 0.1));
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.72rem;
  white-space: nowrap;
}

.mobile-start-cta.active {
  border-color: rgba(0, 163, 255, 0.4);
  background: linear-gradient(110deg, rgba(0, 163, 255, 0.16), rgba(16, 183, 163, 0.16));
}

.hero {
  position: relative;
  padding: 5.1rem 0 3.2rem;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(0, 163, 255, 0.1), transparent 52%);
}

.hero-top-orbit {
  position: absolute;
  right: 4.2%;
  top: 1.2rem;
  width: 140px;
  height: 140px;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(0, 163, 255, 0.32));
  animation: heroOrbitSpin 16s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy {
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  max-width: 62ch;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 163, 255, 0.24);
  color: #0e7490;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(16, 183, 163, 0.12));
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.78rem 1.1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.btn-primary {
  color: #fff !important;
  background: linear-gradient(120deg, var(--primary), var(--teal));
}

a.btn,
a.btn:visited {
  text-decoration: none !important;
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.pill {
  border-radius: 999px;
  padding: 0.4rem 0.86rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.hero-benefits {
  margin: 0.15rem 0 1rem;
  padding-left: 1rem;
}

.hero-benefits li {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

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

.meta-card {
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.meta-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.12rem;
}

.meta-card span {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.orbit-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
  padding: 1.2rem;
  overflow: hidden;
}

.orbit-card h3 {
  margin-bottom: 0.85rem;
}

.orbit-canvas {
  position: relative;
  min-height: 260px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(0, 163, 255, 0.12), rgba(16, 183, 163, 0.16));
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.orbit-canvas svg {
  width: 100%;
  height: 260px;
}

.kpi-flyout {
  position: absolute;
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.kpi-flyout strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.kpi-flyout.one {
  left: 9%;
  top: 15%;
  animation: driftA 4.6s ease-in-out infinite;
}

.kpi-flyout.two {
  right: 7%;
  top: 30%;
  animation: driftB 5.6s ease-in-out infinite;
}

.kpi-flyout.three {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  animation: driftA 5s ease-in-out infinite;
}

.floating-svg {
  position: absolute;
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}

.floating-svg.a {
  top: 3%;
  right: -20px;
  width: 120px;
  animation: floatSpin 11s linear infinite;
}

.floating-svg.b {
  left: -40px;
  bottom: 8%;
  width: 100px;
  animation: floatY 7s ease-in-out infinite;
}

.section {
  padding: 4.3rem 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  margin-bottom: 0.55rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.card h3 {
  margin-bottom: 0.56rem;
}

.site-graphic-strip {
  padding: 0.6rem 0 0.1rem;
}

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

.graphic-tile {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 0.92rem;
}

.graphic-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 0.52rem;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.16), rgba(16, 183, 163, 0.18));
}

.graphic-tile h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.graphic-tile p {
  margin: 0;
  font-size: 0.88rem;
}

.graphic-tile-center {
  display: grid;
  align-content: center;
  gap: 0.45rem;
}

.graphic-wave {
  width: 100%;
  height: 84px;
}

.payment-hero-visual {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  padding: 0.7rem;
}

.payment-hero-visual svg {
  width: 100%;
  height: auto;
}

.payment-method-grid .card-icon {
  font-size: 1.24rem;
}

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

.blog-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card-body {
  padding: 0.82rem;
}

.blog-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0e7490;
  margin-bottom: 0.22rem;
}

.blog-date {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.48rem;
}

.blog-date time {
  color: #334155;
  font-weight: 700;
}

.post-hero-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  margin-top: 1rem;
}

.post-hero-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.article-layout {
  max-width: 880px;
}

/* Blogbeitrag: Hero-Box mit Thumbnail näher an den Artikelinhalt ziehen */
.blog-post-hero {
  padding-bottom: 1.35rem;
}

.blog-post-hero + .content-wrap .container.section.article-layout {
  padding-top: 0.5rem;
}

.article-body h2 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  font-size: 1.46rem;
}

.article-body p {
  margin-bottom: 0.7rem;
}

.article-body figure {
  margin: 1.1rem 0;
}

.article-body figcaption {
  margin-top: 0.4rem;
  color: #64748b;
  font-size: 0.82rem;
}

.info-callout {
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid rgba(0, 163, 255, 0.28);
  background: rgba(0, 163, 255, 0.1);
  margin: 1rem 0;
}

.seo-diagram {
  margin: 1.1rem 0;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.92));
  padding: 0.9rem;
}

.seo-diagram h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

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

.seo-diagram-step {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  background: #ffffff;
  padding: 0.7rem;
  font-size: 0.9rem;
  color: #334155;
}

.seo-diagram-step strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #0f172a;
}

.seo-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.5rem;
}

.seo-flow span {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 0.24rem 0.58rem;
  font-size: 0.8rem;
  color: #334155;
}

.author-box {
  margin-top: 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.author-box img {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.author-box h3 {
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}

.author-meta {
  font-size: 0.82rem;
  color: #0e7490;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.author-links a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.82);
}

.related-links {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 0.9rem;
}

.related-links h3 {
  margin-bottom: 0.45rem;
  font-size: 1.03rem;
}

.related-links ul {
  margin: 0.35rem 0 0;
}

.trust-stars-bar {
  padding: 0.55rem 0;
  margin: 0.12rem 0;
}

.trust-stars-bar + .section {
  padding-top: 3.25rem;
}

.trust-stars-bar + .content-wrap {
  padding-top: 0.55rem;
}

.trust-stars-shell {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
}

.trust-stars-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.trust-stars-glyph {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.trust-stars-rating {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
}

.reading-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  z-index: 91;
}

.reading-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.35);
  transition: width 0.08s linear;
}

.article-toc {
  margin: 0.95rem 0 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.93);
  padding: 0.85rem 0.95rem;
}

.article-toc h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.article-toc ol {
  margin: 0;
  padding-left: 1rem;
}

.article-toc li {
  margin-bottom: 0.3rem;
}

.article-toc a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.2);
  text-underline-offset: 2px;
}

.internal-link-hub {
  padding: 0.8rem 0 0.2rem;
}

.internal-link-shell {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  padding: 0.9rem;
}

.internal-link-shell h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

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

.internal-link-grid a {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.6rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #0f172a;
}

.hero-visual-panel {
  position: relative;
  min-height: 410px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(242, 250, 255, 0.92));
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14), inset 0 0 72px rgba(0, 163, 255, 0.05);
  overflow: hidden;
  padding: 1rem;
}

.hero-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 163, 255, 0.12), transparent 58%),
    radial-gradient(circle at 22% 86%, rgba(16, 183, 163, 0.08), transparent 52%);
  pointer-events: none;
}

.hero-panel-head {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 0.34rem 0.62rem;
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
}

.hero-panel-chart {
  position: relative;
  z-index: 2;
  margin-top: 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.42rem 0.5rem 0.32rem;
}

.hero-panel-chart svg {
  width: 100%;
  height: 190px;
  display: block;
}

.cockpit-grid {
  stroke: rgba(15, 23, 42, 0.12);
  stroke-width: 1;
}

.cockpit-axis {
  stroke: rgba(15, 23, 42, 0.2);
  stroke-width: 1.2;
}

.cockpit-line {
  fill: none;
  stroke: url(#panelLine);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cockpit-fill {
  fill: url(#panelFill);
  opacity: 0.92;
}

.cockpit-point {
  fill: #0ea5e9;
  stroke: #ffffff;
  stroke-width: 2;
}

.cockpit-point-current {
  fill: #0f766e;
  stroke-width: 2.2;
}

.cockpit-phase {
  fill: #64748b;
  font-size: 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-stat-grid {
  position: relative;
  z-index: 2;
  margin-top: 0.76rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.hero-stat-card {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.56rem 0.56rem 0.52rem;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.hero-stat-card small {
  display: block;
  color: #64748b;
  font-size: 0.68rem;
  margin-bottom: 0.05rem;
}

.hero-stat-card strong {
  display: block;
  font-size: 1.02rem;
  color: #0f172a;
}

.hero-panel-foot {
  position: relative;
  z-index: 2;
  margin: 0.72rem 0 0;
  color: #334155;
  font-size: 0.8rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.18rem;
  margin-bottom: 0.72rem;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.18), rgba(16, 183, 163, 0.2));
}

.service-marquee {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  color: var(--muted);
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

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

.network-chip {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0.55rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
}

.network-chip small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 0.12rem;
}

.network-chip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

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

.network-logo-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.network-logo-card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.55rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.network-logo-card img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.network-logo-grid-large .network-logo-card {
  padding: 0.75rem 0.65rem;
}

.network-logo-grid-large .network-logo-card img {
  height: 58px;
}

.flow-visual {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
}

.flow-visual svg {
  width: 100%;
  height: 220px;
}

.promise {
  border-left: 4px solid var(--teal);
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(16, 183, 163, 0.12);
}

.promise ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
}

.promise li {
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-weight: 600;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.calc-panel,
.calc-result {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.calc-group {
  margin-bottom: 1.1rem;
}

.calc-audience-box {
  border-radius: 14px;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.12), rgba(16, 183, 163, 0.12));
}

.calc-audience-box strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Sora", sans-serif;
}

.calc-audience-box p {
  margin: 0;
  color: #334155;
  font-size: 0.84rem;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.seg {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.seg.top-tabs {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.24rem;
}

.seg button {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.seg button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, var(--primary), var(--teal));
}

.seg.top-tabs button {
  flex: 1;
  border-radius: 11px;
  padding-block: 0.58rem;
  text-align: center;
}

.picker {
  margin-top: 0.6rem;
}

.picker select {
  width: 100%;
}

.flag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.flag-btn {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.flag-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(110deg, var(--primary), var(--teal));
}

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

.calc-note-inline {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.4rem;
}

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

.platform-card {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 0.48rem 0.45rem 0.42rem;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.24rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.platform-card img {
  width: 100%;
  height: 33px;
  object-fit: contain;
}

.platform-card span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}

.platform-card.active {
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(0, 163, 255, 0.22);
  background: linear-gradient(140deg, rgba(0, 163, 255, 0.15), rgba(16, 183, 163, 0.18));
}

.platform-card.active span {
  color: #0f172a;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.calc-budget-poles {
  margin-top: 0.35rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 700;
}

.calc-promise {
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.78rem 0.85rem;
}

.calc-promise h3 {
  margin: 0 0 0.42rem;
  font-size: 0.92rem;
}

.calc-promise ul {
  margin: 0;
}

.calc-promise li {
  margin-bottom: 0.24rem;
  color: #0f172a;
  font-size: 0.83rem;
}

.range-value {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  margin-top: 0.15rem;
}

.calc-result h3 {
  margin-bottom: 0.8rem;
}

.result-grid {
  display: grid;
  gap: 0.68rem;
}

.result-item {
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.result-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
}

.result-item em {
  display: block;
  font-style: normal;
  color: #334155;
  font-size: 0.84rem;
  margin-top: 0.2rem;
}

.result-item [data-result="primary-sub"],
.result-item [data-result="secondary-sub"] {
  display: block;
  color: #334155;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.case-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.case-stat {
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.62rem;
}

.case-stat strong {
  display: block;
  font-size: 1.1rem;
}

.bar-chart {
  display: grid;
  gap: 0.65rem;
}

.bar-row {
  display: grid;
  gap: 0.32rem;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--primary), var(--teal));
}

.bar-fill.alt {
  background: linear-gradient(120deg, var(--secondary), var(--primary));
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.38rem 0.74rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.influencer-card {
  position: relative;
  overflow: hidden;
}

.influencer-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -38px;
  top: -38px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.22), transparent 72%);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.small-note {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.8rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stars {
  letter-spacing: 0.18em;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 800;
}

.person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, var(--primary), var(--secondary));
}

.accordion-item {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.accordion-trigger span:last-child {
  font-size: 1.05rem;
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.page-hero {
  padding: 4.2rem 0 2.8rem;
}

.page-hero-compact {
  padding: 2.45rem 0 1.35rem;
}

.page-hero-compact .hero-box {
  padding: 1.35rem 1.45rem;
}

.page-hero-compact .blog-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero-compact .blog-hero-copy p {
  max-width: none;
}

.page-hero-compact h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
}

.post-hero-image-compact {
  margin-top: 0.65rem;
  max-width: 760px;
}

.page-hero-compact .blog-hero-visual {
  margin-top: 0;
  max-width: none;
}

.post-hero-image-compact img {
  max-height: 210px;
}

.page-hero .hero-box {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.64));
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.22), transparent 66%);
}

.hero-box::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  left: -50px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.2), transparent 70%);
}

.content-wrap {
  padding: 0 0 4rem;
}

.steps {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: item;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem 1rem 1rem 3.1rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.steps li::before {
  content: counter(item);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  background: linear-gradient(110deg, var(--primary), var(--teal));
}

.form-shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

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

label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

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

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

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

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

.note {
  font-size: 0.83rem;
  color: #64748b;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}

.form-alert {
  display: none;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.form-alert.error {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

th {
  background: rgba(15, 23, 42, 0.06);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.notice {
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px solid rgba(122, 201, 67, 0.42);
  background: rgba(122, 201, 67, 0.13);
}

.legal-section {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.87);
  padding: 1.2rem;
  margin-bottom: 0.9rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.8rem 0 2.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.footer-col h4 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.copy {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1rem;
  font-size: 0.83rem;
  color: #64748b;
}

.footer-rating {
  margin-top: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.footer-rating-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.footer-rating-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.footer-rating-value {
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}

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

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes floatSpin {
  from {
    transform: rotate(0deg) translateY(0px);
  }
  50% {
    transform: rotate(180deg) translateY(-8px);
  }
  to {
    transform: rotate(360deg) translateY(0px);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroOrbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(0, 163, 255, 0.26);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 163, 255, 0.34);
  }
}

@keyframes floatVisual {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .calc-layout,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-layout,
  .network-grid,
  .calc-extra {
    grid-template-columns: 1fr;
  }

  .graphic-strip-grid {
    grid-template-columns: 1fr;
  }

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

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-compact .blog-hero-split {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 4rem;
  }

  .hero-top-orbit {
    width: 92px;
    height: 92px;
    right: 2.5%;
    top: 1rem;
  }

  .hero-visual-panel {
    min-height: 340px;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .reading-progress {
    top: 74px;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.55rem;
  }

  .brand {
    justify-self: start;
  }

  .brand small {
    display: none;
  }

  .mobile-start-cta {
    display: inline-flex;
    justify-self: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: calc(var(--nav-height) - 2px);
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 0.35rem;
  }

  .main-nav a {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.5;
  }

  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .orbit-canvas {
    min-height: 220px;
  }

  .orbit-canvas svg {
    height: 220px;
  }

  .page-hero .hero-box {
    padding: 1.5rem;
  }

  .internal-link-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-hero + .content-wrap .container.section.article-layout {
    padding-top: 0.35rem;
  }
}
