:root {
  --bg-top: #effbf1;
  --bg-bottom: #f8f6f0;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: #10261b;
  --text: #10291f;
  --muted: #567364;
  --accent: #14d075;
  --accent-strong: #0e7a4a;
  --accent-soft: #ccffe0;
  --line: rgba(11, 56, 35, 0.11);
  --shadow: 0 24px 70px rgba(10, 63, 39, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 12%, rgba(122, 255, 179, 0.55), transparent 20%),
    radial-gradient(circle at 90% 8%, rgba(212, 255, 226, 0.75), transparent 18%),
    radial-gradient(circle at 50% 40%, rgba(180, 255, 210, 0.2), transparent 25%),
    linear-gradient(180deg, var(--bg-top) 0%, #f7fbf8 50%, var(--bg-bottom) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.35;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 56, 35, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 56, 35, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.75rem, 7vw, 7rem) 0;
}

.section--compact {
  padding-top: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(250, 253, 249, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 42px rgba(11, 53, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #f4fff8;
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0b6d43 0%, #18c974 100%);
  box-shadow: 0 14px 30px rgba(14, 122, 74, 0.28);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand__text small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.32rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.92rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #f5fff7;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #0d6d44 0%, #11985b 100%);
  box-shadow: 0 16px 30px rgba(14, 122, 74, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(14, 122, 74, 0.24);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost {
  background: rgba(11, 56, 35, 0.06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.6rem 0.92rem;
  border: 1px solid rgba(14, 122, 74, 0.09);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(11, 53, 34, 0.05);
}

.eyebrow::before {
  width: 0.52rem;
  height: 0.52rem;
  flex: none;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 6px rgba(20, 208, 117, 0.14);
}

.eyebrow--light {
  color: #effff5;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero__copy h1,
.section-heading h2,
.panel__copy h3,
.step h3,
.cta__card h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero__copy h1 {
  margin: 1rem 0 1.15rem;
  font-size: clamp(3.3rem, 8vw, 6.15rem);
  max-width: 12ch;
}

.hero__lede {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__stats li {
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero__stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: min(72vw, 720px);
  display: grid;
  place-items: center;
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 580px);
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 255, 245, 0.48));
  box-shadow: 0 24px 80px rgba(11, 53, 34, 0.12);
}

.hero-visual__frame img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 28px 65px rgba(12, 66, 41, 0.16);
  animation: float 7.5s ease-in-out infinite;
}

.hero-visual__rings {
  position: absolute;
  z-index: 0;
  bottom: 6%;
  left: 50%;
  width: 94%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(20, 208, 117, 0.3) 0 4%,
      rgba(20, 208, 117, 0.06) 4% 9%
    );
  filter: blur(1px);
  opacity: 0.9;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(251, 255, 252, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(11, 53, 34, 0.12);
}

.floating-card--top {
  top: 7%;
  left: -2%;
  animation: float 8.5s ease-in-out infinite;
}

.floating-card--bottom {
  right: -4%;
  bottom: 11%;
  animation: float 9.2s ease-in-out infinite reverse;
}

.floating-card__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 1rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.45rem 1.55rem;
  border-radius: 30px;
  background: rgba(14, 32, 23, 0.97);
  color: #f0fff5;
  box-shadow: 0 18px 48px rgba(10, 40, 28, 0.18);
}

.signal-strip__inner p {
  margin: 0;
  max-width: 32rem;
  font-weight: 700;
}

.signal-strip__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-strip__chips li {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #c8f9d9;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 450px;
  padding: clamp(1.45rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel::before {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 208, 117, 0.2) 0%, rgba(20, 208, 117, 0) 72%);
  pointer-events: none;
}

.panel--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  min-height: 620px;
  gap: 1rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 255, 242, 0.78));
}

.panel--dark {
  color: #f2fff7;
  background: linear-gradient(160deg, #0f2118 0%, #173328 55%, #24473a 100%);
}

.panel--dark::before {
  background: radial-gradient(circle, rgba(101, 255, 173, 0.16) 0%, rgba(101, 255, 173, 0) 72%);
}

.panel__copy {
  position: relative;
  z-index: 1;
}

.panel__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(14, 122, 74, 0.1);
}

.panel--dark .panel__tag {
  color: #defee9;
  background: rgba(255, 255, 255, 0.11);
}

.panel__copy h3 {
  margin: 0.9rem 0 0.95rem;
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
}

.panel__copy p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
}

.panel--dark .panel__copy p {
  color: rgba(239, 255, 246, 0.76);
}

.panel__list {
  display: grid;
  gap: 0.72rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.panel__list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 700;
}

.panel__list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 0 0 6px rgba(20, 208, 117, 0.1);
}

.panel__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 18rem;
}

.panel__media img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(10, 63, 39, 0.16));
}

.panel__media--dashboard img {
  max-height: 40rem;
  margin-bottom: -2rem;
}

.panel__media--alerts img,
.panel__media--onboarding img,
.panel__media--settings img {
  max-height: 31rem;
}

.sound-preview {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(14, 122, 74, 0.12);
  border-radius: 24px;
  background: rgba(14, 122, 74, 0.08);
}

.sound-preview__label {
  display: block;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sound-preview__readout strong {
  display: block;
  margin: 0.35rem 0 0.4rem;
  font-size: 1.22rem;
}

.sound-preview__readout p {
  font-size: 0.95rem;
}

.sound-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.sound-chip {
  min-height: 2.7rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(11, 56, 35, 0.08);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.sound-chip:hover,
.sound-chip:focus-visible,
.sound-chip.is-active {
  color: #f5fff7;
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(135deg, #0f7247 0%, #16b367 100%);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e4ffef;
  font-weight: 800;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.inline-link::after {
  content: "->";
  transition: transform 0.25s ease;
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: translateX(4px);
}

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

.step {
  min-height: 14rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.step__number {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: #f4fff8;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #0d6d44 0%, #16b367 100%);
}

.step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
}

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

.cta__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 36px;
  color: #f4fff8;
  background: linear-gradient(135deg, #0f6f45 0%, #14a562 36%, #d8ffe6 160%);
  box-shadow: 0 30px 80px rgba(10, 63, 39, 0.18);
}

.cta__card::before {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 22rem;
  height: 22rem;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 68%);
}

.cta__copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.cta__card h2 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  max-width: 12ch;
}

.cta__copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 0;
  color: rgba(245, 255, 249, 0.86);
  font-size: 1.02rem;
}

.cta__store {
  margin-top: 1rem !important;
}

.cta__store a {
  color: #f5fff7;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta__card .button {
  color: #f5fff7;
  background: rgba(9, 28, 19, 0.82);
}

.cta__card .button--secondary {
  color: #f5fff7;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.legal-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(122, 255, 179, 0.28), transparent 18%),
    radial-gradient(circle at 88% 4%, rgba(212, 255, 226, 0.46), transparent 14%),
    linear-gradient(180deg, #f1fcf3 0%, #f8faf7 100%);
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
}

.legal-hero {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.legal-hero__content {
  max-width: 56rem;
}

.legal-hero__content h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-family: "Syne", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.legal-hero__lede {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-card {
  padding: clamp(1.4rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-section + .legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 56, 35, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
}

.legal-section h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: #30493d;
  font-size: 1rem;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 1rem;
}

.legal-section ul {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
}

.legal-section li + li {
  margin-top: 0.6rem;
}

.legal-callout {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(14, 122, 74, 0.14);
  border-radius: 20px;
  color: #143426;
  font-weight: 800;
  background: rgba(20, 208, 117, 0.08);
}

.legal-note {
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--accent-strong);
  border-radius: 16px;
  background: rgba(13, 109, 68, 0.06);
}

.legal-email {
  color: var(--accent-strong);
  font-weight: 800;
}

.legal-links a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 56, 35, 0.09);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .panel--wide,
  .cta__card {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__stats,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

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

  .panel--wide {
    min-height: auto;
  }

  .panel__media--dashboard img {
    margin-bottom: -1rem;
  }

  .signal-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta__card {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .header__inner {
    border-radius: 30px;
  }

  .hero__copy h1 {
    max-width: none;
  }

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

  .hero-visual {
    min-height: auto;
    padding-top: 1rem;
  }

  .floating-card--top {
    left: 0;
  }

  .floating-card--bottom {
    right: 0;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .header__inner {
    padding: 0.8rem;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__text small {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .site-header .button--ghost {
    min-height: 2.85rem;
    padding: 0.8rem 1rem;
    font-size: 0.96rem;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .cta__actions .button {
    width: 100%;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-visual__rings {
    bottom: 15%;
    width: 108%;
  }

  .floating-card {
    position: static;
    max-width: none;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .panel,
  .cta__card {
    border-radius: 28px;
  }

  .panel__media--dashboard img,
  .panel__media--alerts img,
  .panel__media--onboarding img,
  .panel__media--settings img {
    max-height: 28rem;
  }
}
