/* MapleRent Landing Page v1
   No external fonts, frameworks or JavaScript libraries.
*/

:root {
  --primary: #082049;
  --primary-dark: #061936;
  --primary-deep: #04142d;
  --primary-soft: #eef3f9;
  --navy: #082049;
  --navy-2: #12335f;
  --text: #172033;
  --muted: #667085;
  --muted-light: #94a3b8;
  --line: #e5eaf2;
  --white: #ffffff;
  --surface: #f7f9fc;
  --green: #029b37;
  --green-soft: #eaf9ef;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.11);
  --shadow-blue: 0 24px 70px rgba(37, 99, 235, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --red: #ef0311;
  --red-dark: #c90010;
  --red-soft: #fff0f2;
  --red-shadow: rgba(239, 3, 17, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 28%),
    var(--surface);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition:
    padding 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 234, 242, 0.85);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

.nav-shell,
.brand,
.primary-navigation,
.hero-actions,
.hero-note,
.eyebrow,
.credibility-strip,
.audience-icon,
.check-list li,
.process-list article,
.experience-option,
.company-feature-grid article,
.company-actions,
.portal-brand,
.portal-security,
.trust-heading,
.trust-icon,
.trust-disclaimer,
.store-buttons,
.store-button,
.final-cta,
.final-cta-actions,
.footer-bottom {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.45px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.primary-navigation {
  gap: 25px;
}

.primary-navigation > a:not(.button) {
  position: relative;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-navigation > a:not(.button):hover {
  color: var(--primary);
}

.primary-navigation > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-download {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 13px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #194dc4);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  box-shadow: 0 19px 38px rgba(37, 99, 235, 0.32);
}

.button-secondary,
.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #d9e0eb;
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: #b9c7dc;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.button-white {
  color: var(--primary-deep);
  background: var(--white);
  box-shadow: 0 17px 35px rgba(4, 19, 56, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 880px;
  overflow: hidden;
  padding-top: 164px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 77% 16%, rgba(37, 99, 235, 0.13), transparent 32%),
    radial-gradient(circle at 7% 52%, rgba(14, 165, 233, 0.08), transparent 27%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 76%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(239, 246, 255, 0.55));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: rgba(37, 99, 235, 0.07);
}

.hero-glow-two {
  bottom: 100px;
  left: -160px;
  width: 340px;
  height: 340px;
  background: rgba(56, 189, 248, 0.05);
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 0.92fr) minmax(550px, 1.08fr);
  align-items: center;
  gap: 48px;
}

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

.eyebrow {
  width: fit-content;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(15, 159, 110, 0.11);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(48px, 6.3vw, 76px);
  line-height: 0.99;
  letter-spacing: -4px;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--primary);
}

.hero-lead {
  max-width: 605px;
  margin-bottom: 32px;
  color: #526079;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-note {
  max-width: 560px;
  gap: 12px;
  margin-top: 25px;
  padding: 14px 16px;
  color: #41506a;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.hero-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 50%;
}

.orbit-one {
  top: 9%;
  right: -2%;
  width: 470px;
  height: 470px;
}

.orbit-two {
  top: 19%;
  right: 11%;
  width: 340px;
  height: 340px;
}

.company-window {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 0;
  width: 555px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 23px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.17);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-topbar {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 15px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  background: #d0d5dd;
  border-radius: 50%;
}

.window-dots span:first-child {
  background: #f87171;
}

.window-dots span:nth-child(2) {
  background: #fbbf24;
}

.window-dots span:nth-child(3) {
  background: #34d399;
}

.window-address {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 14px;
  color: #667085;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
}

.lock-mini {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 2px;
}

.secure-label {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 135px 1fr;
  min-height: 410px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  padding: 18px 13px 13px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 10px;
}

.sidebar-logo img {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.sidebar-nav {
  display: grid;
  gap: 6px;
  margin-top: 27px;
}

.sidebar-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 7px;
  font-size: 7px;
  font-weight: 700;
}

.sidebar-nav span.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.65;
}

.sidebar-company {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 7px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
}

.company-avatar,
.dashboard-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.company-avatar {
  width: 25px;
  height: 25px;
}

.sidebar-company span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.sidebar-company strong {
  overflow: hidden;
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-company small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 5.5px;
}

.dashboard-main {
  padding: 22px 20px;
  background: #f6f8fc;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-heading > div {
  display: grid;
  gap: 3px;
}

.dashboard-heading small {
  color: #98a2b3;
  font-size: 7px;
  font-weight: 700;
}

.dashboard-heading strong {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: -0.4px;
}

.dashboard-avatar {
  width: 29px;
  height: 29px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 17px;
}

.metric-grid article {
  padding: 12px;
  background: var(--white);
  border: 1px solid #ecf0f5;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(15, 23, 42, 0.035);
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: #98a2b3;
  font-size: 6.5px;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin: 7px 0 4px;
  color: var(--navy);
  font-size: 17px;
}

.metric-grid .metric-positive {
  color: var(--green);
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-panels article {
  min-height: 160px;
  padding: 13px;
  background: var(--white);
  border: 1px solid #ecf0f5;
  border-radius: 11px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading strong {
  color: var(--navy);
  font-size: 8px;
}

.panel-heading span {
  color: #98a2b3;
  font-size: 6px;
}

.chart {
  display: flex;
  height: 108px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  margin-top: 15px;
  padding: 10px 7px 0;
  background:
    linear-gradient(#edf1f6 1px, transparent 1px) 0 0 / 100% 25%;
  border-bottom: 1px solid #edf1f6;
}

.chart span {
  flex: 1;
  min-height: 14px;
  background: linear-gradient(180deg, #5b8df5, var(--primary));
  border-radius: 3px 3px 1px 1px;
}

.verification-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.shield-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 14px;
}

.shield-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-panel strong {
  margin-top: 10px;
  color: var(--navy);
  font-size: 9px;
}

.verification-panel small {
  max-width: 105px;
  margin-top: 5px;
  color: #98a2b3;
  font-size: 6px;
  line-height: 1.5;
}

.phone-card {
  position: absolute;
  z-index: 4;
  right: 400px;
  bottom: 0;
  width: 185px;
  height: 375px;
  padding: 7px;
  background: #09142f;
  border: 2px solid #17264a;
  border-radius: 31px;
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.3);
  transform: rotate(-4deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: 55px;
  height: 12px;
  background: #09142f;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 28px 12px 12px;
  background: #f8fafc;
  border-radius: 24px;
}

.mobile-top {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mobile-top img {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.mobile-top > span {
  display: grid;
}

.mobile-top small {
  color: #98a2b3;
  font-size: 5px;
}

.mobile-top strong {
  color: var(--navy);
  font-size: 8px;
}

.mobile-top i {
  width: 21px;
  height: 21px;
  margin-left: auto;
  background: #e8edf5;
  border-radius: 50%;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  padding: 9px;
  color: #98a2b3;
  background: var(--white);
  border: 1px solid #e9edf3;
  border-radius: 8px;
  font-size: 5.5px;
}

.mobile-search svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-banner {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 14px 11px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(135deg, var(--primary), #163da4);
  border-radius: 11px;
}

.mobile-banner small {
  font-size: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-banner strong {
  max-width: 95px;
  font-size: 10px;
  line-height: 1.25;
}

.property-mini {
  margin-top: 11px;
  padding: 7px;
  background: var(--white);
  border: 1px solid #ebeff4;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.property-image {
  position: relative;
  height: 91px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(9, 20, 47, 0.35)),
    linear-gradient(135deg, #cbd9ec 0%, #eef3fa 35%, #a8bbd5 100%);
  border-radius: 7px;
}

.property-image::before {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 62px;
  content: "";
  background:
    linear-gradient(140deg, transparent 49%, #8399b7 50%) left / 55% 55% no-repeat,
    linear-gradient(220deg, transparent 49%, #728aa9 50%) right / 55% 55% no-repeat,
    linear-gradient(#e9edf2, #d3dbe5) center bottom / 75% 48% no-repeat;
  filter: drop-shadow(0 7px 8px rgba(15, 23, 42, 0.12));
}

.property-image span {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  padding: 3px 5px;
  color: #087453;
  background: #e7fff6;
  border-radius: 4px;
  font-size: 4.5px;
  font-weight: 900;
}

.property-copy {
  display: grid;
  gap: 3px;
  padding: 8px 3px 2px;
}

.property-copy strong {
  color: var(--navy);
  font-size: 7px;
}

.property-copy small,
.property-copy span {
  color: #98a2b3;
  font-size: 5px;
}

.mobile-nav {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: flex;
  justify-content: space-around;
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #edf0f4;
  border-radius: 10px;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.04);
}

.mobile-nav span {
  width: 10px;
  height: 3px;
  background: #d5dbe5;
  border-radius: 999px;
}

.mobile-nav span.active {
  background: var(--primary);
}

.floating-proof {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.proof-one {
  top: 0;
  left: 15px;
}

.proof-two {
  right: 4px;
  bottom: 25px;
}

.proof-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 10px;
}

.proof-icon-blue {
  color: var(--primary);
  background: var(--primary-soft);
}

.proof-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-proof > span:last-child {
  display: grid;
  gap: 2px;
}

.floating-proof strong {
  color: var(--navy);
  font-size: 10px;
}

.floating-proof small {
  color: #98a2b3;
  font-size: 7px;
}

.credibility-strip {
  position: relative;
  z-index: 4;
  justify-content: space-between;
  gap: 26px;
  margin-top: 58px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.credibility-strip div {
  display: grid;
  gap: 5px;
}

.credibility-strip strong {
  color: var(--navy);
  font-size: 14px;
}

.credibility-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.split-copy h2,
.company-copy h2,
.trust-heading h2,
.download-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(36px, 4.4vw, 55px);
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.section-heading p,
.split-copy > p,
.trust-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  background: var(--white);
  border: 1px solid #e5eaf2;
  border-radius: 25px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.055);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.audience-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 23px 55px rgba(15, 23, 42, 0.09);
  transform: translateY(-6px);
}

.audience-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--primary), #6ea1ff);
}

.company-card::before {
  background: linear-gradient(90deg, #0b1736, #315394);
}

.owner-card::before {
  background: linear-gradient(90deg, #0f9f6e, #5ed6a8);
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #e9edf4;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}

.audience-icon {
  width: 54px;
  height: 54px;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 16px;
}

.owner-card .audience-icon {
  color: var(--green);
  background: var(--green-soft);
}

.company-card .audience-icon {
  color: var(--white);
  background: var(--navy);
}

.audience-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-label {
  display: inline-block;
  margin-top: 25px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.owner-card .audience-label {
  color: var(--green);
}

.company-card .audience-label {
  color: var(--navy);
}

.audience-card h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.audience-card > p {
  min-height: 94px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.check-list li {
  gap: 9px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  content: "✓";
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.audience-card > a {
  display: inline-flex;
  gap: 7px;
  margin-top: 27px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.owner-card > a {
  color: var(--green);
}

.company-card > a {
  color: var(--navy);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  align-items: center;
  gap: 75px;
}

.split-copy > p {
  max-width: 570px;
}

.process-list {
  display: grid;
  gap: 23px;
  margin-top: 37px;
}

.process-list article {
  align-items: flex-start;
  gap: 17px;
}

.process-list article > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 900;
}

.process-list article > div {
  padding-top: 2px;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.experience-panel {
  padding: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 99, 235, 0.1), transparent 35%),
    #f7f9fd;
  border: 1px solid #e3e9f3;
  border-radius: 29px;
  box-shadow: var(--shadow-md);
}

.experience-head {
  display: grid;
  gap: 5px;
  padding: 0 4px 18px;
}

.experience-head span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.experience-head strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.7px;
}

.experience-option {
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #e6ebf2;
  border-radius: 19px;
}

.experience-option + .experience-option {
  margin-top: 12px;
}

.experience-option.active {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.09);
}

.experience-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 15px;
}

.experience-symbol svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.experience-copy small {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-copy strong {
  color: var(--navy);
  font-size: 15px;
}

.experience-copy em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.5;
}

.experience-status {
  margin-left: auto;
  padding: 7px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
}

.experience-status.status-dark {
  color: var(--white);
  background: var(--navy);
}

.experience-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 17px;
  padding: 14px 16px;
  color: #53627b;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed #ccd6e5;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}

.experience-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(76, 130, 255, 0.22), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(15, 159, 110, 0.08), transparent 30%),
    linear-gradient(135deg, #07132f 0%, #0d2049 54%, #12316a 100%);
}

.company-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
  pointer-events: none;
}

.company-grid {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 78px;
}

.eyebrow-light {
  color: #8eb2ff;
}

.company-copy h2,
.download-copy h2 {
  color: var(--white);
}

.company-copy > p {
  max-width: 650px;
  color: #c0cbe0;
  font-size: 17px;
  line-height: 1.75;
}

.company-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  margin-top: 34px;
}

.company-feature-grid article {
  align-items: flex-start;
  gap: 12px;
}

.feature-tick {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  color: #7ce0b9;
  background: rgba(15, 159, 110, 0.13);
  border: 1px solid rgba(124, 224, 185, 0.16);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.company-feature-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.company-feature-grid p {
  margin: 0;
  color: #9eabc2;
  font-size: 12px;
  line-height: 1.55;
}

.company-actions {
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 36px;
}

.company-actions > span {
  color: #9eabc2;
  font-size: 11px;
  font-weight: 700;
}

.portal-card {
  padding: 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 29px;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.portal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 5px 15px;
}

.portal-brand {
  gap: 10px;
}

.portal-brand img {
  border-radius: 11px;
}

.portal-brand > span {
  display: grid;
  gap: 3px;
}

.portal-brand strong {
  color: var(--white);
  font-size: 13px;
}

.portal-brand small {
  color: #9eabc2;
  font-size: 9px;
}

.portal-badge {
  padding: 6px 9px;
  color: #a9c4ff;
  background: rgba(37, 99, 235, 0.17);
  border: 1px solid rgba(143, 177, 255, 0.19);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-login-preview {
  padding: 30px;
  color: var(--text);
  background: var(--white);
  border-radius: 21px;
}

.portal-lock {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 15px;
}

.portal-lock svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portal-login-preview h3 {
  margin: 17px 0 8px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.7px;
}

.portal-login-preview > p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.fake-field {
  display: grid;
  gap: 6px;
  margin-top: 11px;
  padding: 12px 14px;
  background: #fbfcfe;
  border: 1px solid #e3e8ef;
  border-radius: 11px;
}

.fake-field small {
  color: #98a2b3;
  font-size: 8px;
  font-weight: 800;
}

.fake-field span {
  color: #344054;
  font-size: 11px;
  font-weight: 700;
}

.fake-login-button {
  margin-top: 13px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #1745b6);
  border-radius: 11px;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.portal-security {
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
}

.portal-security span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #667085;
  font-size: 8px;
  font-weight: 700;
}

.portal-security svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-section {
  background: #fbfcfe;
}

.trust-heading {
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.trust-heading > div {
  max-width: 650px;
}

.trust-heading h2 {
  margin-bottom: 0;
}

.trust-heading > p {
  max-width: 410px;
  margin: 0;
  font-size: 15px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.trust-card {
  padding: 27px;
  background: var(--white);
  border: 1px solid #e5eaf2;
  border-radius: 21px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.trust-icon {
  width: 45px;
  height: 45px;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 14px;
}

.trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.3px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.trust-disclaimer {
  align-items: flex-start;
  gap: 13px;
  margin-top: 25px;
  padding: 19px 22px;
  color: #53627a;
  background: #f3f6fa;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.trust-disclaimer svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

.download-section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.download-panel {
  display: grid;
  min-height: 525px;
  overflow: hidden;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #2563eb 0%, #173fa8 62%, #0e2e7d 100%);
  border-radius: 34px;
  box-shadow: var(--shadow-blue);
}

.download-copy {
  z-index: 2;
  padding: 65px;
}

.download-copy > p {
  max-width: 590px;
  color: #dce8ff;
  font-size: 16px;
  line-height: 1.75;
}

.store-buttons {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  min-width: 185px;
  gap: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(4, 16, 46, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  box-shadow: 0 15px 30px rgba(4, 16, 46, 0.2);
}

.store-button svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.store-button span {
  display: grid;
  gap: 1px;
}

.store-button small {
  color: #cbd7ed;
  font-size: 8px;
}

.store-button strong {
  font-size: 15px;
}

.launch-note {
  margin: 15px 0 0 !important;
  color: #bad0ff !important;
  font-size: 10px !important;
  font-weight: 700;
}

.download-art {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.download-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.circle-one {
  top: 30px;
  right: -50px;
  width: 480px;
  height: 480px;
}

.circle-two {
  top: 105px;
  right: 28px;
  width: 330px;
  height: 330px;
}

.download-phone {
  position: absolute;
  overflow: hidden;
  padding: 8px;
  background: #07142f;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 31px;
  box-shadow: 0 30px 70px rgba(4, 16, 46, 0.38);
}

.download-phone > div,
.phone-front {
  background: #f8fafc;
}

.phone-back {
  top: 65px;
  right: 70px;
  width: 190px;
  height: 385px;
  opacity: 0.64;
  transform: rotate(10deg);
}

.phone-back > div {
  width: 100%;
  height: 100%;
  border-radius: 23px;
}

.phone-front {
  z-index: 2;
  top: 77px;
  right: 205px;
  width: 205px;
  height: 405px;
  padding: 29px 15px 15px;
  transform: rotate(-7deg);
}

.phone-front::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 58px;
  height: 10px;
  content: "";
  background: #07142f;
  border-radius: 999px;
  transform: translateX(-50%);
}

.download-phone-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.download-phone-header img {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.download-phone-header span {
  width: 65px;
  height: 7px;
  background: #dfe6f0;
  border-radius: 999px;
}

.download-phone-title {
  width: 120px;
  height: 12px;
  margin-top: 21px;
  background: var(--navy);
  border-radius: 999px;
}

.download-phone-text {
  width: 90px;
  height: 6px;
  margin-top: 8px;
  background: #cbd5e1;
  border-radius: 999px;
}

.download-phone-property {
  margin-top: 17px;
  padding: 8px;
  background: var(--white);
  border: 1px solid #e4e9f1;
  border-radius: 10px;
}

.download-phone-property > span {
  display: block;
  height: 92px;
  background:
    linear-gradient(140deg, transparent 49%, #6d86a8 50%) left bottom / 55% 70% no-repeat,
    linear-gradient(220deg, transparent 49%, #5c7598 50%) right bottom / 55% 70% no-repeat,
    linear-gradient(#dfe6ee, #bac7d6);
  border-radius: 7px;
}

.download-phone-property div {
  display: grid;
  gap: 5px;
  padding: 8px 2px 2px;
}

.download-phone-property i {
  display: block;
  width: 90%;
  height: 5px;
  background: #d4dce7;
  border-radius: 999px;
}

.download-phone-property i:first-child {
  width: 68%;
  height: 7px;
  background: var(--navy);
}

.download-phone-property i:last-child {
  width: 52%;
}

.download-phone-property.compact {
  margin-top: 9px;
}

.download-phone-property.compact > span {
  height: 55px;
}

.final-cta-section {
  padding-top: 35px;
  padding-bottom: 95px;
}

.final-cta {
  justify-content: space-between;
  gap: 45px;
  padding: 43px 48px;
  background: var(--surface);
  border: 1px solid #e4e9f1;
  border-radius: 27px;
}

.final-cta > div:first-child {
  max-width: 680px;
}

.final-cta > div:first-child > span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 43px);
}

.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  padding: 70px 0 25px;
  color: #a7b3c8;
  background: #07132f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 50px;
}

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

.brand-footer .brand-copy small {
  color: #8fa0bd;
}

.footer-brand > p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 12px;
}

.footer-links a,
.footer-links span {
  width: fit-content;
  color: #9aa9c1;
  font-size: 12px;
  transition: color 180ms ease;
}

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

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7586a4;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1150px) {
  .primary-navigation {
    gap: 17px;
  }

  .primary-navigation > a:not(.button) {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 28px;
  }

  .company-window {
    width: 500px;
  }

  .phone-card {
    right: 355px;
  }

  .proof-one {
    left: -5px;
  }

  .audience-card {
    padding: 27px;
  }

  .company-grid {
    gap: 48px;
  }

  .download-copy {
    padding: 52px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .site-header {
    padding: 13px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    z-index: 998;
    top: 73px;
    right: 20px;
    left: 20px;
    display: grid;
    align-items: stretch;
    gap: 2px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.17);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .primary-navigation.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-navigation > a:not(.button) {
    padding: 13px;
    font-size: 14px;
  }

  .primary-navigation > a:not(.button)::after {
    display: none;
  }

  .primary-navigation .button {
    width: 100%;
    margin-top: 5px;
  }

  .nav-download {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

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

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

  .hero h1 {
    max-width: 800px;
    font-size: clamp(49px, 9vw, 72px);
  }

  .hero-visual {
    width: min(100%, 670px);
    min-height: 565px;
    margin-inline: auto;
  }

  .company-window {
    right: 7px;
    width: 555px;
  }

  .phone-card {
    right: auto;
    left: 0;
  }

  .proof-one {
    top: -10px;
    left: 35px;
  }

  .credibility-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-card > p {
    min-height: 0;
  }

  .split-section,
  .company-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 48px;
  }

  .company-grid {
    gap: 60px;
  }

  .portal-card {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .trust-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .trust-heading > p {
    max-width: 680px;
  }

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

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

  .download-art {
    min-height: 500px;
  }

  .download-phone.phone-front {
    right: 50%;
    transform: translateX(5%) rotate(-7deg);
  }

  .download-phone.phone-back {
    right: 24%;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 60px);
    letter-spacing: -2.7px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 490px;
  }

  .company-window {
    top: 45px;
    right: -105px;
    width: 490px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .phone-card {
    bottom: -10px;
    left: 1px;
    transform: scale(0.85) rotate(-4deg);
    transform-origin: left bottom;
  }

  .proof-one {
    top: -8px;
    left: 0;
  }

  .proof-two {
    right: 0;
    bottom: 8px;
  }

  .floating-proof {
    gap: 8px;
    padding: 10px 12px;
  }

  .proof-icon {
    width: 31px;
    height: 31px;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
    margin-top: 35px;
    padding: 22px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-copy h2,
  .company-copy h2,
  .trust-heading h2,
  .download-copy h2 {
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: -1.7px;
  }

  .section-heading p,
  .split-copy > p,
  .company-copy > p,
  .trust-heading > p {
    font-size: 15px;
  }

  .audience-card {
    padding: 25px;
  }

  .experience-panel {
    padding: 19px;
  }

  .experience-option {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px;
  }

  .experience-copy {
    width: calc(100% - 67px);
  }

  .experience-status {
    margin-left: 67px;
  }

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

  .company-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .company-actions .button {
    width: 100%;
  }

  .portal-login-preview {
    padding: 24px 20px;
  }

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

  .download-copy {
    padding: 42px 25px 10px;
  }

  .store-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .download-art {
    min-height: 430px;
  }

  .circle-one {
    right: -190px;
  }

  .circle-two {
    right: -60px;
  }

  .download-phone.phone-front {
    right: 50%;
    transform: translateX(24%) scale(0.9) rotate(-7deg);
    transform-origin: bottom;
  }

  .download-phone.phone-back {
    right: 2%;
    transform: scale(0.9) rotate(10deg);
    transform-origin: bottom;
  }

  .final-cta {
    padding: 31px 24px;
  }

  .final-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 455px;
  }

  .company-window {
    right: -150px;
    transform: scale(0.72);
  }

  .phone-card {
    transform: scale(0.76) rotate(-4deg);
  }

  .proof-one {
    transform: scale(0.9);
    transform-origin: left top;
  }

  .proof-two {
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
/* ================================================================
   Official MapleRent identity
   Navy = trust/professionalism
   Canadian red = brand actions and emphasis
   Green = verification and successful status
   ================================================================ */

.brand-mark {
  object-fit: contain;
  padding: 2px;
  background: #ffffff;
  border: 1px solid rgba(8, 32, 73, 0.10);
  box-shadow:
    0 10px 26px rgba(8, 32, 73, 0.16),
    0 0 0 3px rgba(239, 3, 17, 0.04);
}

.sidebar-logo img,
.mobile-top img,
.portal-brand img,
.download-phone-header img {
  object-fit: contain;
  padding: 1px;
  background: #ffffff;
}

.primary-navigation > a:not(.button):hover,
.eyebrow,
.audience-label,
.process-list article > span,
.experience-head span,
.final-cta > div:first-child > span {
  color: var(--red);
}

.primary-navigation > a:not(.button)::after {
  background: var(--red);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 15px 30px var(--red-shadow);
}

.button-primary:hover {
  box-shadow: 0 19px 38px rgba(239, 3, 17, 0.32);
}

.button-secondary,
.button-outline {
  color: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 77% 16%, rgba(239, 3, 17, 0.09), transparent 31%),
    radial-gradient(circle at 7% 52%, rgba(8, 32, 73, 0.08), transparent 27%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 76%);
}

.hero h1 span {
  color: var(--red);
}

.hero-note {
  border-color: rgba(239, 3, 17, 0.12);
}

.hero-glow-one {
  background: rgba(239, 3, 17, 0.055);
}

.hero-glow-two {
  background: rgba(8, 32, 73, 0.045);
}

.orbit-one,
.orbit-two {
  border-color: rgba(239, 3, 17, 0.11);
}

.window-address {
  color: #53627a;
}

.dashboard-avatar,
.company-avatar {
  background: var(--red);
}

.sidebar-nav span.active {
  background:
    linear-gradient(90deg, rgba(239, 3, 17, 0.24), rgba(255, 255, 255, 0.07));
  box-shadow: inset 3px 0 0 var(--red);
}

.chart span {
  background: linear-gradient(180deg, #f55e69, var(--red));
}

.mobile-banner {
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.17), transparent 25%),
    linear-gradient(135deg, var(--navy), #123d78 66%, var(--red-dark) 145%);
}

.proof-icon-blue {
  color: var(--red);
  background: var(--red-soft);
}

.credibility-strip {
  border-color: rgba(239, 3, 17, 0.08);
}

.audience-card::before {
  background: linear-gradient(90deg, var(--red), #ff6872);
}

.renter-card .audience-icon {
  color: var(--red);
  background: var(--red-soft);
}

.renter-card .audience-label,
.renter-card > a {
  color: var(--red);
}

.owner-card::before {
  background: linear-gradient(90deg, var(--green), #5ed68b);
}

.owner-card .audience-label,
.owner-card > a {
  color: var(--green);
}

.company-card::before {
  background: linear-gradient(90deg, var(--navy), #315394);
}

.company-card .audience-label,
.company-card > a {
  color: var(--navy);
}

.experience-panel {
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 3, 17, 0.075), transparent 35%),
    #f7f9fd;
}

.experience-option.active {
  border-color: rgba(239, 3, 17, 0.26);
  box-shadow: 0 16px 35px rgba(239, 3, 17, 0.08);
}

.experience-option.active .experience-symbol {
  color: var(--red);
  background: var(--red-soft);
}

.experience-status {
  color: var(--red);
  background: var(--red-soft);
}

.experience-note svg {
  stroke: var(--red);
}

.company-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(239, 3, 17, 0.17), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(2, 155, 55, 0.08), transparent 30%),
    linear-gradient(135deg, #06152f 0%, #082049 54%, #12335f 100%);
}

.portal-badge {
  color: #ffc3c7;
  background: rgba(239, 3, 17, 0.15);
  border-color: rgba(255, 195, 199, 0.17);
}

.portal-lock {
  color: var(--red);
  background: var(--red-soft);
}

.fake-login-button {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 28px rgba(239, 3, 17, 0.22);
}

.trust-icon {
  color: var(--navy);
  background: #eef3f9;
}

.trust-card:first-child .trust-icon,
.trust-card:nth-child(3) .trust-icon {
  color: var(--green);
  background: var(--green-soft);
}

.trust-disclaimer svg {
  stroke: var(--red);
}

.download-panel {
  background:
    radial-gradient(circle at 86% 9%, rgba(239, 3, 17, 0.27), transparent 29%),
    radial-gradient(circle at 96% 100%, rgba(2, 155, 55, 0.10), transparent 28%),
    linear-gradient(135deg, #06152f 0%, #082049 57%, #12335f 100%);
  box-shadow: 0 24px 70px rgba(8, 32, 73, 0.24);
}

.download-circle {
  border-color: rgba(239, 3, 17, 0.22);
}

.launch-note {
  color: #f5bdc1 !important;
}

.site-footer {
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 3, 17, 0.08), transparent 24%),
    #06152f;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .primary-navigation {
    border-top: 3px solid var(--red);
  }
}
/* ================================================================
   Verified-only positioning
   ================================================================ */

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-assurance > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #075b29;
  background: var(--green-soft);
  border: 1px solid rgba(2, 155, 55, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.hero-assurance svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verified-difference-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 3, 17, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.verified-difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.verified-difference-copy h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.07;
  letter-spacing: -2.6px;
}

.verified-difference-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.verified-statement {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(2, 155, 55, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(8, 32, 73, 0.07);
}

.verified-statement-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 13px;
}

.verified-statement-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verified-statement strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 15px;
}

.verified-statement p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.verified-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.verified-proof-grid article {
  min-height: 230px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e4e9f1;
  border-radius: 21px;
  box-shadow: 0 13px 35px rgba(8, 32, 73, 0.055);
}

.verified-proof-grid article:first-child {
  border-top: 4px solid var(--green);
}

.verified-proof-grid article:nth-child(2) {
  border-top: 4px solid var(--navy);
}

.verified-proof-grid article:nth-child(3) {
  border-top: 4px solid var(--red);
}

.verified-proof-grid article:nth-child(4) {
  border-top: 4px solid var(--green);
}

.verified-proof-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--navy);
  background: #eef3f9;
  border-radius: 14px;
}

.verified-proof-grid article:first-child .verified-proof-icon,
.verified-proof-grid article:nth-child(4) .verified-proof-icon {
  color: var(--green);
  background: var(--green-soft);
}

.verified-proof-grid article:nth-child(3) .verified-proof-icon {
  color: var(--red);
  background: var(--red-soft);
}

.verified-proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verified-proof-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.35px;
}

.verified-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.verified-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  padding: 18px 21px;
  color: #56637a;
  background: #f1f4f8;
  border: 1px solid #dde5ef;
  border-radius: 15px;
  font-size: 11px;
  line-height: 1.65;
}

.verified-safety-note strong {
  flex: 0 0 auto;
  color: var(--navy);
}

@media (max-width: 980px) {
  .verified-difference-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 680px) {
  .hero-assurance {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-assurance > span {
    width: 100%;
    justify-content: flex-start;
    border-radius: 13px;
  }

  .verified-difference-copy h2 {
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: -1.7px;
  }

  .verified-difference-copy > p {
    font-size: 15px;
  }

  .verified-proof-grid {
    grid-template-columns: 1fr;
  }

  .verified-proof-grid article {
    min-height: 0;
  }

  .verified-safety-note {
    flex-direction: column;
  }
}
/* ================================================================
   Real MapleRent app mockup integration
   ================================================================ */

.phone-screen-image,
.phone-front-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: #f3f4f6;
}

.app-screen-image,
.download-app-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-screen-image {
  padding: 0;
  border-radius: 24px;
}

.phone-screen-image .app-screen-image {
  border-radius: 24px;
}

.phone-front-image {
  padding: 0;
  background: #f3f4f6;
}

.phone-front-image .download-app-image {
  border-radius: 23px;
}

.phone-front-image::after,
.phone-screen-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(8, 32, 73, 0.04);
}

@media (max-width: 680px) {
  .phone-screen-image .app-screen-image {
    object-position: top center;
  }
}
/* ================================================================
   Mobile mockup correction — v5
   Uses a cropped app screen with the original aspect ratio.
   ================================================================ */

.phone-card {
  width: 190px;
  height: 375px;
}

.phone-speaker {
  display: none;
}

.phone-screen-image,
.phone-front-image {
  padding: 0 !important;
  background: #f6f8fb !important;
}

.app-screen-image,
.download-app-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: top center !important;
  transform: none !important;
}

.phone-screen-image,
.phone-screen-image .app-screen-image {
  border-radius: 23px;
}

.phone-front-image,
.phone-front-image .download-app-image {
  border-radius: 27px;
}

.store-button svg {
  display: block;
  flex: 0 0 27px;
  width: 27px !important;
  height: 27px !important;
  max-width: 27px !important;
  max-height: 27px !important;
  overflow: visible;
}

@media (max-width: 680px) {
  .phone-card {
    width: 190px;
    height: 375px;
  }
}


/* Live company-portal link */
.fake-login-button {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.fake-login-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
  box-shadow: 0 17px 34px rgba(239, 3, 17, 0.27);
}

.fake-login-button:focus-visible {
  outline: 3px solid rgba(239, 3, 17, 0.24);
  outline-offset: 3px;
}

/* Advertising and partnerships */
.advertising-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 85%,
      rgba(239, 3, 17, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(8, 32, 73, 0.09),
      transparent 30%
    ),
    #f5f7fb;
}

.advertising-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.advertising-copy h2 {
  max-width: 680px;
  margin: 18px 0 20px;
  color: var(--navy-900);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -3.2px;
}

.advertising-lead {
  max-width: 650px;
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
}

.advertising-highlight {
  max-width: 650px;
  margin: 25px 0 0;
  padding: 18px 20px;
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid rgba(8, 32, 73, 0.10);
  border-left: 4px solid var(--red-600);
  border-radius: 13px;
  box-shadow: 0 15px 35px rgba(8, 32, 73, 0.06);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.6;
}

.advertising-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.advertising-actions > span {
  max-width: 290px;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.55;
}

.advertising-panel {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      150deg,
      rgba(6, 26, 60, 0.98),
      rgba(16, 49, 95, 0.97)
    ),
    var(--navy-900);
  border-radius: 28px;
  box-shadow: 0 28px 75px rgba(8, 32, 73, 0.20);
}

.advertising-panel::before {
  content: "";
  position: absolute;
  top: -115px;
  right: -105px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.advertising-panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.advertising-panel-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: var(--red-600);
  border-radius: 15px;
  box-shadow: 0 13px 30px rgba(227, 6, 19, 0.25);
}

.advertising-panel-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advertising-panel-heading div {
  display: grid;
  gap: 4px;
}

.advertising-panel-heading small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.advertising-panel-heading strong {
  color: #ffffff;
  font-size: 18px;
}

.advertising-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.advertising-category-grid article {
  min-width: 0;
  padding: 17px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.advertising-category-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: #ffb8bd;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.5px;
}

.advertising-category-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
}

.advertising-category-grid p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.advertising-disclaimer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 9px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .advertising-shell {
    grid-template-columns: 1fr;
  }

  .advertising-copy h2 {
    max-width: 760px;
  }

  .advertising-lead,
  .advertising-highlight {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .advertising-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .advertising-actions .button {
    width: 100%;
  }

  .advertising-actions > span {
    max-width: none;
    text-align: center;
  }

  .advertising-category-grid {
    grid-template-columns: 1fr;
  }

  .advertising-panel {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .advertising-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -2.4px;
  }
}

/* Advertising panel visibility correction */
.advertising-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.advertising-panel-icon {
  color: #ffffff;
  background: #e30613;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.advertising-panel-icon svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2.15;
  opacity: 1;
}

.advertising-category-grid article {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.075)
    );
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.advertising-category-grid article > span {
  display: inline-flex;
  min-width: 29px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  color: #ffffff;
  background: rgba(227, 6, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 9px;
  font-size: 9px;
}

.advertising-category-grid strong {
  color: #ffffff !important;
}

.advertising-category-grid p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.advertising-panel-heading small {
  color: rgba(255, 255, 255, 0.72);
}

.advertising-panel-heading strong {
  color: #ffffff !important;
}

.advertising-disclaimer {
  color: rgba(255, 255, 255, 0.64);
}

/* Advertising cards contrast correction */
.advertising-panel {
  background:
    linear-gradient(
      150deg,
      #061a3c 0%,
      #082049 58%,
      #10315f 100%
    ) !important;
}

.advertising-category-grid article {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.advertising-category-grid article > span {
  color: #ffffff !important;
  background: #e30613 !important;
  border-color: #e30613 !important;
}

.advertising-category-grid strong {
  color: #082049 !important;
}

.advertising-category-grid p {
  color: #667085 !important;
}

.advertising-panel-heading strong {
  color: #ffffff !important;
}

.advertising-panel-heading small {
  color: rgba(255, 255, 255, 0.76) !important;
}

.advertising-disclaimer {
  color: rgba(255, 255, 255, 0.72) !important;
}

