:root {
  --ink: #101828;
  --muted: #5d6878;
  --navy: #0b1426;
  --navy-soft: #13213a;
  --brand: #ae1748;
  --brand-dark: #8d1039;
  --brand-wash: #fff2f6;
  --blue: #1774d1;
  --surface: #f4f7fb;
  --line: #dce3ec;
  --white: #fff;
  --radius: 18px;
  --radius-small: 10px;
  --shadow: 0 22px 60px rgba(14, 27, 49, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 72px;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
.btn {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus {
  color: var(--brand);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(23, 116, 209, 0.35);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

.container {
  width: min(1170px, calc(100% - 48px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

/* Navigation */

.site-nav.navbar-default {
  min-height: 72px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.site-nav .site-logo {
  display: flex;
  width: 222px;
  height: 72px;
  align-items: center;
}

.site-nav .site-logo img {
  display: block;
  width: 222px;
  height: auto;
}

.site-nav .navbar-nav {
  margin-top: 11px;
  margin-bottom: 11px;
}

.site-nav .navbar-nav > li > a {
  margin: 0 2px;
  padding: 14px 13px;
  color: #344054;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav .navbar-nav > li > a:hover,
.site-nav .navbar-nav > li > a:focus,
.site-nav .navbar-nav > .active > a,
.site-nav .navbar-nav > .active > a:hover {
  color: var(--brand);
  background: var(--brand-wash);
}

.site-nav .navbar-nav > .nav-cta > a {
  margin-left: 8px;
  padding-right: 18px;
  padding-left: 18px;
  color: var(--white);
  background: var(--brand);
}

.site-nav .navbar-nav > .nav-cta > a:hover,
.site-nav .navbar-nav > .nav-cta > a:focus {
  color: var(--white);
  background: var(--brand-dark);
}

.site-nav .navbar-toggle {
  margin-top: 15px;
  margin-right: 0;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.site-nav .navbar-toggle:hover,
.site-nav .navbar-toggle:focus {
  background: var(--surface);
}

.site-nav .navbar-toggle .icon-bar {
  width: 22px;
  background: var(--ink);
}

/* Home hero */

.intro-header {
  position: relative;
  display: flex;
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: url(../img/splash1.jpg) no-repeat center center;
  background-size: cover;
  isolation: isolate;
  text-align: left;
}

.intro-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.96) 0%, rgba(7, 20, 40, 0.84) 48%, rgba(7, 20, 40, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 16, 31, 0.22), rgba(7, 16, 31, 0.22));
  content: "";
}

.intro-header::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.intro-header .intro-message {
  padding: 76px 0 64px;
}

.intro-header .eyebrow,
.page-hero .eyebrow {
  color: #ff88ad;
}

.intro-header .intro-message > h1 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-shadow: none;
}

.intro-header .hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
  font-weight: 450;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  gap: 12px;
}

.btn {
  border-radius: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-lg {
  padding: 13px 20px;
  font-size: 15px;
}

.btn-primary {
  border-color: var(--brand);
  background: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.16);
}

.intro-social-buttons {
  display: flex;
  margin: 42px 0 0;
  gap: 24px;
}

.intro-social-buttons > li {
  padding: 0;
}

.intro-social-buttons a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.intro-social-buttons a:hover,
.intro-social-buttons a:focus {
  color: var(--white);
  transform: translateY(-1px);
}

/* Interior heroes */

.page-hero {
  position: relative;
  display: flex;
  min-height: 400px;
  padding: 64px 0;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  text-align: left;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 34, 0.94), rgba(11, 28, 51, 0.76));
  content: "";
}

.services-header.page-hero {
  background: url(../img/background-services.jpg) no-repeat center center;
  background-size: cover;
}

.blog-header.page-hero {
  background: url(../img/background-blog.jpg) no-repeat center center;
  background-size: cover;
}

.adi-header.page-hero,
.presentation-header {
  background: url(../img/background-podcast.jpg) no-repeat center center;
  background-size: cover;
}

.wwwww-header.page-hero {
  background: url(../img/background-wwwww.jpg) no-repeat center center;
  background-size: cover;
}

.page-hero .row {
  display: flex;
  align-items: center;
}

.page-hero .intro-message {
  padding: 0;
}

.page-hero .intro-message > h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-shadow: none;
}

.page-hero .intro-message > h2 {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-weight: 450;
  letter-spacing: -0.015em;
  line-height: 1.55;
  text-shadow: none;
}

.page-hero-art {
  width: 100%;
  max-width: 330px;
  max-height: 260px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2));
}

.page-hero-art.podcast-art {
  max-width: 260px;
  max-height: 260px;
}

.service-nav {
  display: grid;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.service-nav a {
  display: flex;
  padding: 9px 11px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.service-nav a:hover,
.service-nav a:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.podcast-links {
  display: grid;
  gap: 10px;
}

.podcast-links .btn {
  display: flex;
  padding: 12px 15px;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.podcast-links .btn:hover,
.podcast-links .btn:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
}

/* Home content */

.content-section-a,
.content-section-b,
.back-white,
.back-gray {
  padding: 88px 0;
}

.content-section-a,
.back-white {
  background: var(--white);
}

.content-section-b,
.back-gray {
  border: 0;
  background: var(--surface);
}

#wwwww .row,
#services .row,
#blog .row,
#podcast .row,
#opensource .row,
#contact .row {
  display: flex;
  align-items: center;
}

.section-heading {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading a {
  color: inherit;
  text-decoration: none;
}

.section-heading a::after {
  display: inline-block;
  margin-left: 10px;
  color: var(--brand);
  content: "→";
  font-size: 0.72em;
  transition: transform 160ms ease;
}

.section-heading a:hover::after,
.section-heading a:focus::after {
  transform: translateX(4px);
}

.section-visual {
  display: flex;
  min-height: 330px;
  padding: 18px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 40, 0.07);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff 0%, #edf2f8 100%);
  box-shadow: var(--shadow);
}

a.section-visual:hover,
a.section-visual:focus {
  border-color: rgba(174, 23, 72, 0.22);
  transform: translateY(-4px);
}

.section-visual .img-responsive,
a.section-visual .img-responsive {
  width: 100%;
  max-height: 360px;
  margin: 0 auto;
  object-fit: contain;
}

.content-section-a ul,
.content-section-b ul,
.back-white ul,
.back-gray ul {
  padding-left: 0;
  list-style: none;
}

.content-section-a li,
.content-section-b li,
.back-white li,
.back-gray li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
}

.content-section-a li::before,
.content-section-b li::before,
.back-white li::before,
.back-gray li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--brand);
  content: "↳";
  font-weight: 800;
}

.btn-default {
  color: #344054;
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
}

.btn-default:hover,
.btn-default:focus {
  color: var(--brand);
  border-color: rgba(174, 23, 72, 0.28);
  background: var(--brand-wash);
}

.network-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

ul.posts {
  display: grid;
  margin: 18px 0 24px;
  gap: 2px;
}

ul.posts li {
  margin: 0;
  padding: 11px 14px;
  border-left: 2px solid var(--line);
}

ul.posts li::before {
  display: none;
}

ul.posts li:hover {
  border-left-color: var(--brand);
  background: var(--brand-wash);
}

ul.posts a {
  color: var(--ink);
  font-weight: 600;
}

.contact-links {
  display: grid;
  gap: 11px;
}

.contact-links .lead {
  display: grid;
  margin: 0;
  align-items: center;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  font-size: 14px;
}

.contact-links .btn {
  display: flex;
  width: 100%;
  align-items: center;
}

/* Service and information pages */

.back-white > .container > .row > .col-lg-12 > div,
.back-gray > .container > .row > .col-lg-12 > div,
#events .container > .row > div,
#impressum .container > .row > div:first-child {
  max-width: 980px;
}

.section-page-title {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-page-summary {
  max-width: 800px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.back-white h3,
.back-gray h3 {
  margin: 34px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.back-white .lead,
.back-gray .lead {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.75;
}

.service-directory {
  padding: 88px 0;
  background: var(--surface);
}

.service-directory .section-page-title {
  max-width: 880px;
}

.service-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  min-height: 300px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.service-card-urgent {
  border-color: rgba(174, 23, 72, 0.2);
  background: linear-gradient(145deg, #fff 0%, var(--brand-wash) 100%);
}

.service-card h3 {
  margin: 4px 0 16px;
  font-size: 28px;
  line-height: 1.18;
}

.service-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.service-card h3 a:hover,
.service-card h3 a:focus {
  color: var(--brand);
}

.service-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-card .card-link {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.service-card .card-link span {
  color: var(--brand);
  transition: transform 160ms ease;
}

.service-card .card-link:hover span,
.service-card .card-link:focus span {
  transform: translateX(4px);
}

.service-detail-hero,
.product-hero {
  padding: 58px 0 78px;
  color: var(--white);
  background: linear-gradient(110deg, rgba(7, 16, 31, 0.97), rgba(14, 42, 77, 0.91)), url(../img/background-services.jpg) no-repeat center center;
  background-size: cover;
}

.product-hero {
  background: radial-gradient(circle at 82% 22%, rgba(23, 116, 209, 0.36), transparent 34%), linear-gradient(125deg, #091426 0%, #10284a 100%);
}

.service-detail-hero .row,
.product-hero .row {
  display: flex;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 52px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  gap: 9px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: var(--white);
}

.service-detail-hero h1,
.product-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.service-lead,
.product-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.62;
}

.service-detail-hero .hero-actions,
.product-hero .hero-actions {
  margin-top: 34px;
}

.service-facts {
  margin: 0 0 0 38px;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.service-facts > div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.service-facts > div:last-child {
  border-bottom: 0;
}

.service-facts dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.service-detail-body,
.product-body {
  padding: 88px 0;
  background: var(--white);
}

.service-copy,
.product-copy {
  max-width: 860px;
  margin: 0 auto;
  color: #273244;
  font-size: 17px;
  line-height: 1.82;
}

.service-copy h2,
.product-copy h2 {
  margin: 2.2em 0 0.65em;
  font-size: 32px;
  line-height: 1.2;
}

.service-copy h2:first-child,
.product-copy h2:first-child {
  margin-top: 0;
}

.service-copy h3,
.product-copy h3 {
  margin: 1.8em 0 0.55em;
  font-size: 23px;
  line-height: 1.25;
}

.service-copy ul,
.product-copy ul {
  margin: 22px 0 28px;
  padding-left: 0;
  list-style: none;
}

.service-copy li,
.product-copy li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 25px;
}

.service-copy li::before,
.product-copy li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: var(--brand);
  content: "↳";
  font-weight: 800;
}

.service-copy ol {
  margin: 22px 0 28px;
  padding-left: 24px;
}

.service-copy ol li {
  padding-left: 4px;
}

.service-copy ol li::before {
  display: none;
}

.service-inline-cta {
  margin-top: 54px;
  padding: 34px;
  border: 1px solid rgba(174, 23, 72, 0.18);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.service-inline-cta h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.service-inline-cta p {
  margin: 0 0 22px;
  color: var(--muted);
}

.related-services {
  padding: 72px 0 82px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.related-services h2 {
  margin: 0 0 30px;
  font-size: 34px;
}

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

.related-service-grid a {
  display: flex;
  min-height: 82px;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  text-decoration: none;
}

.related-service-grid a:hover,
.related-service-grid a:focus {
  color: var(--brand);
  border-color: rgba(174, 23, 72, 0.28);
  transform: translateY(-2px);
}

.product-logo {
  display: block;
  width: min(360px, 90%);
  margin: 0 auto;
  border-radius: 26%;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.3));
}

.product-feature-grid {
  display: grid;
  width: calc(100% + 160px);
  margin: 52px -80px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-feature-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.product-feature-grid .feature-number {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-feature-grid h3 {
  margin: 18px 0 10px;
  font-size: 19px;
}

.product-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-screenshot {
  width: calc(100% + 220px);
  margin: 56px -110px;
}

.product-screenshot img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-screenshot figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.product-copy pre {
  margin: 26px 0;
  padding: 20px;
  overflow-x: auto;
  color: #dce8f8;
  border: 0;
  border-radius: var(--radius-small);
  background: var(--navy);
  font-size: 14px;
  line-height: 1.65;
}

.product-cta .btn + .btn {
  margin-left: 8px;
}

/* Blog and long-form content */

#blogs .content-section-a,
#episodes .content-section-a,
#events .content-section-b,
#impressum .content-section-a {
  padding-top: 72px;
}

#blogs .container,
#events .container,
#impressum .container {
  max-width: 980px;
}

#blogs .adi-list {
  display: flex;
  margin: 0 0 46px;
  padding: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface);
}

#blogs .adi-list h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

#blogs .adi-list h2 {
  margin-top: 6px;
}

.post-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.post-meta a {
  color: var(--ink);
  font-weight: 700;
}

.post {
  max-width: 820px;
  margin: 0 auto;
  color: #273244;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.post h2,
.post h3,
.post h4 {
  margin-top: 2em;
  line-height: 1.25;
}

.post h2 {
  font-size: 30px;
}

.post h3 {
  font-size: 23px;
}

.post img {
  max-width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: var(--radius-small);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.1);
}

.post blockquote {
  margin: 28px 0;
  padding: 8px 0 8px 24px;
  color: #475467;
  border-left: 4px solid var(--brand);
  font-size: 19px;
}

.post pre {
  margin: 26px 0;
  padding: 20px;
  overflow-x: auto;
  color: #dce8f8;
  border: 0;
  border-radius: var(--radius-small);
  background: var(--navy);
  font-size: 14px;
  line-height: 1.65;
}

.post :not(pre) > code {
  padding: 0.15em 0.4em;
  color: var(--brand-dark);
  border-radius: 5px;
  background: var(--brand-wash);
}

.post table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
}

.post th,
.post td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.post th {
  background: var(--surface);
  font-weight: 700;
}

#blog > .content-section-a .container > .row {
  display: block;
}

#blog > .content-section-a ul.posts {
  margin-top: 30px;
}

#blog > .content-section-a ul.posts li {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  border-left: 0;
}

/* Podcast */

#episodes .container {
  max-width: 1040px;
}

#episodes .container > .row > .section-page-title,
#episodes .container > .row > .section-page-summary {
  margin-right: 15px;
  margin-left: 15px;
}

.episode-number {
  margin: 0;
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.adi-list {
  display: flex;
  margin: 0 0 22px;
  padding: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.adi-list:hover {
  border-color: rgba(174, 23, 72, 0.22);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.09);
}

.adi-list .img-responsive {
  width: 100%;
  border-radius: 8px;
}

.adi-list h3 {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.adi-list h3 a {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.tags {
  margin-top: 12px;
  color: var(--brand);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#episodes .float-image {
  float: none;
  width: 100%;
  margin: 0 0 24px;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
}

.video-container {
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.video-container + * {
  margin-top: 12px;
}

/* Footer */

#footer footer {
  padding: 72px 0 28px;
  color: #aeb9c9;
  background: var(--navy);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--white);
}

.footer-grid p {
  max-width: 440px;
  color: #9aa8ba;
  font-size: 14px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-legal a {
  color: #dbe3ed;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  color: #68778d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

/* Responsive */

@media (max-width: 1199px) {
  .site-nav .site-logo,
  .site-nav .site-logo img {
    width: 190px;
  }

  .site-nav .navbar-nav > li > a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 12px;
  }

  .page-hero {
    min-height: 370px;
  }
}

@media (max-width: 991px) {
  .intro-header {
    min-height: 620px;
  }

  .page-hero .intro-message > h1 {
    font-size: 48px;
  }

  .page-hero-art {
    max-height: 220px;
  }

  .section-visual {
    min-height: 280px;
  }

  .contact-links .lead {
    display: block;
  }

  .contact-links .lead > span {
    display: block;
    margin-top: 5px;
  }

  .footer-grid {
    display: block;
  }

  .product-feature-grid,
  .product-screenshot {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

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

  .footer-links,
  .footer-legal {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }

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

  .site-nav.navbar-default {
    min-height: 64px;
  }

  .site-nav .site-logo {
    width: 176px;
    height: 64px;
    margin-left: 0;
  }

  .site-nav .site-logo img {
    width: 176px;
  }

  .site-nav .navbar-collapse {
    max-height: calc(100vh - 64px);
    padding: 8px 15px 16px;
    border-color: var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(16, 24, 40, 0.1);
  }

  .site-nav .navbar-nav {
    margin: 0;
  }

  .site-nav .navbar-nav > li > a {
    margin: 2px 0;
    padding: 11px 12px;
    font-size: 14px;
  }

  .site-nav .navbar-nav > .nav-cta > a {
    margin: 8px 0 0;
    text-align: center;
  }

  .intro-header {
    min-height: auto;
    background-position: 44% center;
  }

  .intro-header::before {
    background: linear-gradient(90deg, rgba(7, 16, 31, 0.96), rgba(7, 20, 40, 0.78));
  }

  .intro-header .intro-message {
    padding: 88px 0 68px;
  }

  .intro-header .intro-message > h1 {
    font-size: 46px;
    letter-spacing: -0.05em;
  }

  .intro-header .hero-lead {
    margin-top: 20px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    max-width: 320px;
    margin-top: 28px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .intro-social-buttons {
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 14px 20px;
  }

  .intro-social-buttons > li {
    display: inline-block;
    margin: 0;
  }

  .page-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .page-hero .row,
  .service-detail-hero .row,
  .product-hero .row,
  #wwwww .row,
  #services .row,
  #blog .row,
  #podcast .row,
  #opensource .row,
  #contact .row,
  .footer-grid {
    display: block;
  }

  .page-hero .intro-message > h1 {
    font-size: 42px;
  }

  .page-hero .intro-message > h2 {
    font-size: 18px;
  }

  .page-hero-art {
    max-width: 240px;
    max-height: 200px;
    margin-bottom: 36px;
  }

  .service-nav,
  .podcast-links {
    margin-top: 36px;
  }

  .service-grid,
  .product-feature-grid,
  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-facts {
    margin: 42px 0 0;
  }

  .product-logo {
    max-width: 240px;
    margin-top: 48px;
  }

  .service-detail-body,
  .product-body,
  .service-directory {
    padding: 64px 0;
  }

  .service-copy,
  .product-copy {
    font-size: 16px;
  }

  .product-cta .btn {
    display: block;
    width: 100%;
  }

  .product-cta .btn + .btn {
    margin: 10px 0 0;
  }

  .content-section-a,
  .content-section-b,
  .back-white,
  .back-gray {
    padding: 64px 0;
  }

  .section-heading {
    font-size: 36px;
  }

  .section-visual {
    min-height: 260px;
    margin-top: 40px;
  }

  .col-sm-pull-6 .section-visual {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .lead {
    font-size: 17px;
  }

  .contact-links .lead {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
  }

  .contact-links .lead > span {
    margin: 0;
  }

  .adi-list,
  #blogs .adi-list {
    display: block;
    padding: 14px;
  }

  .adi-list > div + div {
    margin-top: 18px;
  }

  #blog > .content-section-a ul.posts li {
    display: block;
  }

  .post {
    font-size: 16px;
  }

  .post table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-links,
  .footer-legal {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .intro-header .intro-message > h1 {
    font-size: 39px;
  }

  .contact-links .lead {
    display: block;
  }

  .contact-links .lead > span {
    margin-top: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
