@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --green-950: #052d24;
  --green-900: #073e30;
  --green-800: #075842;
  --green-700: #007b52;
  --green-600: #009866;
  --green-500: #12b97b;
  --mint-100: #dff5ec;
  --mint-50: #eff9f5;
  --cream: #f5f2e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #0f1915;
  --muted: #5f6b66;
  --line: rgba(7, 62, 48, 0.14);
  --red: #e93838;
  --yellow: #f7d143;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 26px 80px rgba(2, 36, 27, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--green-500);
  color: var(--white);
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  color: var(--white);
  transition: padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(5, 45, 36, 0.92);
  box-shadow: 0 10px 36px rgba(0, 22, 16, 0.15);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.16);
  clip-path: inset(2.2% round 23%);
  transform: scale(1.045);
}

.brand > span > span {
  font-weight: 500;
  opacity: 0.82;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.language-option {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--white);
}

.language-option.is-active {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.desktop-nav .is-current::after {
  transform: scaleX(1);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.button-primary {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.23);
}

.button-white {
  color: var(--green-950);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 176px 0 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 32%, rgba(25, 189, 126, 0.19), transparent 31%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 50%, #064b3a 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(94, 227, 177, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 36px;
  right: -130px;
  width: 740px;
  height: 740px;
}

.hero-glow-two {
  top: 138px;
  right: -24px;
  width: 510px;
  height: 510px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--green-700);
}

.eyebrow-light {
  color: #72d7ad;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #67e2ae;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(103, 226, 174, 0.12);
}

.hero h1,
.section-heading h2,
.guidance-copy h2,
.community-copy h2,
.download-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 5.3vw, 82px);
}

.hero-intro {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(3px);
}

.availability {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.platform img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.platform strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.radar-card {
  position: relative;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 15, 10, 0.38);
  transform: rotateY(-5deg) rotateX(2deg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.radar-card video {
  width: 100%;
  min-height: 462px;
  object-fit: cover;
  border-radius: 28px;
  filter: saturate(0.88) contrast(1.02);
}

.radar-card::after {
  position: absolute;
  inset: 13px;
  background: linear-gradient(to bottom, transparent 50%, rgba(4, 46, 35, 0.86));
  border-radius: 28px;
  pointer-events: none;
  content: "";
}

.radar-overlay {
  position: absolute;
  right: 42px;
  bottom: 39px;
  left: 42px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.radar-overlay span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.radar-overlay strong {
  max-width: 190px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.2;
  text-align: right;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 22, 16, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.floating-card strong {
  font-size: 13px;
}

.floating-card div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.floating-icon {
  display: grid !important;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 22px;
  place-items: center;
}

.floating-card-top {
  top: 42px;
  right: -35px;
  animation: float 5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 76px;
  left: -44px;
  animation: float 5s 1.2s ease-in-out infinite;
}

.live-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 11px;
  background: var(--green-500);
  border-radius: 50%;
}

.live-pulse::before {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--green-500);
  border-radius: 50%;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  from { transform: scale(0.45); opacity: 1; }
  to { transform: scale(1.5); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trust-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 115px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip > p {
  max-width: 180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 44px;
}

.trust-items span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.trust-items b {
  color: var(--white);
  font-size: 14px;
}

.section {
  padding: 135px 0;
}

.how {
  background: var(--cream);
}

.section-heading h2,
.guidance-copy h2,
.community-copy h2,
.download-copy h2 {
  font-size: clamp(45px, 5.3vw, 76px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 72px;
}

.step-card {
  position: relative;
  min-height: 510px;
  padding: 33px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 62, 48, 0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.step-card-featured {
  background: var(--green-900);
  color: var(--white);
}

.step-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: rgba(7, 62, 48, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.step-card-featured .step-number {
  color: rgba(255, 255, 255, 0.34);
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--green-900);
  background: var(--mint-100);
  border-radius: 16px;
  font-size: 25px;
  font-style: normal;
  place-items: center;
}

.step-icon-red {
  color: var(--red);
  background: #ffeded;
}

.step-card h3 {
  margin: 55px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  letter-spacing: -1.2px;
}

.step-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-card-featured p {
  color: rgba(255, 255, 255, 0.58);
}

.mini-map {
  position: absolute;
  right: -25px;
  bottom: -45px;
  left: 33px;
  height: 230px;
  background: #d8eee5;
  border-radius: 24px 0 0 0;
  overflow: hidden;
}

.mini-map::before,
.mini-map::after,
.map-road {
  position: absolute;
  height: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  content: "";
}

.mini-map::before {
  top: 63px;
  left: -20px;
  width: 340px;
  transform: rotate(13deg);
}

.mini-map::after {
  top: 115px;
  left: 40px;
  width: 330px;
  transform: rotate(-32deg);
}

.map-road-one {
  top: 15px;
  left: 145px;
  width: 280px;
  transform: rotate(78deg);
}

.map-road-two {
  right: 0;
  bottom: 38px;
  width: 330px;
  transform: rotate(4deg);
}

.map-you,
.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
}

.map-you {
  top: 96px;
  left: 49%;
  width: 18px;
  height: 18px;
  background: #397ed8;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(57, 126, 216, 0.2);
}

.map-pin {
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50% 50% 50% 4px;
  font-size: 11px;
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.map-pin-one { top: 35px; left: 22%; }
.map-pin-two { top: 72px; right: 18%; }
.map-pin-three { bottom: 35px; left: 33%; }

.emergency-action {
  position: absolute;
  right: 33px;
  bottom: 33px;
  left: 33px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 20px;
  padding: 22px;
  background: #fff4f4;
  border: 1px solid #ffd4d4;
  border-radius: 17px;
}

.emergency-action span {
  color: #8c5a5a;
  font-size: 11px;
}

.emergency-action strong {
  grid-row: span 2;
  color: var(--red);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
}

.emergency-action i {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.contribute-list {
  position: absolute;
  right: 33px;
  bottom: 38px;
  left: 33px;
  display: grid;
  gap: 11px;
}

.contribute-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.contribute-list i {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.product {
  position: relative;
  min-height: 1050px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--green-950);
  background-size: 64px 64px;
  overflow: hidden;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 570px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.7;
}

.phone-stage {
  position: relative;
  height: 655px;
  margin-top: 76px;
}

.phone {
  position: absolute;
  padding: 9px;
  background: #080d0b;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.phone::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  pointer-events: none;
  content: "";
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 33px;
}

.phone-topbar {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 19px;
  background: #050807;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-left,
.phone-right {
  top: 75px;
  width: 265px;
  height: 545px;
}

.phone-left {
  left: 8%;
  transform: rotate(-8deg);
}

.phone-right {
  right: 8%;
  transform: rotate(8deg);
}

.phone-center {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 312px;
  height: 650px;
  transform: translateX(-50%);
}

.stage-caption {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 11px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.stage-caption span {
  color: var(--green-600);
  font-weight: 800;
}

.caption-one { top: 140px; left: 2%; }
.caption-two { bottom: 35px; left: 50%; transform: translateX(-50%); }
.caption-three { top: 370px; right: 0; }

.guidance {
  background: var(--cream);
}

.guidance-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.guidance-copy > p:not(.eyebrow, .safety-note) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--green-700);
  background: #d7eee5;
  border-radius: 50%;
  font-size: 11px;
  place-items: center;
}

.safety-note {
  max-width: 540px;
  margin: 34px 0 0;
  padding: 17px 20px;
  color: #5d5f55;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  font-size: 12px;
  line-height: 1.65;
}

.guidance-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 660px;
}

.guidance-visual::before {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 20px;
  left: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 152, 102, 0.18), transparent 62%),
    var(--mint-100);
  border-radius: 50%;
  content: "";
}

.phone-guidance {
  position: relative;
  z-index: 2;
  width: 318px;
  height: 650px;
}

.guidance-badge {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.guidance-badge > span {
  display: grid;
  width: 39px;
  height: 39px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  place-items: center;
}

.guidance-badge strong,
.guidance-badge small {
  display: block;
}

.guidance-badge strong {
  font-size: 12px;
}

.guidance-badge small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.owners {
  background: var(--paper);
}

.owners-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 90px;
}

.owners-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.1vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.owners-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.button-owner {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 16px 38px rgba(5, 45, 36, 0.16);
}

.owner-panel {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(5, 45, 36, 0.09);
}

.owner-panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.owner-device-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 111, 74, 0.18);
}

.owner-device-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
}

.owner-panel-head span,
.owner-panel-head strong {
  display: block;
}

.owner-panel-head span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.owner-panel-head strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.owner-panel-head > b {
  padding: 7px 11px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.owner-benefits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.owner-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(7, 62, 48, 0.08);
  border-radius: 17px;
}

.owner-benefits article > span {
  display: grid;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.owner-benefits h3 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.owner-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.owner-impact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 700;
}

.owner-impact span {
  display: grid;
  width: 23px;
  height: 23px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  font-size: 10px;
  place-items: center;
}

.community {
  padding-bottom: 80px;
  color: var(--white);
  background: var(--paper);
}

.community-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  min-height: 610px;
  padding: 80px;
  background: var(--green-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.community-shell::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.28;
  content: "";
}

.community-copy {
  position: relative;
  z-index: 3;
}

.community-copy h2 {
  max-width: 600px;
}

.community-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.network-visual {
  position: relative;
  height: 460px;
}

.network-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(108, 224, 176, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 430px; height: 430px; }
.ring-two { width: 310px; height: 310px; }
.ring-three { width: 190px; height: 190px; }

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 120px;
  height: 120px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.network-core img {
  width: 100%;
  border-radius: 25px;
  clip-path: inset(2.2% round 23%);
  transform: scale(1.045);
}

.network-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green-700);
  background: var(--white);
  border: 6px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 13px;
  place-items: center;
}

.node-one { top: 5%; left: 48%; }
.node-two { top: 43%; right: 1%; }
.node-three { bottom: 4%; left: 40%; }
.node-four { top: 43%; left: 2%; }

.download {
  padding-top: 80px;
}

.download-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--line);
}

.download-icon {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 99, 67, 0.17);
  clip-path: inset(2.2% round 23%);
  transform: scale(1.045);
}

.download-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.download-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.store-buttons {
  position: relative;
  display: flex;
  gap: 10px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 162px;
  min-height: 55px;
  padding: 8px 16px;
  color: var(--white);
  background: #0e1411;
  border-radius: 12px;
  transition: transform 180ms ease, background 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  background: var(--green-900);
  transform: translateY(-2px);
}

.store-button span:last-child,
.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  font-size: 8px;
  letter-spacing: 0.2px;
}

.store-button strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.store-symbol {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.store-note {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  margin: 0;
  color: var(--green-700);
  font-size: 11px;
}

.store-note.is-visible {
  display: block;
}

.site-footer {
  padding: 0 0 60px;
  background: var(--paper);
}

.blog-page {
  background: var(--paper);
}

.blog-hero {
  position: relative;
  min-height: 600px;
  padding: 195px 0 105px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 36%, rgba(25, 189, 126, 0.2), transparent 30%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 58%, #064b3a 100%);
  overflow: hidden;
}

.blog-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.blog-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.blog-hero-copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.blog-hero-copy > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
}

.blog-content {
  background: var(--paper);
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
}

.featured-visual {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 152, 102, 0.32), transparent 55%),
    var(--green-900);
  overflow: hidden;
}

.featured-visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 19px 19px;
  opacity: 0.35;
  content: "";
}

.editorial-radar {
  position: absolute;
  inset: 0;
}

.editorial-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(126, 231, 190, 0.33);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { width: 430px; height: 430px; }
.ring-b { width: 310px; height: 310px; }
.ring-c { width: 190px; height: 190px; }

.editorial-radar > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 29px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28);
  clip-path: inset(2.2% round 23%);
  transform: translate(-50%, -50%) scale(1.045);
}

.editorial-node {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--green-700);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-style: normal;
  place-items: center;
}

.editorial-node-one { top: 15%; left: 49%; }
.editorial-node-two { right: 11%; bottom: 31%; }
.editorial-node-three { bottom: 11%; left: 30%; }

.featured-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.post-label {
  padding: 7px 10px;
  color: var(--green-700);
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.post-meta i {
  width: 3px;
  height: 3px;
  background: var(--green-600);
  border-radius: 50%;
}

.featured-copy h2 {
  max-width: 520px;
  margin: 20px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4vw, 53px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.featured-copy > p:not(.post-meta) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.post-link b {
  padding: 5px 8px;
  color: var(--muted);
  background: rgba(7, 62, 48, 0.07);
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.blog-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 105px 0 38px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.blog-list-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.045em;
}

.blog-list-heading > span {
  color: var(--green-700);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

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

.post-card {
  display: flex;
  min-height: 390px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  box-shadow: 0 24px 50px rgba(5, 45, 36, 0.09);
  transform: translateY(-4px);
}

.post-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-index {
  color: rgba(7, 62, 48, 0.32);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.post-category {
  padding: 6px 9px;
  color: var(--green-700);
  background: var(--mint-50);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 55px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.post-card > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.post-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(7, 62, 48, 0.48);
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.post-card footer a {
  color: var(--green-700);
  font-weight: 800;
}

.post-card footer a:hover,
.post-card footer a:focus-visible {
  color: var(--green-500);
}

.blog-back {
  display: flex;
  justify-content: center;
  margin-top: 62px;
}

.blog-footer {
  padding-top: 30px;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  padding: 180px 0 105px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(25, 189, 126, 0.22), transparent 32%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  overflow: hidden;
}

.article-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 990px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 960px;
  margin: 20px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.article-excerpt {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  align-items: start;
  justify-content: space-between;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 120px;
}

.article-body {
  color: #283e36;
  font-size: 17px;
  line-height: 1.82;
}

.article-body .article-lead {
  margin-top: 0;
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.article-body h2 {
  margin: 68px 0 18px;
  color: var(--green-950);
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.article-body h3 {
  margin: 38px 0 10px;
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 18px 0 0;
}

.article-body li + li {
  margin-top: 9px;
}

.article-body a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout,
.article-emergency {
  margin: 38px 0;
  padding: 24px 26px;
  color: var(--green-900);
  background: var(--mint-50);
  border-left: 4px solid var(--green-500);
  border-radius: 0 16px 16px 0;
}

.article-emergency {
  color: #681b1b;
  background: #fff0f0;
  border-left-color: var(--red);
}

.article-sources {
  margin-top: 70px !important;
  padding-top: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.article-aside {
  position: sticky;
  top: 110px;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.article-aside img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.article-aside h2 {
  margin: 22px 0 0;
  color: var(--green-950);
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.035em;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 60px;
}

.brand-footer {
  color: var(--green-900);
}

.footer-grid > div:first-child > p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px 35px;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-600);
}

.footer-legal {
  justify-self: end;
  max-width: 320px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.footer-legal p {
  margin: 0 0 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
  }

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

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

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

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

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

  .step-card:last-child {
    grid-column: span 2;
    min-height: 410px;
  }

  .guidance-grid {
    gap: 40px;
  }

  .owners-grid {
    gap: 45px;
  }

  .community-shell {
    padding: 60px;
  }

  .nav-actions .button-small {
    display: none;
  }

  .download-shell {
    grid-template-columns: auto 1fr;
  }

  .store-buttons {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 680px);
  }

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

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding: 140px 0 44px;
  }

  .hero h1 {
    font-size: clamp(55px, 13vw, 76px);
  }

  .hero-grid {
    gap: 68px;
  }

  .radar-card video {
    min-height: 340px;
  }

  .trust-strip {
    align-items: flex-start;
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section {
    padding: 100px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .step-card,
  .step-card:last-child {
    grid-column: auto;
    min-height: 450px;
  }

  .phone-stage {
    height: 600px;
  }

  .phone-left {
    left: -5%;
  }

  .phone-right {
    right: -5%;
  }

  .stage-caption {
    display: none;
  }

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

  .guidance-copy {
    max-width: 620px;
  }

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

  .owners-copy {
    max-width: 620px;
  }

  .community-shell {
    grid-template-columns: 1fr;
    padding: 60px 38px 30px;
  }

  .network-visual {
    margin-top: 40px;
  }

  .download-shell {
    grid-template-columns: auto 1fr;
    gap: 26px;
  }

  .store-buttons {
    grid-column: 1 / -1;
    padding-left: 134px;
  }

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

  .footer-legal {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    padding: 42px;
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 40px, 500px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .language-toggle {
    padding: 3px;
  }

  .language-option {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.5vw, 55px);
    overflow-wrap: anywhere;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

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

  .availability {
    flex-wrap: wrap;
  }

  .availability > span:first-child {
    width: 100%;
  }

  .radar-card {
    padding: 8px;
    border-radius: 25px;
    transform: none;
  }

  .radar-card video {
    min-height: 265px;
    border-radius: 19px;
  }

  .radar-card::after {
    inset: 8px;
    border-radius: 19px;
  }

  .radar-overlay {
    right: 25px;
    bottom: 24px;
    left: 25px;
  }

  .radar-overlay span {
    display: none;
  }

  .radar-overlay strong {
    max-width: 170px;
    margin-left: auto;
    font-size: 16px;
  }

  .floating-card {
    min-width: 158px;
    padding: 11px 13px;
  }

  .floating-card-top {
    top: -30px;
    right: 12px;
  }

  .floating-card-bottom {
    bottom: -32px;
    left: 11px;
  }

  .trust-strip {
    display: block;
    margin-top: 105px;
  }

  .trust-strip > p {
    max-width: none;
    margin-bottom: 22px;
  }

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

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .guidance-copy h2,
  .owners-copy h2,
  .community-copy h2,
  .download-copy h2 {
    font-size: 43px;
    overflow-wrap: anywhere;
  }

  .steps-grid {
    margin-top: 50px;
  }

  .step-card {
    min-height: 430px;
    padding: 27px;
  }

  .step-number {
    top: 27px;
    right: 27px;
    font-size: 20px;
  }

  .mini-map {
    left: 27px;
  }

  .phone-stage {
    height: 570px;
    margin-top: 55px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    width: 280px;
    height: 570px;
  }

  .guidance-visual {
    min-height: 590px;
  }

  .phone-guidance {
    width: 280px;
    height: 570px;
  }

  .guidance-badge {
    right: -8px;
    bottom: 65px;
  }

  .community {
    padding: 14px 0 60px;
  }

  .owner-panel {
    padding: 20px;
  }

  .owner-panel-head {
    grid-template-columns: auto 1fr;
  }

  .owner-panel-head > b {
    display: none;
  }

  .community-shell {
    min-height: auto;
    padding: 48px 26px 10px;
    border-radius: 27px;
  }

  .network-visual {
    height: 360px;
  }

  .ring-one { width: 340px; height: 340px; }
  .ring-two { width: 240px; height: 240px; }
  .ring-three { width: 145px; height: 145px; }

  .network-core {
    width: 100px;
    height: 100px;
  }

  .download-shell {
    grid-template-columns: 1fr;
    padding-bottom: 85px;
  }

  .download-icon {
    width: 86px;
    height: 86px;
  }

  .store-buttons {
    grid-column: auto;
    flex-direction: column;
    padding-left: 0;
  }

  .store-button {
    width: 100%;
  }

  .store-note {
    position: static;
  }

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

  .footer-legal {
    grid-column: auto;
  }

  .blog-hero {
    min-height: 520px;
    padding: 155px 0 80px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(42px, 11.5vw, 56px);
    overflow-wrap: anywhere;
  }

  .featured-visual {
    min-height: 340px;
  }

  .ring-a { width: 320px; height: 320px; }
  .ring-b { width: 230px; height: 230px; }
  .ring-c { width: 145px; height: 145px; }

  .featured-copy {
    padding: 30px 25px 36px;
  }

  .blog-list-heading {
    margin-top: 75px;
  }

  .post-card {
    min-height: 350px;
    padding: 24px;
  }

  .article-hero {
    padding: 140px 0 75px;
  }

  .article-back {
    margin-bottom: 42px;
  }

  .article-hero h1 {
    font-size: clamp(42px, 11vw, 56px);
    overflow-wrap: anywhere;
  }

  .article-excerpt {
    font-size: 16px;
  }

  .article-layout {
    padding-top: 70px;
    padding-bottom: 85px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body .article-lead {
    font-size: 20px;
  }

  .article-body h2 {
    margin-top: 52px;
    font-size: 31px;
  }

  .article-body h3 {
    font-size: 21px;
  }

  .article-callout,
  .article-emergency {
    padding: 21px;
  }
}

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

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