* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f6f0e5;
  --bg-soft: #efe4d0;
  --surface: rgba(255, 250, 243, 0.85);
  --line: rgba(84, 55, 28, 0.17);
  --text: #2e2218;
  --muted: #705f50;
  --primary: #1f3d63;
  --primary-contrast: #f2f7ff;
  --accent: #c86c2e;
  --ok: #1f6a4c;
  --danger: #a0442e;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 16px 42px rgba(44, 30, 17, 0.14);
  --max-width: 1160px;
  --search-intent-margin-bottom: 26px;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(200, 108, 46, 0.24), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(31, 61, 99, 0.25), transparent 30%),
    linear-gradient(152deg, var(--bg) 0%, var(--bg-soft) 58%, #e5d7bf 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(40, 24, 12, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 24, 12, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: -1;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-contrast);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(31, 61, 99, 0.55);
  outline-offset: 3px;
}

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

.site-header {
  margin: 14px 0 32px;
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 252, 246, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  animation: fadeUp 520ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary-contrast);
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(140deg, #1f3d63, #355984);
}

.brand h1 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand p {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  order: 1;
}

.links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 auto;
  min-width: 0;
}

.links a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

  .links a:hover {
    background: rgba(31, 61, 99, 0.1);
    color: var(--primary);
  }

  .links a.is-active {
    background: rgba(31, 61, 99, 0.16);
    color: var(--primary);
    box-shadow: inset 0 -2px 0 0 var(--primary), 0 8px 18px rgba(31, 61, 99, 0.12);
    font-weight: 600;
  }

.auth-status {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  margin-bottom: 26px;
}

.hero-main,
.hero-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  animation: fadeUp 600ms ease both;
}

.hero-main {
  padding: 40px 34px 30px;
  position: relative;
}

.hero-main::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -52px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 108, 46, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(31, 61, 99, 0.22);
  border-radius: 999px;
  background: rgba(31, 61, 99, 0.1);
  padding: 7px 12px;
  margin-bottom: 14px;
}

.hero h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 12px;
  max-width: 14ch;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 56ch;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  padding: 10px;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1px;
}

.stat span {
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-side {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation-delay: 120ms;
}

.pulse {
  flex: 0 0 140px;
  min-height: 140px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 61, 99, 0.24);
  background: radial-gradient(circle at 50% 50%, rgba(36, 68, 104, 0.22), rgba(11, 19, 32, 0.8));
  position: relative;
  overflow: hidden;
}

.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(155, 202, 255, 0.11) 0px,
      rgba(155, 202, 255, 0.11) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(155, 202, 255, 0.08) 0px,
      rgba(155, 202, 255, 0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%);
  pointer-events: none;
}

.pulse-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 0 4px rgba(220, 241, 255, 0.55));
}

.pulse-trace-main {
  fill: none;
  stroke: #f3fbff;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: ecgDraw 2.8s linear infinite;
}

.pulse-trace-accent {
  fill: none;
  stroke: #df8f52;
  stroke-width: 0.82;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.72;
  animation: ecgDraw 2.8s linear infinite;
}

.pulse-dot-core {
  fill: #fff8ef;
  filter: drop-shadow(0 0 6px rgba(255, 189, 136, 0.95));
}

.pulse-dot-halo {
  fill: rgba(255, 205, 165, 0.34);
  filter: blur(0.7px);
}

.pulse-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(214, 234, 255, 0.82);
  text-transform: uppercase;
  pointer-events: none;
}

.pulse-meta strong {
  font-weight: 700;
  color: rgba(240, 248, 255, 0.94);
}

.pulse-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  flex: 1;
  align-content: stretch;
}

.pulse-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.74));
  padding: 11px 11px 11px 36px;
  font-size: 0.84rem;
  color: #2f3f53;
  display: grid;
  gap: 4px;
  position: relative;
  box-shadow: 0 8px 18px rgba(20, 35, 53, 0.08);
  min-height: 0;
}

.pulse-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle, #d98b54 30%, #1f3d63 75%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.pulse-list li strong {
  font-size: 0.82rem;
  color: #173658;
  line-height: 1.2;
}

.pulse-list li span {
  color: #526479;
  line-height: 1.35;
}

.auth-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.auth-user-email {
  display: none;
  max-width: 220px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 61, 99, 0.22);
  background: rgba(31, 61, 99, 0.08);
  color: #173658;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 241, 231, 0.96));
  border: 1px solid rgba(84, 55, 28, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 56px rgba(44, 30, 17, 0.18);
  z-index: 200;
  padding: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale3d(0.82, 0.72, 1);
  transform-origin: top right;
  will-change: transform, opacity;
}

.auth-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: rgba(255, 252, 247, 0.98);
  border-top: 1px solid rgba(84, 55, 28, 0.14);
  border-left: 1px solid rgba(84, 55, 28, 0.14);
  transform: rotate(45deg);
}

.auth-dropdown.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale3d(1, 1, 1);
  animation: authJellyPop 520ms cubic-bezier(0.22, 0.9, 0.2, 1.18) both;
}

@keyframes authJellyPop {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale3d(0.68, 0.46, 1);
  }

  38% {
    opacity: 1;
    transform: translateY(0) scale3d(1.12, 0.8, 1);
  }

  62% {
    transform: translateY(0) scale3d(0.92, 1.08, 1);
  }

  78% {
    transform: translateY(0) scale3d(1.03, 0.96, 1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale3d(1, 1, 1);
  }
}

.auth-dropdown-tabs {
  display: flex;
  gap: 6px;
  margin: 0 28px 16px 0;
  padding: 4px;
  border: 1px solid rgba(84, 55, 28, 0.12);
  border-radius: 999px;
  background: rgba(31, 61, 99, 0.06);
}

.auth-dropdown-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  flex: 1 1 0;
  transition: all 160ms ease;
}

.auth-dropdown-tab:hover {
  color: var(--primary);
}

.auth-dropdown-tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: rgba(84, 55, 28, 0.1);
  box-shadow: 0 8px 16px rgba(31, 61, 99, 0.08);
}

.auth-dropdown-content {
  display: none;
}

.auth-dropdown-content.is-active {
  display: block;
  padding: 2px 2px 0;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.auth-form-group label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.auth-form-group input {
  border: 1px solid rgba(84, 55, 28, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 11px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 160ms ease;
}

.auth-form-group input:focus {
  outline: none;
  border-color: rgba(31, 61, 99, 0.52);
  box-shadow: 0 0 0 3px rgba(31, 61, 99, 0.12);
}

.auth-dropdown-error {
  color: #c83d3d;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: none;
}

.auth-dropdown-error.show {
  display: block;
}

.auth-dropdown-button {
  width: 100%;
  margin-bottom: 10px;
  min-height: 44px;
  box-shadow: 0 12px 24px rgba(31, 61, 99, 0.14);
}

.auth-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(84, 55, 28, 0.12);
  margin: 14px 0 12px;
}

.auth-dropdown-social {
  display: grid;
  gap: 8px;
}

.auth-dropdown-social button {
  appearance: none;
  border: 1px solid rgba(84, 55, 28, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 11px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-dropdown-social button:hover {
  background: rgba(31, 61, 99, 0.08);
  border-color: rgba(31, 61, 99, 0.24);
  transform: translateY(-1px);
}

.auth-provider-icon {
  width: 18px;
  height: 18px;
}

.cta-center {
  text-align: center;
  margin-top: 28px;
}

.btn-large {
  font-size: 1rem;
  padding: 14px 24px;
  display: inline-flex;
}

.auth-dropdown-close {
  appearance: none;
  border: 1px solid rgba(84, 55, 28, 0.1);
  background: rgba(255, 255, 255, 0.84);
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.auth-dropdown-close:hover {
  color: var(--text);
  background: rgba(31, 61, 99, 0.08);
  border-color: rgba(31, 61, 99, 0.18);
}

.section {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  margin-bottom: 22px;
  animation: fadeUp 560ms ease both;
}

.section h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.38rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(41, 28, 16, 0.12);
}

.feature-icon {
  font-size: 1.45rem;
  margin-bottom: 8px;
  display: inline-block;
}

.feature h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.85rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.premium-item {
  border: 1px solid rgba(31, 61, 99, 0.26);
  border-radius: var(--radius-md);
  background: rgba(31, 61, 99, 0.08);
  padding: 14px;
}

.premium-item strong {
  display: block;
  margin-bottom: 5px;
  color: #183a61;
}

.premium-item p {
  color: #385877;
  font-size: 0.87rem;
}

.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  padding: 12px;
  display: grid;
  gap: 7px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.download-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

.toast-container {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: grid;
  gap: 8px;
}

.toast {
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-contrast);
  padding: 10px 15px;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(36, 27, 20, 0.2);
  animation: fadeUp 220ms ease;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 24px 0 34px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ecgDraw {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: var(--radius-lg);
  }

  .header-side {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .links {
    margin: 0;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .header-side {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .auth-dropdown-wrapper {
    width: 100%;
  }

  .auth-dropdown {
    left: 0;
    right: auto;
  }

  .auth-dropdown::before {
    left: 24px;
    right: auto;
  }

  .links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .links a {
    text-align: center;
    padding: 8px 10px;
  }

  .header-side .btn {
    width: 100%;
  }

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

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

  .site-header {
    position: static;
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: stretch;
  }

  .header-side {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
  }

  .links {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links a {
    flex: initial;
    text-align: center;
  }

  .hero-main {
    padding: 30px 20px 22px;
  }

  .hero h2 {
    max-width: 100%;
  }

  .pulse-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    flex: initial;
  }

  .stats,
  .features-grid,
  .premium-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 20px 14px;
  }
}

@media (max-width: 520px) {
  .links {
    grid-template-columns: 1fr;
  }

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

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

  .toast-container {
    width: calc(100% - 20px);
  }

  .toast {
    width: 100%;
  }
}

.mobile-menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 200ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 75;
}

.mobile-menu-backdrop.is-open {
  display: block;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(var(--max-width), calc(100% - 16px));
  }

  .site-header {
    gap: 8px;
    padding: 10px 12px;
    justify-content: flex-start;
    align-items: center;
    border-radius: var(--radius-lg);
  }

  .mobile-menu-toggle {
    display: flex;
    order: -1;
    margin-right: 4px;
  }

  .brand {
    justify-content: center;
    flex: 1;
    order: 0;
  }

  .brand h1 {
    font-size: 0.85rem;
  }

  .brand p {
    display: none;
  }

  .header-side {
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    order: 1;
    flex: initial;
    justify-content: flex-end;
  }

  .header-side .btn {
    width: auto;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .links {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 76;
    flex-direction: column;
    background: var(--surface);
    border-radius: 0;
    box-shadow: none;
    padding: 80px 20px 20px;
    gap: 8px;
    margin: 0;
    display: none;
  }

  .links.is-open {
    display: flex;
  }

  .links a {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: left;
  }

  .auth-dropdown {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
  }

  .auth-dropdown::before {
    display: none;
  }

  .hero-main,
  .hero-side,
  .section {
    border-radius: 18px;
  }

  .hero-main {
    padding: 24px 16px 18px;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .pulse-list li {
    padding: 10px 10px 10px 34px;
  }
}

@media (max-width: 420px) {
  .brand p {
    display: none;
  }

  .links a {
    font-size: 0.9rem;
    padding: 11px 14px;
  }
}
