:root {
  color-scheme: light;
  --ink-navy: #1d235f;
  --ink-navy-2: #262b73;
  --ink-navy-3: #30348a;
  --logo-orange: #ff7a22;
  --logo-orange-deep: #ff5d2f;
  --logo-gold: #ffb62c;
  --logo-yellow: #ffd84b;
  --logo-sky: #41bcff;
  --logo-cyan: #35d2ff;
  --logo-teal: #45d4b2;
  --logo-green: #8ad64f;
  --logo-pink: #ff5ea6;
  --header: rgba(255, 255, 255, 0.96);
  --panel: rgba(255, 255, 255, 0.88);
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(116, 128, 200, 0.14);
  --text: #27304f;
  --text-soft: rgba(39, 48, 79, 0.78);
  --text-muted: rgba(74, 84, 122, 0.62);
  --tag: rgba(120, 124, 213, 0.12);
  --shadow: 0 22px 56px rgba(73, 88, 152, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  padding-top: 106px;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(95, 108, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(71, 156, 255, 0.06), transparent 22%),
    radial-gradient(circle at 52% 100%, rgba(121, 84, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 42%, #f4f6ff 100%);
}

body.is-menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}


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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background:
    linear-gradient(90deg, rgba(90, 101, 255, 0.06), rgba(114, 100, 255, 0.03) 38%, rgba(82, 159, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 255, 0.96) 100%);
  box-shadow:
    inset 0 -1px 0 rgba(95, 108, 255, 0.08),
    0 8px 24px rgba(90, 101, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand__logo {
  height: 98px;
  object-fit: cover;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #27304f;
}

.brand__sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(67, 79, 128, 0.68);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 58px;
}

.site-nav a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(39, 48, 79, 0.9);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a.is-active {
  font-weight: 800;
  color: #2f3676;
  text-shadow: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #4a57b8;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(95, 108, 255, 0.08);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2f3676;
  transition: transform 0.2s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(95, 108, 255, 0.04), rgba(255, 255, 255, 0) 72%),
    #ffffff;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(240px, 27.34375vw, 700px);
  overflow: hidden;
  touch-action: pan-y;
}

.hero-carousel__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.hero-slide__media,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.hero-slide__overlay {
  display: none;
}
.hero-slide__content {
  display: none !important;
}

.hero-slide__media {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(78, 88, 222, 0.26), rgba(89, 88, 194, 0.12) 34%, rgba(78, 136, 224, 0.08) 100%),
    #2d2b77;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide__media--banner::after,
.hero-slide__media--grid::before,
.hero-slide__media--future::before,
.hero-slide__media--future::after {
  content: "";
  position: absolute;
}

.hero-slide__media--banner::after {
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(31, 33, 92, 0) 0%, rgba(31, 33, 92, 0.08) 52%, rgba(31, 33, 92, 0.2) 100%),
    linear-gradient(90deg, rgba(35, 35, 92, 0.56) 0%, rgba(35, 35, 92, 0.16) 34%, rgba(35, 35, 92, 0.1) 58%, rgba(35, 35, 92, 0.34) 100%);
}

.hero-slide__media--banner img {
  filter: brightness(0.96) saturate(1.04);
  transform: scale(1.01);
}

.hero-slide__media--grid::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(105, 182, 255, 0.34), transparent 12%),
    radial-gradient(circle at 74% 36%, rgba(173, 102, 255, 0.22), transparent 15%),
    radial-gradient(circle at 20% 76%, rgba(95, 108, 255, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(84, 82, 202, 0.84), rgba(52, 61, 156, 0.88) 42%, rgba(32, 31, 92, 0.98));
}

.hero-slide__media--future::before {
  inset: 0;
  background:
    radial-gradient(circle at 28% 30%, rgba(134, 147, 255, 0.22), transparent 14%),
    radial-gradient(circle at 76% 24%, rgba(107, 173, 255, 0.16), transparent 15%),
    radial-gradient(circle at 20% 74%, rgba(156, 109, 255, 0.12), transparent 16%),
    linear-gradient(140deg, rgba(82, 86, 200, 0.78), rgba(57, 63, 164, 0.84) 48%, rgba(34, 34, 90, 0.98));
}

.hero-slide__media--future::after {
  inset: auto auto 18% 12%;
  width: 38%;
  aspect-ratio: 1.35;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(136, 143, 255, 0.78), rgba(98, 162, 255, 0.74), rgba(142, 112, 255, 0.7));
  opacity: 0.5;
  filter: blur(12px);
}

.hero-slide__overlay {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.04) 0%, rgba(24, 24, 24, 0.08) 28%, rgba(24, 24, 24, 0.28) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: end;
  height: 100%;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 60px;
}

.hero-slide__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slide__meta time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-slide__eyebrow,
.section-heading__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero-slide h1,
.section-heading h2,
.feature-panel h2,
.support-panel h2,
.policy-header h1,
.policy-panel h2 {
  margin: 0;
}

.hero-slide h1 {
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.28;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-slide p,
.policy-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  font-size: 15px;
}

.hero-slide__actions,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(130, 138, 255, 0.22);
  font-size: 15px;
  font-weight: 700;
}

.button--light {
  background: #ffffff;
  color: #23286a;
}

.button--ghost {
  background: rgba(130, 138, 255, 0.12);
  color: #fff;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots__dot.is-active {
  width: 48px;
  background: #ffffff;
}

.news-section,
.feature-section,
.support-section,
.policy-section,
.policy-shell {
  padding-top: 60px;
}

.about-shell {
  padding-top: 60px;
}

.about-hero {
  padding: 12px 0 8px;
}

.about-hero__title {
  margin: 8px 0 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.18;
  color: #2a335d;
}

.about-hero__text {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: #4d5a82;
}

.about-section {
  padding: 28px 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-card {
  padding: 24px 26px;
  border-radius: 20px;
  border: 1px solid rgba(116, 128, 200, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(73, 88, 152, 0.08);
}

.about-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: #2c355f;
}

.about-card p,
.about-card li {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #4d5a82;
}

.about-card a {
  color: #4f5eb7;
}

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

.section-heading h2,
.feature-panel h2,
.support-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 18px;
}

.news-card__link {
  display: grid;
  gap: 18px;
}

.news-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 49/26;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(90, 81, 214, 0.84), rgba(103, 94, 226, 0.24) 38%, rgba(64, 76, 176, 0.56) 68%, rgba(31, 30, 89, 0.96));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.news-card__link:hover .news-card__thumb,
.news-card__link:focus-visible .news-card__thumb {
  transform: scale(1.03);
  box-shadow: 0 20px 44px rgba(26, 33, 86, 0.16);
}

.news-card__thumb::before,
.news-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
}

.news-card__thumb::after {
  background: linear-gradient(180deg, rgba(5, 7, 28, 0.02), rgba(5, 7, 28, 0.28));
}

.news-card__thumb--image {
  box-shadow:
    0 14px 30px rgba(18, 24, 70, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.72);
}

.news-card__thumb--image::before {
  content: none;
}

.news-card__thumb--image::after {
  background: linear-gradient(180deg, rgba(5, 7, 28, 0.04), rgba(5, 7, 28, 0.18));
}

.news-card__thumb--banner {
  background-image: url("../images/banner.png");
  background-size: cover;
  background-position: center;
}

.news-card__thumb--shark-lost {
  background-image: url("../../shark-lost/product.png");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 18px 38px rgba(8, 12, 40, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-card__link:hover .news-card__thumb--shark-lost,
.news-card__link:focus-visible .news-card__thumb--shark-lost {
  box-shadow:
    0 26px 56px rgba(8, 12, 40, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.news-card__thumb--signal::before {
  background:
    radial-gradient(circle at 72% 32%, rgba(163, 124, 255, 0.3), transparent 12%),
    radial-gradient(circle at 28% 68%, rgba(110, 175, 255, 0.26), transparent 20%),
    linear-gradient(135deg, rgba(88, 82, 214, 0.84), rgba(62, 69, 177, 0.82) 42%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--clock::before {
  inset: 18% auto auto 14%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(204, 226, 255, 0.34);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 62%);
}

.news-card__thumb--clock::after {
  inset: 24% auto auto 48%;
  width: 2px;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  transform-origin: bottom center;
  transform: rotate(18deg);
  box-shadow: -30px 34px 0 0 rgba(255, 255, 255, 0.9);
}

.news-card__thumb--sleep::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(157, 169, 255, 0.18), transparent 14%),
    linear-gradient(180deg, rgba(31, 33, 92, 0.12), rgba(31, 33, 92, 0.72)),
    linear-gradient(135deg, rgba(87, 84, 210, 0.78), rgba(97, 93, 214, 0.16) 28%, rgba(64, 73, 177, 0.88) 62%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--sleep::after {
  inset: auto auto 18% 14%;
  width: 42%;
  height: 22%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 56px -36px 0 18px rgba(255, 255, 255, 0.05), 104px 4px 0 8px rgba(255, 255, 255, 0.06);
}

.news-card__thumb--sensor::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(103, 172, 255, 0.28), transparent 16%),
    radial-gradient(circle at 74% 30%, rgba(163, 124, 255, 0.2), transparent 12%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.76), rgba(65, 72, 176, 0.84) 44%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--sensor::after {
  inset: 18% 18% 18% auto;
  width: 34%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(38, 35, 92, 0.96), rgba(18, 18, 50, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-card__thumb--voice::before {
  background:
    radial-gradient(circle at 28% 50%, rgba(157, 169, 255, 0.18), transparent 18%),
    radial-gradient(circle at 70% 46%, rgba(106, 174, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.8), rgba(64, 73, 178, 0.86) 44%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--voice::after {
  inset: 20% auto auto 18%;
  width: 28%;
  height: 56%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 92px 0 0 -8px rgba(255, 255, 255, 0.12), 64px 0 0 -16px rgba(255, 255, 255, 0.08);
}

.news-card__thumb--hangup::before {
  background:
    radial-gradient(circle at 50% 30%, rgba(162, 173, 255, 0.18), transparent 16%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.78), rgba(64, 73, 178, 0.84) 42%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--hangup::after {
  inset: auto auto 20% 18%;
  width: 64%;
  height: 24%;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  transform: rotate(-12deg);
}

.news-card__thumb--restore::before {
  background:
    radial-gradient(circle at 24% 26%, rgba(110, 176, 255, 0.24), transparent 16%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.76), rgba(98, 94, 214, 0.12) 28%, rgba(64, 73, 178, 0.88) 62%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--restore::after {
  inset: 22% auto auto 22%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 68% 76%, 68% 100%, 0 100%);
}

.news-card__thumb--update::before {
  background: linear-gradient(135deg, rgba(87, 84, 210, 0.82), rgba(98, 94, 214, 0.1) 28%, rgba(64, 73, 178, 0.88) 64%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--update::after {
  inset: 18% 16% 18% auto;
  width: 32%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(38, 35, 92, 0.96), rgba(18, 18, 54, 0.98));
  box-shadow: inset 0 -54px 0 rgba(255, 255, 255, 0.04);
}

.news-card__thumb--privacy::before {
  background:
    radial-gradient(circle at 72% 32%, rgba(157, 169, 255, 0.2), transparent 14%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.78), rgba(98, 94, 214, 0.12) 28%, rgba(64, 73, 178, 0.9) 62%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--privacy::after {
  inset: 18% auto auto 18%;
  width: 34%;
  height: 56%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 54px 0 0 0 rgba(255, 255, 255, 0.06);
}

.news-card__thumb--future::before {
  background:
    radial-gradient(circle at 20% 64%, rgba(147, 159, 255, 0.24), transparent 16%),
    radial-gradient(circle at 78% 28%, rgba(104, 171, 255, 0.22), transparent 14%),
    linear-gradient(135deg, rgba(87, 84, 210, 0.82), rgba(98, 94, 214, 0.12) 28%, rgba(64, 73, 178, 0.9) 62%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--future::after {
  inset: auto 12% 16% auto;
  width: 42%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 147, 255, 0.78), rgba(105, 168, 255, 0.76), rgba(155, 120, 255, 0.72));
  filter: blur(12px);
}

.news-card__thumb--support::before {
  background: linear-gradient(135deg, rgba(87, 84, 210, 0.8), rgba(98, 94, 214, 0.12) 28%, rgba(64, 73, 178, 0.9) 64%, rgba(29, 28, 89, 0.98));
}

.news-card__thumb--support::after {
  inset: 18% auto auto 18%;
  width: 64%;
  height: 50%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 -46px 0 rgba(255, 255, 255, 0.03);
}

.news-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(43, 41, 109, 0.72);
  border: 1px solid rgba(159, 167, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.news-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #2c355f;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(93, 102, 140, 0.9);
}

.news-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--tag);
  color: #5b689f;
  font-size: 12px;
  font-weight: 700;
}

.news-section__hint {
  margin: 28px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 18px;
}

.news-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(102, 114, 255, 0.05), transparent 18%),
    radial-gradient(circle at 100% 16%, rgba(82, 159, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}

.feature-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-panel,
.support-panel,
.policy-panel,
.policy-note,
.support-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(95, 108, 255, 0.08), rgba(123, 110, 255, 0.04) 28%, rgba(65, 128, 212, 0.08) 66%, rgba(39, 35, 101, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-panel,
.policy-panel,
.policy-note {
  padding: 28px;
  border-radius: 20px;
}

.feature-list,
.policy-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.policy-list li,
.policy-panel p,
.support-panel p,
.support-card p,
.site-footer p {
  color: var(--text-soft);
  line-height: 1.9;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
}

.support-panel__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.support-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  padding: 20px;
  border-radius: 18px;
}

.support-card h3 {
  margin: 0 0 10px;
}

.policy-header {
  display: grid;
  gap: 12px;
  padding: 36px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(94, 108, 255, 0.18), rgba(123, 112, 255, 0.08) 32%, rgba(70, 132, 214, 0.14) 72%, rgba(39, 35, 101, 0.98)),
    linear-gradient(135deg, rgba(72, 61, 184, 0.88), rgba(39, 35, 101, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.policy-header h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.18;
}

.policy-grid {
  display: grid;
  gap: 22px;
}

.policy-article {
  max-width: 880px;
}

.policy-article__title {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  color: #2a335d;
}

.policy-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  color: #707ca8;
  font-size: 14px;
}

.policy-article__content {
  margin-top: 26px;
  color: #435078;
}

.policy-article__content h2 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: #2c355f;
}

.policy-article__content p,
.policy-article__content li {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #4d5a82;
}

.policy-article__content p + p {
  margin-top: 14px;
}

.policy-article__content a {
  color: #4f5eb7;
}

.policy-note {
  background:
    linear-gradient(180deg, rgba(110, 201, 255, 0.14), rgba(110, 201, 255, 0.08)),
    rgba(54, 49, 139, 0.88);
}

.site-footer {
  margin-top: 48px;
  padding: 34px 0 30px;
  background: #ffffff;
  border-top: 1px solid rgba(116, 128, 200, 0.12);
}

.site-footer__inner {
  display: grid;
  gap: 10px;
}

.site-footer__inner--simple {
  justify-items: center;
  text-align: center;
  gap: 4px;
}

.site-footer__line {
  margin: 0;
  color: #6a749d;
  font-size: 13px;
  line-height: 1.65;
}

.site-footer__line a {
  color: #5f6da6;
  transition: color 0.2s ease;
}

.site-footer__line a:hover,
.site-footer__line a:focus-visible {
  color: #4f5eb7;
}

.site-footer__line--muted {
  color: #7b84aa;
}

.site-footer__sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(117, 126, 158, 0.34);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 30px;
  }

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

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

  .support-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  body {
    padding-top: 72px;
  }

  .site-header__inner {
    min-height: 52px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex: none;
  }
  .news-card__link{
    gap: 8px;
  }

  .site-nav {
    position: fixed;
    inset: 80px 12px auto 12px;
    z-index: 40;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(95, 108, 255, 0.08), rgba(123, 112, 255, 0.04) 40%, rgba(255, 255, 255, 0.98)),
      rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(159, 167, 255, 0.16);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: var(--shadow);
  }

  body.is-menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 10px;
    border-radius: 12px;
  }

  .brand__name {
    font-size: 22px;
  }

  .brand__sub {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .brand__logo {
    height: 70px;
  }

  .hero-carousel,
  .hero-carousel__inner,
  .hero-slide__content {
    height: clamp(194px, 50vw, 320px);
  }

  .hero-slide__overlay{
    display: none;
  }
  .hero-slide__content {
    width: calc(100% - 28px);
    gap: 10px;
    padding: 0 0 15px 12px;
    display: none;
  }

  .hero-slide__meta time {
    min-height: 24px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-slide__media--banner::after {
    display: none;
  }

  .hero-slide__media--banner img {
    filter: brightness(0.9) saturate(1.06);
    transform: scale(1.01);
  }

  .hero-slide h1 {
    font-size: 18px;
    line-height: 1.26;
  }

  .hero-slide p {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-hero__title {
    font-size: 28px;
    line-height: 1.24;
  }

  .about-hero__text,
  .about-card p,
  .about-card li {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-card {
    padding: 20px;
  }

  .hero-dots {
    left: 50%;
    bottom: 16px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
  }

  .news-grid,
  .feature-section__grid,
  .support-panel__cards {
    grid-template-columns: 1fr;
  }
  .news-grid {
    gap: 28px 8px;
  }

  .feature-panel,
  .support-panel,
  .policy-panel,
  .policy-header,
  .policy-note {
    padding: 20px;
  }

  .policy-article__meta {
    display: grid;
    gap: 4px;
  }

  .policy-article__content h2 {
    font-size: 20px;
  }

  .policy-article__content p,
  .policy-article__content li {
    font-size: 14px;
    line-height: 1.85;
  }

  .news-section,
  .feature-section,
  .support-section,
  .policy-section,
  .policy-shell {
    padding-top: 20px;
  }

  .site-footer {
    padding: 26px 0 24px;
    margin-top: 30px;
  }

  .site-footer__line {
    font-size: 12px;
    line-height: 1.55;
  }

  .site-footer__sep {
    margin: 0 5px;
  }

  .hero-slide__actions {
    gap: 10px;
  }

  .hero-slide__actions .button {
    min-height: 42px;
    padding: 0 16px;
  }
}
