:root {
  --bg: #f4fbf8;
  --surface: #ffffff;
  --surface-soft: #eaf7f2;
  --primary: #0f5c55;
  --primary-dark: #073d39;
  --primary-deep: #062f2c;
  --accent: #11a889;
  --accent-light: #52d7b8;
  --lime: #c8f06d;
  --danger: #ff554d;
  --warning: #ffc44d;
  --text: #12332f;
  --muted: #657f7a;
  --line: rgba(15, 92, 85, 0.12);
  --shadow: 0 24px 70px rgba(6, 47, 44, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

body::before {
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(17, 168, 137, 0.16), transparent 12%),
    radial-gradient(circle at 78% 24%, rgba(200, 240, 109, 0.16), transparent 12%),
    radial-gradient(circle at 62% 78%, rgba(17, 168, 137, 0.12), transparent 10%);
  animation: backgroundPulse 9s ease-in-out infinite alternate;
}

body::after {
  inset: -20% -10%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(17, 168, 137, 0.15) 38%, transparent 70%),
    linear-gradient(120deg, transparent 0%, rgba(200, 240, 109, 0.12) 52%, transparent 84%);
  filter: blur(26px);
  opacity: 0.7;
  animation: lightFlow 16s linear infinite;
}

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

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

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 15px 0;
  background: rgba(244, 251, 248, 0.82);
  border-bottom: 1px solid rgba(15, 92, 85, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(6, 47, 44, 0.2);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  color: #355d57;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 34px rgba(15, 92, 85, 0.22);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 92, 85, 0.3);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 150px 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 28%, rgba(82, 215, 184, 0.17), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(200, 240, 109, 0.2), transparent 28%),
    linear-gradient(180deg, #f8fdfb 0%, #eef9f5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 80%, rgba(17, 168, 137, 0.09), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(200, 240, 109, 0.18), transparent 25%);
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 92, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 85, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 9s ease-in-out infinite;
}

.orb-one {
  top: 18%;
  left: -90px;
  width: 240px;
  height: 240px;
  background: rgba(17, 168, 137, 0.12);
}

.orb-two {
  right: -120px;
  bottom: 10%;
  width: 330px;
  height: 330px;
  background: rgba(200, 240, 109, 0.16);
  animation-delay: -3s;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(15, 92, 85, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 30px rgba(6, 47, 44, 0.06);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(17, 168, 137, 0.4);
  animation: livePulse 1.8s infinite;
}

.hero h1 {
  margin-top: 24px;
  max-width: 720px;
  color: var(--primary-deep);
  font-size: clamp(3rem, 5.8vw, 5.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, var(--accent), #e7b932 58%, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 4s linear infinite;
}

.hero-description {
  max-width: 640px;
  margin-top: 26px;
  color: #56746f;
  font-size: 1.05rem;
}

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

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(15, 92, 85, 0.3);
}

.btn-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
}

.btn-ghost {
  color: var(--primary-dark);
  border: 1px solid rgba(15, 92, 85, 0.13);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 36px rgba(6, 47, 44, 0.09);
}

.play-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 0.72rem;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -9px;
  border: 3px solid #f4fbf8;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  font-size: 0.62rem;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.stars {
  color: #e0a929;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.trust-row p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 168, 137, 0.22), transparent 68%);
  filter: blur(5px);
  animation: breathe 4s ease-in-out infinite;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 305px;
  min-height: 590px;
  padding: 12px;
  border: 7px solid #153b38;
  border-radius: 46px;
  background: #092f2c;
  box-shadow:
    0 38px 80px rgba(5, 45, 42, 0.26),
    inset 0 0 0 1px rgba(255,255,255,.2);
  transform: rotate(3deg);
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 23px;
  border-radius: 99px;
  background: #062522;
  transform: translateX(-50%);
}

.phone-topbar {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: rgba(255,255,255,.7);
  font-size: 0.64rem;
}

.phone-content {
  min-height: 535px;
  padding: 18px 16px 16px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 12%, rgba(200, 240, 109, 0.22), transparent 24%),
    linear-gradient(180deg, #edf9f5 0%, #ffffff 72%);
}

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

.mini-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 13px;
}

.mini-brand div {
  display: flex;
  flex-direction: column;
}

.mini-brand strong {
  font-size: 0.78rem;
}

.mini-brand small {
  color: var(--accent);
  font-size: 0.61rem;
  font-weight: 700;
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 13px;
  border: 1px solid rgba(15, 92, 85, 0.08);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 24px rgba(6, 47, 44, 0.07);
}

.location-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
}

.location-card div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

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

.location-card strong {
  font-size: 0.65rem;
}

.signal {
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(17, 168, 137, 0.09);
  font-size: 0.52rem;
  font-weight: 800;
}

.sos-zone {
  position: relative;
  height: 255px;
  display: grid;
  place-items: center;
  margin-top: 8px;
}

.pulse-ring {
  position: absolute;
  border: 1px solid rgba(255, 85, 77, 0.28);
  border-radius: 50%;
  animation: sosPulse 2.8s ease-out infinite;
}

.ring-1 { width: 140px; height: 140px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: .55s; }
.ring-3 { width: 220px; height: 220px; animation-delay: 1.1s; }

.sos-button {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 9px solid rgba(255,255,255,.82);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, #ff9a8d, transparent 28%),
    linear-gradient(145deg, #ff5e55, #d82626);
  box-shadow:
    0 22px 34px rgba(216, 38, 38, 0.3),
    inset 0 -10px 18px rgba(110, 0, 0, 0.16),
    inset 0 10px 18px rgba(255,255,255,.2);
  cursor: pointer;
  animation: buttonBeat 2s ease-in-out infinite;
}

.sos-button span {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}

.sos-button small {
  margin-top: 8px;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.sos-hint {
  margin-top: -8px;
  color: var(--muted);
  text-align: center;
  font-size: .63rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.quick-actions div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 3px;
  border-radius: 13px;
  color: var(--primary-dark);
  background: var(--surface-soft);
}

.quick-actions span {
  font-size: 1rem;
}

.quick-actions small {
  text-align: center;
  font-size: .5rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 46px rgba(6, 47, 44, 0.16);
  backdrop-filter: blur(16px);
  animation: cardFloat 5s ease-in-out infinite;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: .69rem;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .54rem;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-size: .86rem;
  font-weight: 800;
}

.floating-icon.pin {
  background: var(--primary);
}

.card-alert {
  top: 125px;
  right: -42px;
}

.card-location {
  left: -74px;
  bottom: 96px;
  animation-delay: -2.2s;
}

.metric-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 24px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 24px 60px rgba(6, 47, 44, 0.09);
  backdrop-filter: blur(14px);
}

.metric-strip article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: var(--line);
}

.metric-strip strong {
  color: var(--primary);
  font-size: 1.4rem;
}

.metric-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.section {
  padding: 110px 0;
}

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

.section-heading h2,
.process-content h2,
.emergency-wrap h2,
.download-content h2 {
  margin-top: 14px;
  color: var(--primary-deep);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p,
.process-content > p,
.emergency-wrap p,
.download-content p {
  margin-top: 16px;
  color: var(--muted);
}

.safety-section {
  position: relative;
  background: #fff;
}

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

.feature-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(180deg, #fff, #f8fcfa);
  box-shadow: 0 14px 40px rgba(6, 47, 44, 0.06);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  animation: floatCard 7s ease-in-out infinite;
}

.feature-card:nth-child(2) { animation-delay: .4s; }
.feature-card:nth-child(3) { animation-delay: .8s; }
.feature-card:nth-child(4) { animation-delay: 1.2s; }

.feature-card::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(17, 168, 137, 0.08);
  transition: transform .4s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 240, 109, 0.42), transparent 70%);
  opacity: 0.8;
  filter: blur(2px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(17, 168, 137, 0.25);
  box-shadow: 0 30px 60px rgba(6, 47, 44, 0.12);
}

.feature-card:hover::before {
  transform: scale(1.4);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 28px rgba(15, 92, 85, 0.2);
  font-size: 1.35rem;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(15, 92, 85, 0.13);
  font-size: 2.35rem;
  font-weight: 800;
}

.feature-card h3 {
  position: relative;
  margin-top: 28px;
  color: var(--primary-dark);
  font-size: 1.18rem;
}

.feature-card p {
  position: relative;
  margin-top: 14px;
  color: var(--muted);
  font-size: .9rem;
}

.feature-card a {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .79rem;
  font-weight: 800;
}

.feature-card a span {
  transition: transform .2s ease;
}

.feature-card:hover a span {
  transform: translateX(5px);
}

.process-section {
  background: linear-gradient(180deg, #edf8f4, #f7fbf9);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.process-visual {
  position: relative;
}

.map-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 12px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 18%, rgba(200, 240, 109, 0.32), transparent 25%),
    linear-gradient(140deg, #dff2ea, #b8dfd3);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .6;
  background-image:
    linear-gradient(26deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 52%, transparent 53%),
    linear-gradient(-38deg, transparent 47%, rgba(255,255,255,.7) 48%, rgba(255,255,255,.7) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.5) 49%, rgba(255,255,255,.5) 51%, transparent 52%);
  background-size: 150px 120px, 190px 160px, 90px 90px;
}

.route-line {
  position: absolute;
  top: 145px;
  left: 120px;
  width: 260px;
  height: 180px;
  border: 5px dashed var(--accent);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
  filter: drop-shadow(0 6px 8px rgba(17, 168, 137, .2));
}

.map-pin {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 6px solid rgba(255,255,255,.9);
  border-radius: 50% 50% 50% 10%;
  color: #fff;
  box-shadow: 0 14px 26px rgba(6, 47, 44, 0.18);
  transform: rotate(-45deg);
}

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

.user-pin {
  left: 100px;
  bottom: 115px;
  background: var(--danger);
  animation: pinBounce 2.3s ease-in-out infinite;
}

.helper-pin {
  top: 90px;
  right: 100px;
  background: var(--primary);
  animation: pinBounce 2.3s ease-in-out infinite -1.15s;
}

.eta-card {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: calc(100% - 64px);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(6, 47, 44, 0.12);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.eta-card small,
.eta-card strong {
  display: block;
}

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

.eta-card strong {
  margin-top: 3px;
  color: var(--primary);
}

.step-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.step-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.step-list article:hover {
  transform: translateX(8px);
  border-color: var(--line);
  background: rgba(255,255,255,.72);
}

.step-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--primary);
  font-size: .75rem;
  font-weight: 800;
}

.step-list h3 {
  color: var(--primary-dark);
  font-size: 1.08rem;
}

.step-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .89rem;
}

.emergency-numbers {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(200, 240, 109, .13), transparent 24%),
    linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.emergency-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.section-tag.light {
  color: var(--lime);
}

.emergency-wrap h2 {
  color: #fff;
}

.emergency-wrap p {
  color: rgba(255,255,255,.68);
}

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

.number-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  transition: transform .28s ease, background .28s ease;
  animation: floatCard 6s ease-in-out infinite;
}

.number-grid article:nth-child(2) { animation-delay: .4s; }
.number-grid article:nth-child(3) { animation-delay: .8s; }
.number-grid article:nth-child(4) { animation-delay: 1.2s; }

.number-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,.14);
}

.number-grid strong {
  color: var(--lime);
  font-size: 2rem;
}

.number-grid span {
  margin-top: 6px;
  color: rgba(255,255,255,.75);
  font-size: .76rem;
}

.review-section {
  background: linear-gradient(180deg, #f8fcfa 0%, #eef9f5 100%);
}

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

.review-card {
  overflow: hidden;
  border: 1px solid rgba(15, 92, 85, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(6, 47, 44, 0.08);
  animation: floatCard 8s ease-in-out infinite;
}

.review-card:nth-child(2) { animation-delay: .4s; }
.review-card:nth-child(3) { animation-delay: .8s; }

.review-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(15, 92, 85, 0.08);
  background:
    linear-gradient(135deg, rgba(17, 168, 137, 0.12), rgba(200, 240, 109, 0.2)),
    repeating-linear-gradient(
      45deg,
      rgba(15, 92, 85, 0.06) 0,
      rgba(15, 92, 85, 0.06) 12px,
      transparent 12px,
      transparent 24px
    );
}

.review-media img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(6, 47, 44, 0.12);
  cursor: zoom-in;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.image-modal.is-open {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 16, 0.78);
  backdrop-filter: blur(8px);
}

.image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.image-modal-dialog img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(15, 92, 85, 0.08);
  font-size: 1.4rem;
  cursor: pointer;
}

.review-content {
  padding: 22px 22px 24px;
}

.review-content h3 {
  margin-top: 8px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.review-content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.download-section {
  background: #fff;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: 470px;
  padding: 60px 70px;
  overflow: hidden;
  border: 1px solid rgba(15, 92, 85, 0.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 240, 109, .24), transparent 28%),
    linear-gradient(135deg, #f1fbf7, #e4f5ef);
  box-shadow: var(--shadow);
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(17, 168, 137, 0.15);
  filter: blur(6px);
  animation: pulseGlow 6s ease-in-out infinite;
}

.download-glow {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(17, 168, 137, .13);
  filter: blur(3px);
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-content h2 {
  max-width: 650px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-button {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--primary-deep);
  box-shadow: 0 15px 30px rgba(6, 47, 44, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.store-button.outline {
  color: var(--primary-dark);
  border: 1px solid rgba(15, 92, 85, .15);
  background: rgba(255,255,255,.7);
  box-shadow: none;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(6, 47, 44, 0.22);
}

.store-icon {
  font-size: 1.35rem;
}

.store-button span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.store-button small {
  font-size: .53rem;
  letter-spacing: .1em;
}

.store-button strong {
  margin-top: 4px;
  font-size: .9rem;
}

.download-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.download-logo img {
  position: relative;
  z-index: 2;
  width: 250px;
  border-radius: 50px;
  box-shadow: 0 36px 70px rgba(6, 47, 44, 0.24);
  animation: logoFloat 5s ease-in-out infinite;
}

.logo-halo {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(17, 168, 137, .22);
  border-radius: 50%;
  animation: rotateHalo 12s linear infinite;
}

.logo-halo::before,
.logo-halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.logo-halo::before {
  top: 30px;
  left: 10px;
  width: 13px;
  height: 13px;
}

.logo-halo::after {
  right: 8px;
  bottom: 46px;
  width: 8px;
  height: 8px;
  background: #e1b530;
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255,255,255,.75);
  background: #062f2c;
}

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

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand .brand-text small {
  color: rgba(255,255,255,.5);
}

.footer-grid > div:first-child p {
  max-width: 420px;
  margin-top: 20px;
  font-size: .86rem;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: .92rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div:not(:first-child) a {
  width: fit-content;
  font-size: .82rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.social-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
}

.social-row a {
  width: 38px !important;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.social-row a:hover {
  transform: translateY(-3px) !important;
  background: rgba(255,255,255,.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  font-size: .72rem;
}

.reveal {
  animation: revealUp .85s both;
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }

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

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

@keyframes gradientShift {
  0% { transform: scale(1) translate3d(0, 0, 0); opacity: .8; }
  100% { transform: scale(1.07) translate3d(18px, -12px, 0); opacity: 1; }
}

@keyframes backgroundPulse {
  0% { opacity: 0.45; transform: scale(1); }
  100% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes lightFlow {
  0% { transform: translateX(-10%) translateY(0) rotate(0deg); }
  50% { transform: translateX(10%) translateY(-18px) rotate(2deg); }
  100% { transform: translateX(-8%) translateY(14px) rotate(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: .65; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(17, 168, 137, .42); }
  70% { box-shadow: 0 0 0 9px rgba(17, 168, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 168, 137, 0); }
}

@keyframes shine {
  to { background-position: 200% center; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(35px,-28px,0); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-14px); }
}

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

@keyframes breathe {
  0%, 100% { transform: scale(.95); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes sosPulse {
  0% { transform: scale(.78); opacity: .8; }
  80%, 100% { transform: scale(1.2); opacity: 0; }
}

@keyframes buttonBeat {
  0%, 100% { transform: scale(1); }
  8% { transform: scale(1.04); }
  16% { transform: scale(1); }
  24% { transform: scale(1.025); }
}

@keyframes pinBounce {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes rotateHalo {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }

  .hero-layout,
  .process-layout,
  .emergency-wrap,
  .download-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    margin-top: 20px;
  }

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

  .process-layout {
    gap: 55px;
  }

  .process-visual {
    order: 2;
  }

  .emergency-wrap {
    gap: 38px;
  }

  .download-card {
    gap: 45px;
    text-align: center;
  }

  .download-actions {
    justify-content: center;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

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

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

  .brand-text small {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: .75rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-description {
    font-size: .95rem;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(.88);
    margin-top: -10px;
  }

  .phone-shell {
    width: 290px;
  }

  .card-alert {
    right: -20px;
  }

  .card-location {
    left: -20px;
    bottom: 60px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
    margin-top: 20px;
  }

  .metric-strip article:nth-child(2)::after {
    display: none;
  }

  .metric-strip article:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 15%;
    bottom: -13px;
    width: 70%;
    height: 1px;
    background: var(--line);
  }

  .section {
    padding: 80px 0;
  }

  .feature-grid,
  .review-grid,
  .number-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .map-panel {
    min-height: 430px;
  }

  .route-line {
    left: 45px;
    width: 220px;
  }

  .user-pin {
    left: 50px;
  }

  .helper-pin {
    right: 50px;
  }

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

  .download-card {
    padding: 44px 24px;
  }

  .download-logo img {
    width: 195px;
  }

  .logo-halo {
    width: 240px;
    height: 240px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   MÔ PHỎNG MÀN HÌNH ỨNG DỤNG SOLINK TRONG ĐIỆN THOẠI
   Các phần còn lại của landing page được giữ nguyên.
   ========================================================= */
.app-phone-shell {
  min-height: 606px;
}

.app-statusbar {
  position: relative;
  z-index: 3;
  height: 34px;
  margin: 0 1px;
  padding: 0 12px;
  border-radius: 30px 30px 0 0;
  color: #28313d;
  background: #fbfbff;
  font-size: 0.56rem;
  font-weight: 800;
}

.app-statusbar .status-icons {
  letter-spacing: -0.04em;
  font-size: 0.48rem;
}

.app-home-screen {
  position: relative;
  min-height: 548px;
  display: flex;
  flex-direction: column;
  padding: 14px 13px 0;
  border-radius: 0 0 34px 34px;
  color: #111827;
  background:
    radial-gradient(circle at 48% 31%, rgba(17, 168, 137, 0.08), transparent 23%),
    linear-gradient(180deg, #fbfbff 0%, #f8f7ff 100%);
}

.app-home-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.app-heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-heading strong {
  color: #111827;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.app-heading small {
  max-width: 145px;
  margin-top: 5px;
  color: #77777d;
  font-size: 0.55rem;
  line-height: 1.35;
}

.app-header-actions {
  display: flex;
  gap: 7px;
}

.app-header-actions button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 50%;
  color: #303846;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.11);
}

.app-header-actions svg,
.app-utility-actions svg,
.app-emergency-title svg,
.emergency-card-icon svg,
.app-bottom-nav svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-header-actions svg {
  width: 16px;
  height: 16px;
}

.app-sos-stage {
  position: relative;
  height: 200px;
  display: grid;
  place-items: center;
  margin-top: 3px;
}

.app-sos-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(14, 178, 86, 0.08);
  box-shadow: 0 0 35px rgba(14, 178, 86, 0.07);
  animation: appSosPulse 2.8s ease-in-out infinite;
}

.app-sos-wave.wave-one {
  width: 180px;
  height: 180px;
}

.app-sos-wave.wave-two {
  width: 148px;
  height: 148px;
  background: rgba(14, 178, 86, 0.11);
  animation-delay: -1.2s;
}

.app-sos-button {
  position: relative;
  z-index: 2;
  width: 126px;
  height: 126px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 26%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(145deg, #11b94e, #08a743);
  box-shadow:
    0 19px 34px rgba(4, 166, 65, 0.25),
    inset 0 -10px 20px rgba(0, 101, 43, 0.15),
    inset 0 8px 16px rgba(255,255,255,.18);
  font-family: inherit;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  animation: appButtonBeat 2.3s ease-in-out infinite;
}

.app-utility-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-utility-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.63rem;
  font-weight: 800;
}

.app-utility-actions svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.flash-action {
  border: 1px solid #ff9900;
  color: #fff;
  background: linear-gradient(135deg, #ffad14, #ff8b00);
  box-shadow: 0 10px 22px rgba(255, 145, 0, 0.18);
}

.fake-call-action {
  border: 1px solid #dedee4;
  color: #161b26;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.07);
}

.app-emergency-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-top: 12px;
}

.app-emergency-title > strong {
  color: #111827;
  font-size: 0.77rem;
  letter-spacing: -0.025em;
}

.app-emergency-title > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border: 1px solid #cfb7ff;
  border-radius: 10px;
  color: #7f3fe2;
  background: #f1eaff;
  font-size: 0.49rem;
  font-weight: 800;
  white-space: nowrap;
}

.app-emergency-title svg {
  width: 11px;
  height: 11px;
}

.app-emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 9px;
}

.emergency-card {
  min-height: 113px;
  padding: 10px 10px 8px;
  border: 1px solid #ececf1;
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.05);
}

.emergency-card-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.emergency-card-icon svg {
  width: 15px;
  height: 15px;
}

.emergency-card > strong {
  display: block;
  margin-top: 5px;
  font-size: 1.28rem;
  line-height: 1;
}

.emergency-card h4 {
  margin-top: 7px;
  color: #111827;
  font-size: 0.66rem;
}

.emergency-card p {
  margin-top: 2px;
  color: #888a91;
  font-size: 0.48rem;
  line-height: 1.35;
}

.police-card {
  border-color: #e3ebff;
}

.police-card .emergency-card-icon {
  color: #2469dc;
  background: #e8efff;
}

.police-card > strong {
  color: #2469dc;
}

.fire-card {
  border-color: #ffe1e3;
}

.fire-card .emergency-card-icon {
  color: #df292e;
  background: #ffe7e9;
}

.fire-card > strong {
  color: #df292e;
}

.app-bottom-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin: auto -13px 0;
  padding: 8px 8px 7px;
  border-top: 1px solid #e7e7ec;
  border-radius: 0 0 34px 34px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 -6px 16px rgba(31, 41, 55, 0.04);
}

.app-bottom-nav a {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #6e747e;
  font-size: 0.43rem;
  font-weight: 700;
  white-space: nowrap;
}

.app-bottom-nav svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.app-bottom-nav a.active {
  color: #0eb24f;
}

.app-bottom-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #0eb24f;
  transform: translateX(-50%);
}

@keyframes appSosPulse {
  0%, 100% { transform: scale(.94); opacity: .68; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes appButtonBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@media (max-width: 560px) {
  .app-phone-shell {
    min-height: 598px;
  }
}


/* =========================================================
   ĐỘI NGŨ SOLINK
   Thay thế khu vực "Quy trình 3 bước" trước đây.
   ========================================================= */
.team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 12%, rgba(18, 210, 155, .17), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(61, 190, 164, .18), transparent 30%),
    linear-gradient(145deg, #03162e 0%, #04243a 52%, #063d3c 100%);
}

.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.team-section::before {
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(77, 231, 190, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 231, 190, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.team-section::after {
  left: -10%;
  right: -10%;
  bottom: -150px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(43, 224, 181, .24);
  box-shadow:
    0 -22px 90px rgba(19, 211, 165, .15),
    0 -60px 120px rgba(28, 161, 152, .12);
  transform: rotate(-4deg);
}

.team-orb {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.team-orb-one {
  top: -170px;
  left: -120px;
  background: radial-gradient(circle, rgba(23, 214, 160, .2), transparent 67%);
}

.team-orb-two {
  right: -150px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(33, 190, 177, .22), transparent 68%);
}

.team-container {
  position: relative;
}

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

.team-heading h2 {
  color: #fff;
}

.team-heading p {
  color: rgba(226, 246, 241, .72);
}

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

.team-card {
  position: relative;
  min-width: 0;
  padding: 8px 8px 20px;
  overflow: hidden;
  border: 1px solid rgba(119, 239, 208, .17);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 18px 42px rgba(0, 10, 28, .28);
  backdrop-filter: blur(10px);
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    border-color .34s ease,
    box-shadow .34s ease,
    background .34s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -45% 35% 45% -35%;
  opacity: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.22), transparent 70%);
  transform: translateX(-60%) rotate(8deg);
  transition: opacity .32s ease, transform .7s ease;
  pointer-events: none;
}

.team-card:hover {
  z-index: 2;
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(92, 244, 203, .58);
  background: linear-gradient(160deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
  box-shadow:
    0 28px 55px rgba(0, 8, 24, .4),
    0 0 0 1px rgba(53, 234, 188, .12),
    0 0 34px rgba(28, 207, 166, .18);
}

.team-card:hover::before {
  opacity: 1;
  transform: translateX(150%) rotate(8deg);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 0.69;
  overflow: hidden;
  border: 1px solid rgba(106, 242, 209, .32);
  border-radius: 20px;
  background: rgba(2, 15, 35, .5);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.2,.8,.2,1), filter .48s ease;
}

.team-photo-shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(1, 13, 31, .18), transparent 38%),
    radial-gradient(circle at 50% 110%, rgba(37, 239, 190, .22), transparent 38%);
  pointer-events: none;
  transition: opacity .35s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}

.team-card:hover .team-photo-shine {
  opacity: .66;
}

.team-card h3 {
  position: relative;
  margin-top: 17px;
  color: #fff;
  font-size: clamp(.82rem, 1.05vw, 1.05rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .035em;
  text-shadow: 0 5px 18px rgba(0,0,0,.34);
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .team-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
  }

  .team-card {
    padding: 6px 6px 17px;
    border-radius: 21px;
  }

  .team-photo-wrap {
    border-radius: 16px;
  }

  .team-card h3 {
    margin-top: 13px;
    font-size: .78rem;
  }
}
