:root {
  --ink: #2A3D45;
  --ink-soft: rgba(42, 61, 69, 0.72);
  --ink-muted: rgba(42, 61, 69, 0.54);
  --paper: #EEE5E5;
  --cloud: #EEE5E5;
  --mist: #EEE5E5;
  --line: rgba(42, 61, 69, 0.14);
  --line-strong: rgba(42, 61, 69, 0.26);
  --green: #06D6A0;
  --coral: #E5625E;
  --yellow: #FFE381;
  --light: #EEE5E5;
  --card-bg: #FEFEFE;
  --shadow: 0 24px 70px rgba(42, 61, 69, 0.16);
  --hard-shadow: 10px 10px 0 rgba(42, 61, 69, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.intro-section,
.products-section,
.features-section,
.industries-section,
.cases-section,
.pricing-detail-section,
.article-section,
.billing-section,
.legal-section,
.page-hero,
.case-hero,
.case-video-section,
.start-section {
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.start-section {
  background: var(--yellow);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  max-width: 15ch;
  font-size: 3.35rem;
}

h3 {
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 16px 56px;
  background: rgba(238, 229, 229, 0.92);
  border-bottom: 3px solid var(--coral);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  width: 104px;
}

.primary-nav,
.account-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 760;
}

.primary-nav {
  justify-content: center;
}

.primary-nav a,
.account-actions a {
  white-space: nowrap;
}

.primary-nav a:hover,
.account-actions a:hover {
  color: var(--ink);
}

.language-toggle {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 38px;
  background: var(--light);
  border: 2px solid var(--line-strong);
  border-radius: 8px;
}

.language-toggle-item,
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
}

.language-toggle-item {
  min-width: 42px;
  text-decoration: none;
}

.language-toggle-item + .language-toggle-item {
  border-left: 2px solid var(--line-strong);
}

.language-toggle-item.is-active {
  color: var(--light);
  background: var(--coral);
}

.nav-pill {
  gap: 7px;
  background: var(--light);
  border: 2px solid var(--line-strong);
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mist);
  border-color: var(--line);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: var(--hard-shadow);
}

.button-secondary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--line-strong);
  box-shadow: 6px 6px 0 rgba(229, 98, 94, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 72px;
  min-height: clamp(560px, calc(76vh - 78px), 680px);
  padding: 46px 56px 42px;
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--card-bg);
  background-size: 36px 36px;
  border-bottom: 3px solid var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo-title {
  max-width: 260px;
  line-height: 0;
}

.hero-logo-title img {
  width: min(260px, 62vw);
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 54ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.3rem;
}

.hero-detail {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.hero .lead {
  font-size: 1.42rem;
  font-weight: 900;
}

.hero .hero-detail {
  font-size: 1.14rem;
  font-weight: 850;
}

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

.platform-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--card-bg);
  background-size: 36px 36px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 16px 16px 0 rgba(42, 61, 69, 0.18);
  transform: rotate(1.2deg);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  color: var(--ink-muted);
  border-bottom: 3px solid var(--ink);
}

.preview-light {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.preview-light.coral {
  background: var(--coral);
}

.preview-light.yellow {
  background: var(--yellow);
}

.preview-light.green {
  background: var(--green);
}

.preview-bar strong {
  margin-left: auto;
  font-size: 0.84rem;
}

.preview-player {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  padding: 24px;
  color: var(--light);
  background:
    linear-gradient(135deg, rgba(42, 61, 69, 0.86), rgba(42, 61, 69, 0.58)),
    linear-gradient(90deg, rgba(238, 229, 229, 0.18) 2px, transparent 2px),
    linear-gradient(180deg, rgba(238, 229, 229, 0.18) 2px, transparent 2px),
    linear-gradient(135deg, var(--ink), var(--green));
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.broadcast-lines {
  position: absolute;
  inset: 72px 22px auto 22px;
  display: grid;
  gap: 10px;
}

.broadcast-lines span {
  display: block;
  height: 12px;
  color: transparent;
  background: rgba(238, 229, 229, 0.18);
  border: 1px solid rgba(238, 229, 229, 0.32);
  border-radius: 8px;
  font-size: 0;
}

.broadcast-lines span:nth-child(1) {
  width: 72%;
  background: rgba(6, 214, 160, 0.72);
}

.broadcast-lines span:nth-child(2) {
  width: 46%;
  margin-left: auto;
  background: rgba(255, 227, 129, 0.82);
}

.broadcast-lines span:nth-child(3) {
  width: 62%;
  background: rgba(229, 98, 94, 0.72);
}

.broadcast-lines span:nth-child(4) {
  width: 38%;
  margin-left: 18%;
  background: rgba(42, 61, 69, 0.82);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 0;
  background: rgba(238, 229, 229, 0.94);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 7px;
  content: "";
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid var(--ink);
}

.intro-section,
.products-section,
.features-section,
.industries-section,
.cases-section,
.privacy-section,
.pricing-detail-section,
.article-section,
.billing-section,
.legal-section,
.start-section {
  padding: 88px 56px;
  border-bottom: 1px solid var(--line);
}

.intro-section,
.pricing-detail-section,
.article-section,
.privacy-section,
.billing-section,
.legal-section,
.start-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-copy p,
.privacy-copy p,
.billing-section p,
.article-body p,
.legal-content p {
  max-width: 62ch;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.start-card {
  align-self: start;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--card-bg);
  background-size: 36px 36px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
}

.start-card p {
  max-width: 62ch;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.start-card a:not(.button) {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

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

.product-grid,
.feature-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.product-grid article,
.feature-grid article,
.industry-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  background: var(--card-bg);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(42, 61, 69, 0.1);
}

.product-grid article::before,
.feature-grid article::before,
.industry-grid article::before,
.case-grid article::before {
  display: block;
  width: 54px;
  height: 12px;
  margin-bottom: 28px;
  content: "";
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.product-grid article:nth-child(2)::before,
.feature-grid article:nth-child(2n)::before,
.industry-grid article:nth-child(2n)::before,
.case-grid article:nth-child(2)::before {
  background: var(--coral);
}

.product-grid article:nth-child(3)::before,
.feature-grid article:nth-child(3n)::before,
.industry-grid article:nth-child(3n)::before {
  background: var(--yellow);
}

.product-grid article:nth-child(4)::before,
.feature-grid article:nth-child(4n)::before,
.industry-grid article:nth-child(4n)::before {
  background: var(--ink);
}

.product-grid p,
.feature-grid p,
.industry-grid p,
.case-grid p,
.privacy-points span {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

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

.case-grid article::before {
  display: none;
}

.case-card-media {
  display: block;
  margin: 0 0 20px;
}

.case-card-media:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.case-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  object-fit: cover;
}

.case-card-media .case-card-image {
  margin: 0;
}

.case-grid h3 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.case-type {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.privacy-section {
  color: var(--light);
  background: var(--ink);
}

.privacy-section .eyebrow,
.privacy-copy p {
  color: rgba(238, 229, 229, 0.72);
}

.privacy-copy a {
  color: var(--light);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-points div {
  padding: 22px;
  color: var(--ink);
  background: var(--card-bg);
  border: 1px solid rgba(238, 229, 229, 0.14);
  border-radius: 8px;
}

.privacy-points strong {
  display: block;
  font-size: 1.1rem;
}

.privacy-points span {
  display: block;
  color: var(--ink-soft);
}

.billing-section p {
  margin-top: 2px;
  font-size: 1.18rem;
}

.billing-section .text-link {
  align-self: start;
  margin-top: 8px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  padding: 86px 56px;
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--card-bg);
  background-size: 36px 36px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: 4.6rem;
}

.legal-hero h1 {
  max-width: 14ch;
}

.compact-hero {
  min-height: 420px;
}

.price-table {
  display: grid;
  overflow: hidden;
  background: var(--card-bg);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
}

.price-table div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 22px 22px 34px;
  border-bottom: 2px solid var(--ink);
}

.price-table div::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  content: "";
  background: var(--green);
}

.price-table div:nth-child(2)::before {
  background: var(--coral);
}

.price-table div:nth-child(3)::before {
  background: var(--yellow);
}

.price-table div:nth-child(4)::before {
  background: var(--ink);
}

.price-table div:nth-child(5)::before {
  background: var(--ink);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--ink-muted);
  font-weight: 900;
}

.price-table strong {
  display: grid;
  gap: 4px;
  font-size: 1.45rem;
  line-height: 1;
}

.price-table strong small {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-table p {
  margin: 0;
  color: var(--ink-soft);
}

.price-estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 28px;
  padding: 22px;
  background: var(--card-bg);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
}

.price-estimator-wide {
  grid-column: 1 / -1;
}

.estimator-inputs,
.estimator-summary {
  display: grid;
  align-content: start;
}

.estimator-inputs {
  gap: 22px;
}

.estimator-summary {
  align-content: stretch;
  gap: 10px;
  padding: 18px;
  background: var(--card-bg);
  border: 2px solid var(--line-strong);
  border-radius: 8px;
}

.estimator-summary-title {
  max-width: none;
  margin-bottom: 4px;
  font-size: 1.25rem;
  line-height: 1.05;
}

.estimator-heading {
  display: grid;
  gap: 4px;
}

.estimator-heading h3 {
  max-width: none;
  font-size: 1.45rem;
  line-height: 1.05;
}

.estimator-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  align-self: end;
  margin-top: auto;
  padding: 16px;
  color: var(--light);
  background: var(--ink);
  border-radius: 8px;
}

.estimator-total span,
.estimator-total strong {
  display: inline-flex;
}

.estimator-total span {
  color: rgba(238, 229, 229, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimator-total strong {
  font-size: 2rem;
  line-height: 1;
}

.estimator-controls {
  display: grid;
  gap: 16px;
}

.estimator-control label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.estimator-control output {
  color: var(--ink-muted);
  font-weight: 950;
  white-space: nowrap;
}

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

.estimator-help {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.estimator-breakdown {
  display: grid;
}

.estimator-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.estimator-breakdown span {
  display: grid;
  gap: 2px;
}

.estimator-breakdown small {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.estimator-breakdown strong {
  color: var(--ink);
  white-space: nowrap;
}

.case-page {
  background: var(--paper);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
  gap: 34px 48px;
  align-items: start;
  padding: 56px;
  background:
    linear-gradient(90deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 61, 69, 0.035) 1px, transparent 1px),
    var(--card-bg);
  background-size: 36px 36px;
  border-bottom: 1px solid var(--line);
}

.case-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-top: 28px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(42, 61, 69, 0.18);
}

.case-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-video-section {
  padding: 72px 56px;
  border-bottom: 1px solid var(--line);
}

.case-video-frame-wide {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.case-heading h1 {
  max-width: 18ch;
  font-size: 4.2rem;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.case-hero .lead {
  font-size: 1.46rem;
  font-weight: 900;
}

.case-still {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 360px;
  margin-top: 46px;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(42, 61, 69, 0.18);
}

.case-still img,
.case-heading-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-kicker h2 {
  max-width: 18ch;
}

.case-image-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.case-image-stack img,
.article-inline-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(42, 61, 69, 0.14);
}

.article-inline-image {
  margin: 0 0 28px;
}

.article-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
}

.article-body {
  max-width: none;
}

.legal-content {
  max-width: 860px;
}

.article-body p {
  max-width: 86ch;
  font-size: 1.24rem;
}

.legal-content h2,
.legal-content h3 {
  max-width: none;
  margin: 38px 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  max-width: 88ch;
  font-size: 1.04rem;
}

.legal-content .updated {
  margin-top: 34px;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.case-quote {
  break-inside: avoid;
  margin: 28px 0;
  padding: 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(42, 61, 69, 0.14);
}

.case-quote p {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.case-quote cite {
  display: block;
  margin-top: 18px;
  color: rgba(42, 61, 69, 0.72);
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
}

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

.media-grid div {
  display: grid;
  place-items: center;
  min-height: 210px;
  color: var(--ink-muted);
  background: var(--card-bg);
  border: 3px dashed var(--line-strong);
  border-radius: 8px;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: end;
  padding: 64px 56px;
  color: var(--light);
  background:
    linear-gradient(135deg, rgba(42, 61, 69, 0.99), rgba(42, 61, 69, 0.94)),
    linear-gradient(90deg, rgba(6, 214, 160, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 214, 160, 0.2) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  border-top: 3px solid var(--ink);
}

.footer-main {
  display: grid;
  gap: 26px;
}

.footer-brand {
  filter: brightness(0) invert(1);
}

.footer-copy strong,
.footer-copy span {
  display: block;
}

.footer-copy strong {
  max-width: 14ch;
  font-size: 3rem;
  font-weight: 950;
  line-height: 0.95;
}

.footer-copy span {
  max-width: 58ch;
  margin-top: 16px;
  color: rgba(238, 229, 229, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.site-footer .footer-links nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-heading {
  max-width: none;
  margin: 0 0 8px;
  color: var(--light);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.footer-contact span,
.site-footer .footer-links nav a,
.footer-contact a {
  display: inline;
  min-height: 0;
  padding: 0;
  color: rgba(238, 229, 229, 0.72);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.96rem;
  font-weight: 760;
}

.site-footer .footer-links nav a:hover,
.footer-contact a:hover {
  color: var(--light);
  transform: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  color: rgba(238, 229, 229, 0.56);
  border-top: 1px solid rgba(238, 229, 229, 0.16);
  font-size: 0.9rem;
  font-weight: 760;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .account-actions {
    justify-content: end;
  }

  .hero,
  .intro-section,
  .pricing-detail-section,
  .article-section,
  .privacy-section,
  .billing-section,
  .legal-section,
  .start-section,
  .page-hero,
  .case-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

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

}

@media (max-width: 760px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 16px;
    padding: 18px 20px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    width: 100%;
    overflow-x: auto;
  }

  .account-actions {
    justify-self: end;
    justify-content: end;
    gap: 10px;
    width: auto;
  }

  .hero,
  .intro-section,
  .products-section,
  .features-section,
  .industries-section,
  .cases-section,
  .case-video-section,
  .pricing-detail-section,
  .article-section,
  .privacy-section,
  .billing-section,
  .legal-section,
  .start-section,
  .page-hero,
  .case-hero {
    padding: 54px 20px;
  }

  .hero {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .platform-preview {
    min-width: 0;
  }

  .preview-player {
    min-height: 260px;
  }

  .product-grid,
  .feature-grid,
  .industry-grid,
  .case-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .features-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .case-heading h1 {
    font-size: 3.2rem;
  }

  .case-still {
    min-height: 260px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-estimator {
    grid-template-columns: 1fr;
  }

  .platform-preview {
    transform: none;
  }

  .site-footer {
    gap: 34px;
    padding: 48px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy strong {
    font-size: 2.35rem;
  }
}
