:root {
  --bg: #08140f;
  --bg-soft: #102019;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(130, 255, 190, 0.28);
  --text: #eefbf3;
  --muted: rgba(223, 241, 231, 0.73);
  --green-deep: #79f2a4;
  --green-bright: #b4ffd2;
  --cyan-soft: #98f4ff;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 20px 60px rgba(5, 15, 10, 0.22);
  --radius-xl: 34px;
  --max-width: 1240px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(96, 255, 168, 0.22), transparent 30%),
    radial-gradient(circle at 88% 9%, rgba(104, 211, 255, 0.16), transparent 27%),
    radial-gradient(circle at 45% 78%, rgba(177, 255, 214, 0.11), transparent 34%),
    linear-gradient(180deg, #0d2018 0%, #11251c 26%, #142d22 58%, #0a1712 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  z-index: 80;
  pointer-events: none;
  background: linear-gradient(90deg, var(--green-bright), var(--cyan-soft));
  box-shadow: 0 0 24px rgba(128, 255, 188, 0.7);
}

.page-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 16%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.055), transparent 21%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.016) 0 1px, transparent 1px 92px);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.95;
  transform: translateY(calc(var(--scroll-progress) * 80px));
}

.ambient-1 {
  width: 560px;
  height: 560px;
  top: -170px;
  right: -130px;
  background: rgba(58, 255, 160, 0.17);
}

.ambient-2 {
  width: 460px;
  height: 460px;
  top: 560px;
  left: -150px;
  background: rgba(80, 190, 255, 0.13);
}

.ambient-3 {
  width: 380px;
  height: 380px;
  bottom: 160px;
  right: 6%;
  background: rgba(158, 255, 200, 0.13);
}

.top-anchor-bar,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 2;
}

.top-anchor-bar {
  position: sticky;
  top: 0;
  padding: 18px 24px 0;
  z-index: 30;
}

.top-anchor-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.72);
}

.top-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 0.58rem;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  color: #0f3b2c;
}

.top-brand-logo {
  width: 1.05em;
  height: 1.05em;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(17, 86, 56, 0.18));
}

.top-anchor-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.top-anchor-link {
  min-width: auto;
  padding: 10px 14px;
  border-radius: 13px;
  border: 1px solid rgba(15, 59, 44, 0.08);
  background: linear-gradient(180deg, rgba(15, 59, 44, 0.075), rgba(15, 59, 44, 0.025));
  color: #0f3b2c;
  text-align: center;
  font-weight: 760;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.top-anchor-link:hover {
  transform: translateY(-1px);
  border-color: rgba(42, 159, 91, 0.24);
  box-shadow: 0 12px 26px rgba(4, 24, 15, 0.16);
  background: linear-gradient(135deg, rgba(103, 255, 173, 0.2), rgba(75, 171, 255, 0.13));
}

.top-anchor-link-primary {
  background: linear-gradient(135deg, rgba(103, 255, 173, 0.24), rgba(75, 171, 255, 0.16));
  border-color: rgba(42, 159, 91, 0.16);
}

.top-anchor-menu-button {
  display: none;
}

.privacy-policy-page .top-anchor-bar {
  display: none;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px) 24px 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: 28px 6px 18px;
}

.eyebrow,
.section-tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  color: var(--green-bright);
  font-size: 0.78rem;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 18px rgba(180, 255, 210, 0.72);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.15rem, 6.2vw, 6.85rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 820px;
  background: linear-gradient(132deg, #ffffff 0%, #d8ffe7 31%, #8ef3ff 63%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 44px rgba(120, 255, 185, 0.13);
}

.hero-text,
.section-heading p,
.feature-card p,
.stat-label,
.database-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 700px;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat-card,
.feature-card,
.glass-card,
.database-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.145), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  padding: 22px 20px;
}

.stat-card::before,
.feature-card::before,
.intro-gallery-shell::before,
.database-shell::before,
.database-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.13), transparent 32%, transparent 68%, rgba(130,255,200,0.09));
}

.stat-card::after,
.feature-card::after,
.database-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 255, 179, 0.16), transparent 68%);
  pointer-events: none;
}

.stat-value {
  position: relative;
  display: block;
  font-size: 1.34rem;
  font-weight: 850;
  color: #f3fff8;
  margin-bottom: 6px;
  letter-spacing: -0.035em;
}

.stat-label {
  position: relative;
  display: block;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1100px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(520px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,255,187,0.24), rgba(108,207,255,0.11) 44%, transparent 68%);
  filter: blur(10px);
  transform: translateY(calc(var(--scroll-progress) * -36px));
}

.hero-screenshot {
  position: relative;
  width: min(408px, 86%);
  height: auto;
  object-fit: contain;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.46), 0 0 0 9px rgba(255,255,255,0.035), 0 0 80px rgba(114,255,177,0.12);
  transform: translateY(calc(var(--scroll-progress) * -18px)) rotateX(2deg) rotateY(-7deg);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 120px) 24px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 14px 0 14px;
  font-size: clamp(2.15rem, 3.5vw, 3.85rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
  color: #f6fff9;
}

.database-section {
  padding-top: clamp(54px, 7vw, 86px);
}

.database-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(123, 255, 187, 0.16), transparent 25%),
    radial-gradient(circle at 12% 100%, rgba(108, 207, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
}

.database-heading {
  max-width: 900px;
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.database-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 26px;
  min-height: 245px;
  background:
    radial-gradient(circle at top right, rgba(142, 243, 255, 0.13), transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,0.145), rgba(255,255,255,0.055));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.database-card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(126,255,186,0.24), rgba(76,177,255,0.17));
  color: #edfff4;
  font-weight: 850;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 18px;
}

.database-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.045em;
  color: #fbfffd;
}

.database-card p {
  position: relative;
}

.intro-gallery-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 0% 0%, rgba(128,255,188,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.125), rgba(255,255,255,0.055));
}

.intro-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.intro-shot-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.intro-shot-card:nth-child(even) {
  transform: translateY(22px);
}

.intro-shot-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(148, 255, 192, 0.24);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.3);
}

.intro-shot-card:nth-child(even):hover {
  transform: translateY(12px) scale(1.012);
}

.intro-shot {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  object-position: top center;
  border-radius: 23px;
  background: linear-gradient(180deg, #ffffff, #eef7f2);
}

.mini-tag {
  font-size: 0.74rem;
}

.features-section {
  padding-bottom: 10px;
}

.features-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.features-section .feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 30px;
  min-height: 250px;
  background:
    radial-gradient(circle at top right, rgba(123, 255, 187, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.145), rgba(255,255,255,0.055));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.database-card:hover {
  transform: translateY(-9px);
  border-color: rgba(150, 255, 201, 0.25);
  box-shadow: 0 38px 84px rgba(0, 0, 0, 0.32);
}

.card-number {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-weight: 850;
  background: linear-gradient(135deg, rgba(126,255,186,0.24), rgba(76,177,255,0.17));
  color: #edfff4;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.feature-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.18;
  letter-spacing: -0.045em;
  color: #fbfffd;
}

.feature-card p {
  position: relative;
}

.site-footer {
  margin-top: 92px;
  background: rgba(255,255,255,0.045);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--green-bright);
  font-weight: 650;
}

.footer-link:hover {
  text-decoration: underline;
}

.hero-copy,
.hero-visual,
.stat-card,
.database-card,
.intro-shot-card,
.feature-card,
.section-heading {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-copy.is-visible,
.hero-visual.is-visible,
.stat-card.is-visible,
.database-card.is-visible,
.intro-shot-card.is-visible,
.feature-card.is-visible,
.section-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-shot-card:nth-child(even).is-visible {
  transform: translateY(22px);
}

.stat-card:nth-child(2),
.database-card:nth-child(2),
.intro-shot-card:nth-child(2),
.feature-card:nth-child(2) { transition-delay: 0.06s; }
.stat-card:nth-child(3),
.database-card:nth-child(3),
.intro-shot-card:nth-child(3),
.feature-card:nth-child(3) { transition-delay: 0.12s; }
.database-card:nth-child(4),
.intro-shot-card:nth-child(4),
.feature-card:nth-child(4) { transition-delay: 0.18s; }
.intro-shot-card:nth-child(5),
.feature-card:nth-child(5) { transition-delay: 0.06s; }
.intro-shot-card:nth-child(6),
.feature-card:nth-child(6) { transition-delay: 0.12s; }
.intro-shot-card:nth-child(7),
.feature-card:nth-child(7) { transition-delay: 0.18s; }
.intro-shot-card:nth-child(8),
.feature-card:nth-child(8) { transition-delay: 0.24s; }
.feature-card:nth-child(9) { transition-delay: 0.3s; }

@supports (animation-timeline: view()) {
  .database-shell,
  .intro-gallery-shell,
  .feature-grid {
    animation: section-lift both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

  @keyframes section-lift {
    from {
      transform: translateY(34px) scale(0.985);
    }
    to {
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 1180px) {
  .database-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .features-section .feature-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .hero-text,
  .section-heading,
  .hero-copy h1,
  .database-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-screenshot {
    transform: translateY(calc(var(--scroll-progress) * -10px));
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  .top-anchor-bar {
    padding: 12px 16px 0;
  }

  .top-anchor-inner {
    position: relative;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 19px;
  }

  .top-brand {
    font-size: 0.96rem;
    min-width: 0;
  }

  .top-anchor-menu-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(15, 59, 44, 0.12);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(15, 59, 44, 0.08), rgba(15, 59, 44, 0.04));
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .top-anchor-menu-button span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #0f3b2c;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .top-anchor-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .top-anchor-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .top-anchor-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .top-anchor-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    margin-left: 0;
    padding: 10px;
    min-width: min(220px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid rgba(15, 59, 44, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .top-anchor-nav.is-open {
    display: flex;
  }

  .top-anchor-link {
    width: 100%;
    text-align: left;
    min-width: 0;
    flex: none;
    padding: 11px 12px;
    font-size: 0.86rem;
    border-radius: 12px;
    white-space: nowrap;
  }

  .hero {
    padding: 26px 16px 6px;
  }

  .hero-grid {
    padding-top: 22px;
    gap: 34px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 76px;
  }

  .database-section {
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.35rem);
    line-height: 0.94;
  }

  .glass-card,
  .feature-card,
  .database-shell,
  .database-card {
    border-radius: 28px;
    padding: 24px;
  }

  .database-grid,
  .intro-gallery {
    grid-template-columns: 1fr;
  }

  .database-card {
    min-height: auto;
  }

  .intro-gallery-shell {
    padding: 16px;
    border-radius: 30px;
  }

  .intro-gallery {
    gap: 14px;
  }

  .intro-shot-card,
  .intro-shot-card:nth-child(even),
  .intro-shot-card:nth-child(even).is-visible {
    transform: translateY(0);
  }

  .intro-shot-card:hover,
  .intro-shot-card:nth-child(even):hover {
    transform: translateY(-5px);
  }

  .intro-shot-card {
    padding: 8px;
    border-radius: 23px;
  }

  .intro-shot {
    border-radius: 17px;
    object-fit: contain;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-screenshot {
    width: min(326px, 88%);
    border-radius: 30px;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    gap: 12px;
  }

  .stat-card,
  .feature-card,
  .database-card {
    padding: 20px;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }
}

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

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

  .hero-copy,
  .hero-visual,
  .stat-card,
  .database-card,
  .intro-shot-card,
  .feature-card,
  .section-heading {
    opacity: 1;
    transform: none !important;
  }
}

.privacy-policy-page {
  background:
    radial-gradient(circle at top left, rgba(53, 170, 107, 0.14), transparent 34%),
    radial-gradient(circle at right 15% top 10%, rgba(95, 198, 138, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfffd 0%, #f7fbf8 45%, #f3f8f5 100%);
  color: #12211a;
}

.privacy-policy-page .page-shell::before,
.privacy-policy-page .scroll-progress {
  display: none;
}

.privacy-policy-page .eyebrow,
.privacy-policy-page .section-tag,
.privacy-policy-page .mini-tag {
  color: #166844;
}

.privacy-policy-page .eyebrow::before,
.privacy-policy-page .section-tag::before {
  background: #166844;
  box-shadow: none;
}

.privacy-policy-page .hero-copy,
.privacy-policy-page .section-heading,
.privacy-policy-page .privacy-policy-card {
  opacity: 1;
  transform: none;
}

.privacy-policy-page .hero-copy h1 {
  background: none;
  color: #12211a;
  text-shadow: none;
}

.privacy-policy-page .hero-text,
.privacy-policy-page .site-footer-inner p,
.privacy-policy-page .footer-link,
.privacy-policy-page .stat-label {
  color: #5c6f67;
}

.privacy-policy-page .privacy-policy-card {
  border-radius: 40px;
  overflow: visible;
  padding: 36px 34px 34px;
  border: 1px solid rgba(27, 111, 69, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,252,249,0.86));
  box-shadow: 0 24px 80px rgba(28, 61, 44, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.privacy-policy-page .privacy-policy-card .mini-tag {
  display: block;
  line-height: 1.45;
  margin-left: 2px;
}

.privacy-policy-page .privacy-policy-card p,
.privacy-policy-page .privacy-policy-card span,
.privacy-policy-page .privacy-policy-card h1,
.privacy-policy-page .privacy-policy-card h2,
.privacy-policy-page .privacy-policy-card h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

@media (max-width: 720px) {
  .privacy-policy-page .privacy-policy-card {
    border-radius: 28px;
    padding: 28px 22px 24px;
  }
}
