:root {
  --color-bg: #121212;
  --color-surface: #1b1b1b;
  --color-surface-alt: #161616;
  --color-text: #ebf1d5;
  --color-muted: #81827c;
  --color-highlight: #ff4c4c;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(255, 255, 255, 0.04);
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Inter Display', 'Inter', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
  display: grid;
  gap: 0.75rem;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-centered .media-block img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.eyebrow {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  /* border-radius: 12px;
  object-fit: cover; */
}

.brand-name {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  padding: 0;
  margin: 0;
  font-weight: 500;
  color: var(--color-muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--color-text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-small);
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-text);
  color: #121212;
  box-shadow: 0 12px 32px rgba(235, 241, 213, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(235, 241, 213, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--color-text);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background: #121212;
}


.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.25rem);
}

.hero-copy {
  text-align: center;
  max-width: 720px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 4rem);
  margin-bottom: 1.25rem;
  color: rgba(235, 241, 213, 0.94);
}

.hero-copy p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(235, 241, 213, 0.7);
  margin: 0 auto;
}

.hero-art {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-art-frame {
  position: relative;
  width: min(1100px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.06);
  /* aspect-ratio: 16 / 8.8; */
  /* border-radius: 42px; */
  overflow: hidden;
  /* transform: perspective(1400px) rotateX(18deg) rotateZ(-11deg) translateY(35px);
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.65); */
}

.hero-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}





.section-centered .section-heading {
  margin-bottom: 2.5rem;
}

.section-centered .media-block {
  position: relative;
}

.section-centered .media-block::after {
  content: '';
  position: absolute;
  inset: 10% 20% auto;
  height: 60%;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 40%, rgba(235, 241, 213, 0.15), transparent 70%);
  z-index: -1;
}

.section-centered .media-block img {
  width: 100%;
  border-radius: 28px;
}


.riv-block {
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
}

.riv-card {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 32px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.riv-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.riv-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(235, 241, 213, 0.85);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.75) 100%);
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1.5rem;
}

.riv-fallback.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.riv-fallback p {
  font-family: 'Inter Display', 'Inter', sans-serif;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

.riv-icon {
  font-size: 2.25rem;
}

.section-centered .riv-block::after {
  display: none;
}


.alert-section {
  /* background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-large);
  padding: clamp(2.5rem, 5vw, 3.5rem); */
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 3.75rem);
}

.alert-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.alert-layout {
  display: grid;
  grid-template-columns: minmax(auto, 540px);
  /* gap: clamp(2rem, 5vw, 3.5rem); */
  align-items: center;
}

.alert-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(235, 241, 213, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.alert-column-left {
  align-items: flex-end;
  text-align: right;
}

.alert-column-right {
  align-items: flex-start;
  text-align: left;
}

.alert-callout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 240px;
  padding: 0.35rem 0.25rem;
}

.alert-column-left .alert-callout {
  flex-direction: row-reverse;
}

.alert-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(235, 241, 213, 0.9);
}

.alert-icon svg {
  width: 22px;
  height: 22px;
}

.alert-callout::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% + 26px);
  width: 30px;
  border-top: 1.5px solid rgba(235, 241, 213, 0.25);
  border-bottom: 1.5px solid rgba(235, 241, 213, 0.25);
}

.alert-column-left .alert-callout::after {
  right: -32px;
  border-right: 1.5px solid rgba(235, 241, 213, 0.25);
  border-left: none;
  border-radius: 0 18px 18px 0;
}

.alert-column-right .alert-callout::after {
  left: -32px;
  border-left: 1.5px solid rgba(235, 241, 213, 0.25);
  border-right: none;
  border-radius: 18px 0 0 18px;
}

.alert-card {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  /* box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55); */
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.alert-card img {
  width: 100%;
  display: block;
  border-radius: inherit;
}


.feature-spot {
  display: grid;
  justify-items: center;
  gap: clamp(2rem, 6vw, 3rem);
  padding: clamp(2.5rem, 6vw, 2.5rem) 0;
}

.feature-spot + .feature-spot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-spot__intro {
  text-align: center;
  max-width: 640px;
  display: grid;
  gap: 0.75rem;
}

.feature-spot__media {
  /* width: min(720px, 100%); */
  display: flex;
  justify-content: center;
  position: relative;
}

.feature-spot__media img {
  width: 100%;
  /* border-radius: 28px;
  box-shadow: var(--shadow-card); */
}

.feature-spot__media.overlap {
  width: min(960px, 100%);
}

#create-rules {
  padding-bottom: clamp(8rem, 24vw, 14rem);
}

.feature-spot__media.overlap .overlap-bg {
  /* filter: brightness(0.45); */
  transform: translateY(280px) scale(1.02);
}

.feature-spot__media.overlap .overlap-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  /* border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6); */
}

.alert-card img {
  width: 100%;
  display: block;
  border-radius: inherit;
}


/* Detection cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-large);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 360px;
  position: relative;
  isolation: isolate;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.85);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.95) 100%);
  z-index: 0;
}

.feature-content {
  padding: 1.75rem;
  display: grid;
  gap: 0.75rem;
  z-index: 1;
}

.feature-label {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.feature-content h3 {
  font-size: 1.2rem;
  color: rgba(235, 241, 213, 0.9);
}

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

.stat-card {
  background: linear-gradient(145deg, rgba(235, 241, 213, 0.1), rgba(18, 18, 18, 0.4));
  border: 1px solid rgba(235, 241, 213, 0.18);
  border-radius: var(--radius-large);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}

.stat-card.secondary {
  background: linear-gradient(160deg, rgba(255, 76, 76, 0.16), rgba(18, 18, 18, 0.6));
  border-color: rgba(255, 76, 76, 0.32);
}

.stat-value {
  font-family: 'Inter Display', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--color-highlight);
  margin: 0;
  line-height: 1;
}

.stat-caption {
  color: rgba(235, 241, 213, 0.8);
  font-size: 1rem;
}

/* Spotlight sections */
.spotlight {
  background: radial-gradient(circle at top, rgba(235, 241, 213, 0.1), transparent 55%);
}

.stack {
  display: grid;
  gap: clamp(3rem, 6vw, 4rem);
}

.two-col {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  /* make all two-col blocks a single column as requested */
  grid-template-columns: 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: clamp(2.25rem, 5vw, 3rem);
}

/* keep reversed direction behavior simple (still works visually in single-column layout) */
.two-col.reversed {
  direction: ltr;
}

/* Specific overlap styling for the Create Simple Rules block */
.two-col.rule-overlap .media-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 260px;
}

/* wrapper for stacked images */
.two-col.rule-overlap .img-stack {
  position: relative;
  width: min(560px, 92%);
  max-width: 720px;
  aspect-ratio: 16 / 9;
}

/* bottom image sits slightly offset and scaled down */
.two-col.rule-overlap .img-stack .img-bottom {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-medium);
  box-shadow: 0 28px 80px rgba(0,0,0,0.6);
  transform: translate(-10px, 12px) scale(0.98);
  z-index: 1;
}

/* top image overlays the bottom one */
.two-col.rule-overlap .img-stack .img-top {
  position: absolute;
  right: 6%;
  top: -6%;
  width: 68%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.6);
  z-index: 2;
  transform: rotate(-1.5deg);
  background: rgba(18,18,18,0.35);
}

/* tweak for small screens so overlap stays readable */
@media (max-width: 560px) {
  .two-col.rule-overlap .img-stack {
    aspect-ratio: auto;
    width: 100%;
  }
  .two-col.rule-overlap .img-stack .img-top {
    position: relative;
    width: 86%;
    top: 0;
    right: 0;
    transform: none;
    margin: -48px auto 0;
    display: block;
  }
  .two-col.rule-overlap .img-stack .img-bottom {
    transform: translateY(8px) scale(0.98);
  }
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  justify-items: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  width: min(100%, 560px);
  justify-self: center;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(18, 18, 18, 0.7));
  opacity: 0.4;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  color: rgba(235, 241, 213, 0.88);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.85);
  color: var(--color-text);
  font: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(235, 241, 213, 0.4);
  box-shadow: 0 0 0 3px rgba(235, 241, 213, 0.18);
}

.contact-form .submit {
  width: 100%;
  margin-top: 0.5rem;
}

.setup-visual {
  display: grid;
  gap: 0.85rem;
  /* opacity: 0.75; */
  width: min(480px, 100%);

}

.setup-visual img {
  width: 100%;
  /* border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.08); */
}

.contact-links {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.link-card {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border 0.2s ease;
  font-family: 'Inter Display', sans-serif;
  color: rgba(235, 241, 213, 0.92);
}

.link-card:hover,
.link-card:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.footnote {
  margin-top: 1rem;
  font-family: 'League Spartan', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(235, 241, 213, 0.5);
  text-align: center;
}

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-align: center;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .site-nav ul {
    gap: 1.2rem;
  }

  .hero-container {
    gap: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-art-frame {
    width: min(960px, 96vw);
    /* transform: perspective(1200px) rotateX(16deg) rotateZ(-8deg) translateY(28px); */
  }

  .alert-section {
    padding: clamp(2rem, 5vw, 3rem);
  }

  .alert-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vw, 3rem);
  }

  .alert-column {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .alert-column-left .alert-callout {
    flex-direction: row;
  }

  .alert-callout::after {
    display: none;
  }

  .feature-spot__media.overlap .overlap-card {
    width: 92%;
  }

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

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col.reversed {
    direction: ltr;
  }

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

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

  .contact-links .footnote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(18, 18, 18, 0.94);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open .nav-toggle-bar:nth-of-type(2) {
    transform: rotate(45deg) translateY(7px);
  }

  .site-header.nav-open .nav-toggle-bar:nth-of-type(3) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle-bar:nth-of-type(4) {
    transform: rotate(-45deg) translateY(-7px);
  }

  /* .hero-art-frame {
    border-radius: 32px;
    transform: perspective(900px) rotateX(12deg) rotateZ(-6deg) translateY(20px);
  } */

  .hero-copy p {
    font-size: 1rem;
  }

  .feature-card {
    min-height: 320px;
  }

  .riv-card {
    width: min(340px, 100%);
  }

  .alert-section {
    padding: clamp(1.75rem, 8vw, 2.5rem);
  }

  .alert-column {
    gap: 1.25rem;
  }

  .feature-spot__media.overlap .overlap-card {
    width: 88%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(92vw, 640px);
  }

  .hero-art-frame {
    width: 100%;
    /* transform: perspective(680px) rotateX(10deg) rotateZ(-4deg) translateY(14px); */
  }

  /* .btn {
    width: 100%;
  } */

  .hero-actions {
    flex-direction: column;
  }

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

  .riv-card {
    width: min(260px, 100%);
  }

  .alert-layout {
    align-items: stretch;
  }

  .alert-card {
    /* order: -1; */
    width: 100%;
  }

  #alert-anatomy .alert-card {
    width: min(100vw, calc(100% + 16vw));
    left: 50%;
    transform: translateX(-50%);
  }

  #alert-anatomy .alert-card img {
    max-width: none;
  }

  .alert-column {
    align-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .alert-callout {
    flex-direction: column;
    gap: 0.6rem;
  }

  .alert-column-left .alert-callout {
    flex-direction: column;
  }

  .alert-callout::after {
    display: none;
  }

  .feature-spot {
    gap: clamp(4rem, 6vw, 2rem);
    padding: clamp(1.5rem, 6vw, 2.5rem) 0;
  }

  #create-rules {
    padding-bottom: clamp(6rem, 24vw, 14rem);
  }

  .feature-spot__media img {
    border-radius: 22px;
  }

  .feature-spot__media.overlap .overlap-bg {
  transform: translateY(140px) scale(1.02);
  }

  .feature-spot__media.overlap .overlap-card {
    width: 92%;
    border-radius: 20px;
  }

  .link-card {
    width: 100%;
  }

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