:root {
  --ink: #0b1414;
  --night: #111c1d;
  --forest: #12302f;
  --paper: #f7faf7;
  --mist: #eef5f2;
  --white: #ffffff;
  --teal: #18b7a8;
  --blue: #2d7ff0;
  --green: #26a96c;
  --amber: #f5a623;
  --muted: #5b6c68;
  --line: rgba(17, 28, 29, 0.12);
  --shadow: 0 24px 80px rgba(4, 20, 19, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.login-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background-image: url("images/salioai-logo-mark-192.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.brand-mark::after {
  content: none;
}

.brand-text {
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #24413e;
  font-size: 0.94rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(24, 183, 168, 0.1);
  color: #0d635b;
}

.nav-login-link {
  display: none;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: rgba(24, 183, 168, 0.1);
  color: #0d635b;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.nav-mobile-cta {
  display: none;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--teal) 48%, var(--blue));
  font-weight: 850;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--teal) 48%, var(--blue));
  box-shadow: 0 16px 42px rgba(24, 183, 168, 0.28);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(11, 20, 20, 0.24);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.nav-login-btn {
  min-height: 42px;
  padding-inline: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.arrow {
  font-size: 1.1em;
  line-height: 0;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

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

.hero {
  min-height: 86svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 16, 0.95) 0%, rgba(5, 16, 16, 0.78) 36%, rgba(5, 16, 16, 0.24) 72%, rgba(5, 16, 16, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 16, 16, 0.18), rgba(5, 16, 16, 0.66));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(247, 250, 247, 0), var(--paper));
  z-index: -1;
}

.hero-content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 120px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #bff8ef;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.14);
}

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

h1 {
  font-size: clamp(3rem, 6.5vw, 6.15rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  max-width: 860px;
}

h3 {
  font-size: clamp(1.16rem, 2.2vw, 1.55rem);
  line-height: 1.2;
}

.lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 690px;
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 760px;
}

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

.hero-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 650;
}

.metric-row {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
}

.metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trust-strip {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 112px;
  padding: 22px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.credibility-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 48px rgba(4, 20, 19, 0.08);
}

.credibility-row span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #24413e;
  font-size: 0.88rem;
  font-weight: 800;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--white);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.kicker {
  color: #0d746a;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 100%;
}

.card.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 183, 168, 0.18), rgba(45, 127, 240, 0.14)),
    var(--night);
  border-color: rgba(255, 255, 255, 0.12);
}

.card p,
.feature-list p,
.source-list p {
  margin-top: 10px;
  color: var(--muted);
}

.card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: #24413e;
  font-size: 0.9rem;
  font-weight: 800;
}

.band .pill {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 18px;
  background: rgba(24, 183, 168, 0.12);
  color: #0d746a;
  font-weight: 900;
}

.icon.blue {
  background: rgba(45, 127, 240, 0.12);
  color: var(--blue);
}

.icon.amber {
  background: rgba(245, 166, 35, 0.16);
  color: #9b5d00;
}

.band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 183, 168, 0.18), rgba(45, 127, 240, 0.12)),
    var(--night);
}

.band .section-lead,
.band .card p,
.band .source-list p {
  color: rgba(255, 255, 255, 0.72);
}

.band .kicker {
  color: #96f2e8;
}

.band .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.process {
  counter-reset: step;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  counter-increment: step;
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

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

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.feature-list,
.source-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.pain-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.pain-item {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pain-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--amber), var(--teal), var(--blue));
}

.pain-item strong {
  display: block;
  font-size: 1.04rem;
}

.pain-item p {
  margin-top: 8px;
  color: var(--muted);
}

.feature-item,
.source-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-item strong,
.source-item strong {
  display: block;
  font-size: 1.02rem;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.comparison-panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.comparison-panel.highlight {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 169, 108, 0.92), rgba(24, 183, 168, 0.92), rgba(45, 127, 240, 0.88)),
    var(--forest);
  border-color: transparent;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 0.38em;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.45);
}

.mini-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.mini-list li {
  position: relative;
  padding-left: 20px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.card.dark .mini-list {
  color: rgba(255, 255, 255, 0.74);
}

.table-wrap {
  margin-top: 34px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: #24413e;
  background: var(--mist);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.operating-model {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.operating-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.operating-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.operating-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.operating-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 950;
}

.operating-card h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.operating-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.operating-card strong {
  display: block;
  margin-top: 14px;
  color: #bff8ef;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item strong {
  color: #0d746a;
}

.timeline-item p {
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 76px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(5, 16, 16, 0.96), rgba(14, 47, 45, 0.9), rgba(9, 42, 56, 0.8)),
    var(--night);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  max-width: 760px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.02;
  font-weight: 900;
  margin-top: 18px;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.card.featured {
  border-color: rgba(24, 183, 168, 0.55);
  box-shadow: var(--shadow);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(24, 183, 168, 0.12);
  color: #0d746a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-topic {
  margin-top: 30px;
}

.faq-topic:first-child {
  margin-top: 0;
}

.faq-topic h3 {
  margin-bottom: 14px;
  color: #0d746a;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 12px;
  color: var(--muted);
}

.cta-band {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 169, 108, 0.92), rgba(24, 183, 168, 0.88), rgba(45, 127, 240, 0.86)),
    var(--forest);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-inner p {
  margin-top: 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.growth-form-card .kicker {
  color: #0d746a;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-visual {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #24413e;
  font-size: 0.9rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(24, 183, 168, 0.16);
  border-color: rgba(24, 183, 168, 0.72);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.form-assurance span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(24, 183, 168, 0.22);
  border-radius: var(--radius);
  background: rgba(24, 183, 168, 0.07);
  color: #174541;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.form-status {
  min-height: 24px;
  color: #0d746a;
  font-weight: 800;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.events-preview-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-view-all {
  color: #0d746a;
  font-weight: 900;
}

.events-index-hero {
  padding: 48px 0 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.events-index-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.events-index-head h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.events-index-head .lead {
  max-width: 760px;
  color: var(--muted);
}

.events-top-filters {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.7fr;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(4, 20, 19, 0.06);
}

.events-search-field {
  min-width: 0;
}

.events-directory-section {
  background: linear-gradient(180deg, #f6faf8, #ffffff);
}

.events-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.event-hero-visual,
.event-detail-visual,
.event-card-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 183, 168, 0.18), rgba(45, 127, 240, 0.12)),
    var(--night);
}

.event-hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.event-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  min-width: 0;
}

.event-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(4, 20, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(4, 20, 19, 0.12);
}

.event-card-visual {
  position: relative;
  display: block;
  min-height: 204px;
  background-image:
    linear-gradient(180deg, rgba(4, 13, 13, 0.02), rgba(4, 13, 13, 0.42)),
    url("images/salioai-events-intelligence.png");
  background-size: cover;
  background-position: center;
}

.event-visual-1 {
  background-position: 12% 50%;
}

.event-visual-2 {
  background-position: 42% 42%;
}

.event-visual-3 {
  background-position: 62% 58%;
}

.event-visual-4 {
  background-position: 82% 48%;
}

.event-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.event-card-body {
  padding: 22px;
  overflow-wrap: anywhere;
}

.event-card-body h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.event-meta {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  color: #405b57;
  font-size: 0.9rem;
}

.event-meta span {
  position: relative;
  padding-left: 18px;
}

.event-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.event-card-body p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.event-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  min-width: 0;
}

.event-card-stats span {
  min-height: 62px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfefd, #f3f8f6);
  color: #0d746a;
  font-size: 0.9rem;
  font-weight: 900;
}

.event-card-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 850;
}

.event-card-actions {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.event-card-actions a {
  color: #0d746a;
  font-weight: 900;
}

.event-proof-row {
  margin-top: 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbf9);
}

.events-browser {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.events-filter-panel,
.events-results,
.event-detail-main,
.event-detail-side .event-side-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(4, 20, 19, 0.07);
}

.events-filter-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
  padding: 22px;
}

.events-filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.events-filter-header h2 {
  font-size: 1.55rem;
}

.filter-reset {
  border: 0;
  background: transparent;
  color: #0d746a;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.facet-group {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.facet-group h3 {
  color: var(--ink);
  font-size: 0.9rem;
}

.facet-search {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}

.facet-options {
  display: grid;
  gap: 8px;
}

.facet-option {
  width: 100%;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 0;
  border-radius: 7px;
  padding: 6px 4px;
  background: transparent;
  color: #405b57;
  font: inherit;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
}

.facet-option:hover {
  background: rgba(24, 183, 168, 0.08);
}

.facet-option span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.facet-option em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.facet-check {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(13, 116, 106, 0.38);
  border-radius: 4px;
  background: var(--white);
}

.facet-option.is-active {
  color: var(--ink);
  font-weight: 850;
}

.facet-option.is-active .facet-check {
  border-color: var(--teal);
  background:
    linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: inset 0 0 0 3px var(--white);
}

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

.facet-summary div {
  padding: 11px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #eef8f5, #f7fbf9);
}

.facet-summary strong {
  color: #0d746a;
  font-size: 1rem;
}

.facet-summary strong,
.facet-summary span {
  display: block;
}

.facet-summary span {
  color: var(--muted);
  font-size: 0.76rem;
}

.events-results {
  padding: 28px;
}

.events-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: end;
}

.events-toolbar h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.events-toolbar p {
  margin-top: 12px;
  color: var(--muted);
}

.sort-control {
  gap: 8px;
}

.events-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.event-detail-shell {
  padding: 42px 0 76px;
  background: linear-gradient(180deg, #ffffff, #f6faf8);
}

.event-breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-breadcrumb a {
  color: #0d746a;
  font-weight: 850;
}

.event-breadcrumb strong {
  color: var(--ink);
}

.event-detail-main {
  padding: 0;
  overflow-wrap: anywhere;
}

.event-profile-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.event-profile-copy {
  align-self: center;
}

.event-profile-copy h1 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.4vw, 3.45rem);
  line-height: 1.03;
}

.event-profile-copy p {
  margin-top: 16px;
  color: var(--muted);
}

.event-profile-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: #405b57;
  font-weight: 750;
}

.event-profile-meta span {
  position: relative;
  padding-left: 18px;
}

.event-profile-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.event-detail-visual {
  min-height: 315px;
  margin-bottom: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 13, 13, 0), rgba(4, 13, 13, 0.62)),
    url("images/salioai-events-intelligence.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-detail-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(24, 183, 168, 0.92);
  font-weight: 900;
}

.event-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  min-width: 0;
}

.event-stat-grid div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4faf7);
}

.event-stat-grid strong,
.event-stat-grid span {
  display: block;
}

.event-stat-grid strong {
  color: #0d746a;
  font-size: 1.45rem;
}

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

.event-tabs {
  display: flex;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.event-tabs span {
  padding: 16px 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
}

.event-tabs span:first-child {
  color: #0d746a;
  border-bottom: 2px solid var(--teal);
}

.event-detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.event-detail-section {
  margin-top: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.event-detail-section h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.event-detail-section p {
  margin-top: 12px;
  color: var(--muted);
}

.event-detail-side {
  display: grid;
  gap: 16px;
}

.event-side-card {
  padding: 22px;
  overflow-wrap: anywhere;
}

.event-side-card h2 {
  font-size: 1.7rem;
}

.event-side-card h3 {
  font-size: 1.1rem;
}

.event-side-card p {
  margin-top: 10px;
  color: var(--muted);
}

.event-side-card .btn {
  margin-top: 18px;
  width: 100%;
}

.event-weather-card {
  background: linear-gradient(135deg, #fff8eb, #f3fbff) !important;
}

.event-weather-card strong,
.event-weather-card span {
  display: block;
}

.event-weather-card strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.event-weather-card span {
  margin-top: 6px;
  color: var(--muted);
}

.event-fields {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.event-fields div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.event-fields div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-fields dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-fields dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.source-link {
  display: inline-flex;
  margin-top: 16px;
  color: #0d746a;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.event-nearby-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.login-modal[aria-hidden="true"] {
  display: none;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.2vw, 22px);
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(24, 183, 168, 0.24), transparent 34%),
    radial-gradient(circle at 80% 90%, rgba(45, 127, 240, 0.24), transparent 32%),
    rgba(4, 13, 13, 0.74);
  backdrop-filter: blur(12px);
}

.login-dialog {
  position: relative;
  width: min(100%, 920px);
  height: min(680px, calc(100dvh - 36px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.login-art {
  position: relative;
  min-height: 100%;
  background: var(--ink);
}

.login-art img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.login-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 13, 0), rgba(4, 13, 13, 0.24));
  pointer-events: none;
}

.login-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(22px, 3.4vw, 44px);
  overflow: hidden;
}

.login-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 0.98;
}

.login-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.login-pain {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(24, 183, 168, 0.1));
  font-size: 0.92rem;
  line-height: 1.42;
}

.login-pain strong,
.login-pain span {
  display: block;
}

.login-pain span {
  margin-top: 7px;
  color: var(--muted);
}

.provider-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.provider-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.provider-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 183, 168, 0.45);
  box-shadow: 0 14px 34px rgba(4, 20, 19, 0.1);
}

.provider-btn.apple {
  color: var(--white);
  background: var(--ink);
}

.provider-btn.linkedin {
  color: var(--white);
  background: #0a66c2;
  border-color: #0a66c2;
}

.provider-btn:not([data-provider-ready]) {
  opacity: 0.74;
}

.provider-btn:not([data-provider-ready]):hover {
  transform: none;
  box-shadow: none;
}

.provider-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
}

.provider-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.provider-btn.apple .provider-icon {
  filter: invert(1);
}

.provider-text-mark {
  border-radius: 6px;
  background: var(--white);
  color: #0a66c2;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
}

.provider-text-mark::before {
  content: "in";
}

.login-status {
  min-height: 24px;
  color: #0d746a !important;
  font-size: 0.92rem !important;
  font-weight: 850;
}

.login-address {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.login-address strong,
.login-address span,
.login-address a {
  display: block;
}

.login-address strong {
  color: var(--ink);
}

.login-address span {
  margin-top: 6px;
}

.login-address a {
  margin-top: 7px;
  color: #0d746a;
  font-weight: 850;
}

@media (max-height: 760px) and (min-width: 981px) {
  .login-dialog {
    width: min(100%, 860px);
    height: calc(100dvh - 28px);
  }

  .login-copy {
    padding: 24px 34px;
  }

  .login-copy h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
  }

  .login-copy p {
    margin-top: 9px;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .login-pain {
    margin-top: 12px;
    padding: 12px;
    font-size: 0.86rem;
  }

  .login-pain span {
    margin-top: 5px;
  }

  .provider-stack {
    gap: 8px;
    margin-top: 12px;
  }

  .provider-btn {
    min-height: 44px;
    padding: 8px 14px;
  }

  .provider-icon {
    width: 20px;
    height: 20px;
  }

  .login-address {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 0.76rem;
  }
}

.address-block {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.address-block a {
  color: #0d746a;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer .brand {
  color: var(--white);
}

.footer-grid {
  padding: 58px 0 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 36px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

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

.legal-copy h2 {
  margin-top: 42px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  margin-top: 14px;
}

.legal-copy ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

@media (max-width: 1180px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links a {
    padding: 16px;
  }

  body.nav-open .nav-login-link {
    display: block;
    padding: 16px;
  }

  body.nav-open .nav-mobile-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .split,
  .split-reverse,
  .form-wrap,
  .cta-inner,
  .events-index-head,
  .events-hero-grid,
  .events-browser,
  .event-profile-head,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .event-detail-content {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .process,
  .trust-grid,
  .proof-row,
  .event-card-grid,
  .event-stat-grid,
  .pricing-grid,
  .footer-grid,
  .operating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-filter-panel {
    position: static;
  }

  .event-detail-visual {
    min-height: 260px;
  }

  .login-dialog {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    height: auto;
    max-height: calc(100dvh - 28px);
    overflow: auto;
  }

  .login-art {
    display: none;
  }

  .login-copy {
    justify-content: flex-start;
    padding: clamp(22px, 5vw, 34px);
    overflow: visible;
  }

  .login-copy h2 {
    font-size: clamp(2rem, 7vw, 2.85rem);
  }

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

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

@media (max-width: 680px) {
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .container,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 74px 0 96px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .metric-row,
  .process,
  .trust-grid,
  .credibility-row,
  .grid-3,
  .grid-4,
    .grid-2,
    .proof-row,
    .event-card-grid,
    .event-card-fields,
    .event-stat-grid,
    .operating-grid,
  .comparison,
  .pricing-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .trust-item {
    min-height: auto;
  }

  .btn {
    width: 100%;
  }

  .form-assurance {
    grid-template-columns: 1fr;
  }

  .growth-form-card {
    order: -1;
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
  }

  .section-head,
  .events-toolbar,
  .events-top-filters {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .events-results,
  .event-detail-main,
  .event-side-card,
  .events-filter-panel {
    padding: 18px;
  }

  .event-profile-head,
  .event-stat-grid,
  .event-detail-content {
    padding: 18px;
  }

  .events-index-hero {
    padding: 34px 0 18px;
  }

  .events-index-head .btn,
  .section-head .event-view-all {
    width: 100%;
  }

  .event-profile-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .event-tabs {
    flex-wrap: wrap;
    gap: 12px;
    overflow-x: visible;
  }

  .event-tabs span {
    padding: 10px 0;
  }

  .event-card-visual {
    min-height: 190px;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .login-modal {
    padding: 12px;
  }

  .login-dialog {
    max-height: calc(100dvh - 24px);
  }

  .login-copy {
    padding: 22px;
  }

  .login-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .login-copy p {
    font-size: 0.9rem;
  }

  .login-pain {
    margin-top: 12px;
  }

  .provider-btn {
    min-height: 46px;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .login-address {
    display: none;
  }
}
