.hero {
  background: var(--white);
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}

.hero-inner {
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 46px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  display: inline-block;
  font-size: clamp(0.76rem, 0.2vw + 0.72rem, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.35;
}

.hero-content h1 {
  max-width: 15.2ch;
  font-size: clamp(2.2rem, 1.45rem + 2.5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-content p {
  font-size: clamp(1.02rem, 0.97rem + 0.28vw, 1.2rem);
  color: var(--gray-500);
  max-width: 40ch;
  line-height: 1.58;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-email-link {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.hero-email-link span { color: var(--blue); font-size: 1.1em; }
.hero-email-link:hover { color: var(--blue); }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-left: 18px;
  border-left: 1px solid var(--gray-200);
}

.globe-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background: linear-gradient(140deg, #fbfdff 0%, #eff6ff 58%, #eaf4ff 100%);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  animation: globeFloat 8s ease-in-out infinite;
}

.globe-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.14));
}

.hero-panel-left,
.hero-panel-right {
  transform-origin: center;
}

.hero-panel-left {
  animation: cardLift 6s ease-in-out infinite;
}

.hero-panel-right {
  animation: cardLift 6s ease-in-out infinite 0.45s;
}

.stream-path {
  stroke-dasharray: 9 10;
  animation: dashFlow 3.2s linear infinite;
}

.stream-path-soft {
  animation-duration: 4s;
}

.line-pulse {
  transform-origin: center;
  animation: ringPulse 2s ease-out infinite;
}

.line-pulse-alt {
  animation-delay: 0.8s;
}

.signal-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

.spark {
  transform-origin: center;
  animation: sparkBlink 2.6s ease-in-out infinite;
}

.spark-alt {
  animation-delay: 1.1s;
}

@keyframes globeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes cardLift {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-3px); }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -28; }
}

@keyframes ringPulse {
  0%   { opacity: 0.9; transform: scale(0.9); }
  80%  { opacity: 0; transform: scale(1.95); }
  100% { opacity: 0; transform: scale(2); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.8; }
}

@keyframes sparkBlink {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.28); }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 19px;
  height: 19px;
}

.hero-feature span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
}
