:root {
  color-scheme: light;
  --landing-bg: #ffffff;
  --landing-bg-soft: #f6f8fb;
  --landing-surface: rgba(255, 255, 255, 0.86);
  --landing-surface-strong: #ffffff;
  --landing-text: #151a20;
  --landing-muted: #66717f;
  --landing-muted-strong: #3e4956;
  --landing-line: rgba(21, 26, 32, 0.11);
  --landing-line-strong: rgba(21, 26, 32, 0.16);
  --landing-accent: #f15f64;
  --landing-cyan: #4fc5c7;
  --landing-violet: #9b7cff;
  --landing-gold: #e2bc72;
  --landing-radius: 20px;
  --landing-shadow: 0 28px 70px rgba(26, 40, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Manrope", sans-serif;
}

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

.landing-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(79, 197, 199, 0.1), transparent 34%),
    linear-gradient(248deg, rgba(241, 95, 100, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 50%, #ffffff 100%);
}

.landing-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-brand__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(79, 197, 199, 0.16);
}

.landing-brand__wordmark {
  display: block;
  width: 86px;
  height: 32px;
  color: #151a20;
}

.landing-brand__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-brand__tagline {
  padding-left: 12px;
  border-left: 1px solid var(--landing-line);
  color: #7a8491;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #394554;
  font-size: 14px;
  font-weight: 700;
}

.landing-nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.landing-nav a:hover {
  color: #151a20;
}

.landing-nav__login {
  padding: 10px 19px;
  border: 1px solid var(--landing-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.landing-nav__login:hover {
  border-color: rgba(79, 197, 199, 0.42);
  background: rgba(79, 197, 199, 0.12);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.85fr);
  align-items: center;
  gap: 60px;
  width: min(1180px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 55px 0 100px;
}

.landing-hero__content {
  position: relative;
  z-index: 3;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #43505d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-cyan);
  box-shadow: 0 0 0 5px rgba(79, 197, 199, 0.14), 0 0 20px rgba(79, 197, 199, 0.72);
}

.landing-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 0.98;
}

.landing-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #151a20 0%, #258f95 34%, #d94f55 72%, #b48736 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.landing-hero__lead {
  max-width: 590px;
  margin: 29px 0 0;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.75;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.landing-button--primary {
  background: linear-gradient(105deg, #4fc5c7, #7277e8 48%, #f15f64);
  box-shadow: 0 18px 38px rgba(79, 197, 199, 0.2), 0 10px 30px rgba(241, 95, 100, 0.16);
}

.landing-button--primary:hover {
  box-shadow: 0 22px 46px rgba(79, 197, 199, 0.28), 0 14px 36px rgba(241, 95, 100, 0.22);
}

.landing-button--secondary {
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.82);
  color: #24303d;
  backdrop-filter: blur(12px);
}

.landing-button--secondary:hover {
  border-color: rgba(226, 188, 114, 0.34);
  background: rgba(226, 188, 114, 0.08);
}

.landing-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.landing-trust__avatars {
  display: flex;
  padding-left: 9px;
}

.landing-trust__avatars span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b6972, #4fc5c7);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.landing-trust__avatars span:nth-child(2) {
  background: linear-gradient(135deg, #735ee8, #f15f64);
}

.landing-trust__avatars span:nth-child(3) {
  background: linear-gradient(135deg, #e2bc72, #74613b);
}

.landing-trust__avatars span:last-child {
  background: #20262f;
}

.landing-trust p {
  margin: 0;
  color: #687482;
  font-size: 11px;
  line-height: 1.5;
}

.landing-trust strong {
  color: #273241;
  font-size: 12px;
}

.landing-hero__visual {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.landing-phone {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 292px;
  height: 598px;
  padding: 9px;
  border: 1px solid rgba(21, 26, 32, 0.16);
  border-radius: 43px;
  background: linear-gradient(145deg, #f8fafc, #dae1ea 24%, #aeb9c6 78%, #ffffff);
  box-shadow: var(--landing-shadow), 0 0 0 7px rgba(21, 26, 32, 0.035);
  transform: translateX(-50%) rotate(3deg);
}

.landing-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
}

.landing-phone__screen::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(79, 197, 199, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(241, 95, 100, 0.1), transparent 36%);
  pointer-events: none;
}

.landing-phone__screen > * {
  position: relative;
  z-index: 1;
}

.landing-phone__speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 6;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #11161d;
  transform: translateX(-50%);
}

.landing-phone__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 61px;
  padding: 24px 18px 9px;
}

.landing-phone__logo {
  width: 48px;
  height: 24px;
  color: #151a20;
}

.landing-phone__notification {
  color: var(--landing-cyan);
  font-size: 14px;
}

.landing-stories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 9px 12px 13px;
  border-bottom: 1px solid rgba(21, 26, 32, 0.08);
}

.landing-stories div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.story-avatar {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid #4fc5c7;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d3940, #5fa4a5);
  box-shadow: inset 0 0 0 3px #fff;
  font-size: 12px;
  font-weight: 800;
}

.story-avatar--add {
  border-color: #414b56;
  background: #eef2f6;
  color: #596573;
  font-size: 19px;
}

.story-avatar--two {
  border-color: #f15f64;
  background: linear-gradient(135deg, #c8565c, #5b3749);
}

.story-avatar--three {
  border-color: #e2bc72;
  background: linear-gradient(135deg, #d5ad64, #345c67);
}

.landing-stories small {
  width: 100%;
  overflow: hidden;
  color: #677381;
  font-size: 7px;
  text-align: center;
  text-overflow: ellipsis;
}

.landing-post__header {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
}

.landing-post__avatar {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f15f64, #735ee8);
  font-size: 9px;
  font-weight: 800;
}

.landing-post__header strong,
.landing-post__header small {
  display: block;
}

.landing-post__header strong {
  font-size: 9px;
}

.landing-post__header small {
  margin-top: 2px;
  color: #737f8c;
  font-size: 6px;
}

.landing-post__header b {
  color: #66717e;
  font-size: 9px;
  letter-spacing: 1px;
}

.landing-post__media {
  position: relative;
  height: 270px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #4fc5c7 0%, #2c4f67 42%, #161b24 100%);
}

.landing-post__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(9, 11, 15, 0.72));
}

.landing-post__sun {
  position: absolute;
  top: 50px;
  right: 42px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2bc72;
  box-shadow: 0 0 38px rgba(226, 188, 114, 0.52);
}

.landing-post__mountain {
  position: absolute;
  right: -30px;
  bottom: -4px;
  left: -35px;
  height: 155px;
  background: #273b48;
  clip-path: polygon(0 80%, 18% 50%, 32% 68%, 54% 18%, 70% 62%, 85% 43%, 100% 72%, 100% 100%, 0 100%);
}

.landing-post__mountain--front {
  bottom: -35px;
  height: 165px;
  background: #101820;
  clip-path: polygon(0 64%, 16% 39%, 30% 66%, 47% 35%, 61% 73%, 78% 40%, 100% 64%, 100% 100%, 0 100%);
}

.landing-post__media > span {
  position: absolute;
  right: 16px;
  bottom: 17px;
  left: 16px;
  z-index: 2;
  font-size: 13px;
  font-weight: 800;
}

.landing-post__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 13px 5px;
  color: #26313e;
  font-size: 17px;
}

.landing-post__save {
  margin-left: auto;
}

.landing-post p {
  margin: 0;
  padding: 0 13px;
  color: #687482;
  font-size: 7px;
  line-height: 1.55;
}

.landing-post p strong {
  color: #17202a;
}

.landing-phone__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 47px;
  border-top: 1px solid rgba(21, 26, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: #65717f;
  font-size: 17px;
  backdrop-filter: blur(10px);
}

.landing-phone__create {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: linear-gradient(135deg, #4fc5c7, #f15f64);
  color: #fff;
}

.landing-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 12px 14px;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(26, 40, 54, 0.14);
  backdrop-filter: blur(18px);
}

.landing-float strong,
.landing-float small {
  display: block;
}

.landing-float strong {
  font-size: 10px;
}

.landing-float small {
  margin-top: 3px;
  color: #6a7582;
  font-size: 7px;
}

.landing-float--message {
  top: 80px;
  left: -2px;
  transform: rotate(-4deg);
}

.landing-float__app-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(79, 197, 199, 0.18);
}

.landing-float--nearby {
  right: -8px;
  bottom: 98px;
  transform: rotate(4deg);
}

.landing-float__pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #64d89a;
  box-shadow: 0 0 0 6px rgba(100, 216, 154, 0.1), 0 0 18px rgba(100, 216, 154, 0.55);
}

.landing-orbit {
  position: absolute;
  border: 1px solid rgba(21, 26, 32, 0.08);
  border-radius: 50%;
}

.landing-orbit--one {
  inset: 30px 2px 20px;
  transform: rotate(-13deg);
}

.landing-orbit--two {
  inset: 100px -55px 82px;
  border-color: rgba(79, 197, 199, 0.12);
  transform: rotate(18deg);
}

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

.landing-glow--violet {
  top: 8%;
  right: 4%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(79, 197, 199, 0.14), transparent 68%);
}

.landing-glow--rose {
  bottom: -12%;
  left: 24%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(241, 95, 100, 0.09), transparent 70%);
}

.landing-features {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 125px;
}

.landing-section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.landing-section-heading > span,
.landing-community__label {
  color: #78d8d8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-section-heading h2,
.landing-community h2 {
  margin: 14px 0 15px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.landing-section-heading p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.7;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-feature-grid article {
  min-height: 245px;
  padding: 31px;
  border: 1px solid var(--landing-line);
  border-radius: var(--landing-radius);
  background:
    linear-gradient(145deg, rgba(79, 197, 199, 0.06), transparent 58%),
    var(--landing-surface);
  box-shadow: 0 20px 55px rgba(26, 40, 54, 0.08);
}

.landing-feature__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(79, 197, 199, 0.24);
  border-radius: 14px;
  background: rgba(79, 197, 199, 0.09);
  color: #8fe6df;
  font-size: 22px;
}

.landing-feature-grid h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.landing-feature-grid p {
  margin: 0;
  color: #687482;
  font-size: 13px;
  line-height: 1.75;
}

.landing-community {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 90px;
  padding: 62px;
  border: 1px solid rgba(21, 26, 32, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(130deg, rgba(11, 13, 16, 0.36), transparent 58%),
    linear-gradient(110deg, #2c7b82 0%, #5850b5 45%, #c74f58 100%);
  box-shadow: 0 30px 90px rgba(26, 40, 54, 0.14);
}

.landing-safety {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 90px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 145px;
}

.landing-safety__visual {
  position: relative;
  min-height: 430px;
}

.landing-safety__halo {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(21, 26, 32, 0.09);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(79, 197, 199, 0.16), transparent 58%),
    radial-gradient(circle at 36% 30%, rgba(226, 188, 114, 0.12), transparent 32%);
  box-shadow: inset 0 0 70px rgba(79, 197, 199, 0.07);
}

.landing-safety__halo::before,
.landing-safety__halo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 50%;
  content: "";
}

.landing-safety__halo::before {
  inset: 42px;
}

.landing-safety__halo::after {
  inset: 92px;
}

.landing-safety__shield {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 172px;
  height: 196px;
  border: 1px solid rgba(21, 26, 32, 0.12);
  border-radius: 48% 48% 50% 50% / 28% 28% 62% 62%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.68));
  box-shadow: 0 35px 70px rgba(26, 40, 54, 0.14);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.landing-safety__shield img {
  width: 86px;
  height: 86px;
  border-radius: 22px;
}

.landing-safety__shield span {
  position: absolute;
  right: 31px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #64d89a;
  color: #11241b;
  font-size: 13px;
  font-weight: 800;
}

.landing-safety__status {
  position: absolute;
  z-index: 3;
  padding: 12px 17px;
  border: 1px solid var(--landing-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: #273241;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(26, 40, 54, 0.12);
  backdrop-filter: blur(14px);
}

.landing-safety__status span {
  margin-right: 7px;
  color: #64d89a;
}

.landing-safety__status--top {
  top: 76px;
  right: 1px;
}

.landing-safety__status--bottom {
  bottom: 73px;
  left: 0;
}

.landing-safety__content h2 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
}

.landing-safety__content > p {
  max-width: 580px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.75;
}

.landing-safety__points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.landing-safety__points > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.landing-safety__points > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(79, 197, 199, 0.24);
  border-radius: 12px;
  color: #8fe6df;
  font-size: 10px;
  font-weight: 800;
}

.landing-safety__points p {
  margin: 0;
  color: #687482;
  font-size: 12px;
  line-height: 1.65;
}

.landing-safety__points strong {
  display: block;
  margin-bottom: 3px;
  color: #17202a;
  font-size: 13px;
}

.landing-community h2 {
  margin-bottom: 0;
}

.landing-community__label {
  color: rgba(255, 255, 255, 0.78);
}

.landing-button--light {
  flex: 0 0 auto;
  background: #fff;
  color: #151a20;
  box-shadow: 0 16px 35px rgba(15, 17, 21, 0.2);
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 40px;
  border-top: 1px solid var(--landing-line);
  color: #687482;
  font-size: 10px;
}

.landing-brand--footer {
  color: #273241;
}

.landing-brand--footer .landing-brand__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.landing-brand--footer .landing-brand__wordmark {
  width: 68px;
  height: 32px;
}

.landing-brand--footer .landing-brand__identity {
  display: block;
}

.landing-brand--footer .landing-brand__tagline {
  display: none;
}

.landing-footer p {
  margin: 0;
  text-align: center;
}

.landing-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.landing-footer a:hover {
  color: #151a20;
}

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr 390px;
    gap: 10px;
  }

  .landing-hero h1 {
    font-size: clamp(52px, 7vw, 74px);
  }

  .landing-float--message {
    left: 4px;
  }

  .landing-float--nearby {
    right: 0;
  }
}

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

  .landing-nav > a:not(.landing-nav__login) {
    display: none;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    width: min(100% - 34px, 680px);
    padding-top: 45px;
    text-align: center;
  }

  .landing-hero__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .landing-actions,
  .landing-trust {
    justify-content: center;
  }

  .landing-hero__visual {
    min-height: 650px;
    margin-top: 30px;
  }

  .landing-phone {
    top: 0;
  }

  .landing-float--message {
    left: 9%;
  }

  .landing-float--nearby {
    right: 7%;
  }

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

  .landing-features,
  .landing-safety,
  .landing-community,
  .landing-footer {
    width: min(100% - 34px, 680px);
  }

  .landing-safety {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 100px;
  }

  .landing-safety__visual {
    width: min(100%, 450px);
    margin: 0 auto;
  }

  .landing-safety__content {
    text-align: center;
  }

  .landing-safety__content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .landing-safety__points {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .landing-community {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .landing-footer > div {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .landing-header {
    padding: 20px 0;
  }

  .landing-brand {
    gap: 7px;
  }

  .landing-brand__icon {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }

  .landing-brand__wordmark {
    width: 70px;
    height: 28px;
  }

  .landing-brand__tagline {
    max-width: 92px;
    padding-left: 8px;
    font-size: 8px;
    white-space: normal;
  }

  .landing-nav {
    gap: 0;
  }

  .landing-nav__login {
    padding: 9px 16px;
    font-size: 12px;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 35px;
    padding-bottom: 55px;
  }

  .landing-hero h1 {
    font-size: clamp(46px, 15.5vw, 70px);
  }

  .landing-hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .landing-actions {
    flex-direction: column;
  }

  .landing-button {
    width: 100%;
  }

  .landing-trust {
    align-items: center;
    flex-direction: column;
  }

  .landing-trust p {
    text-align: center;
  }

  .landing-hero__visual {
    min-height: 575px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .landing-float--message {
    left: -4%;
  }

  .landing-float--nearby {
    right: -5%;
  }

  .landing-features {
    padding: 65px 0 80px;
  }

  .landing-safety {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .landing-safety__visual {
    min-height: 360px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .landing-feature-grid article {
    min-height: auto;
  }

  .landing-community {
    margin-bottom: 60px;
    padding: 36px 28px;
    border-radius: 24px;
  }

  .landing-community h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-phone {
    animation: landing-phone-float 6s ease-in-out infinite;
  }

  .landing-float--message {
    animation: landing-card-float 5s ease-in-out infinite;
  }

  .landing-float--nearby {
    animation: landing-card-float 5.8s ease-in-out 0.8s infinite reverse;
  }

  @keyframes landing-phone-float {
    0%, 100% {
      transform: translateX(-50%) translateY(0) rotate(3deg);
    }
    50% {
      transform: translateX(-50%) translateY(-10px) rotate(2deg);
    }
  }

  @keyframes landing-card-float {
    0%, 100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -8px;
    }
  }
}
