:root {
  --bg: #07111f;
  --bg-deep: #09182c;
  --bg-soft: #0c2038;
  --surface: #0f0d16;
  --surface-soft: rgba(18, 15, 28, 0.78);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --cyan: #369bc8;
  --sky: #52b9c0;
  --mint: #90d5ae;
  --lime: #b4df9c;
  --violet: #d6b9fc;
  --stroke: rgba(255, 255, 255, 0.1);
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 8%, rgba(84, 201, 180, 0.23), transparent 20%),
    radial-gradient(circle at 70% 12%, rgba(70, 132, 255, 0.12), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(47, 137, 196, 0.14), transparent 24%),
    radial-gradient(circle at 82% 86%, rgba(100, 185, 230, 0.1), transparent 22%),
    linear-gradient(180deg, #05040a 0%, var(--bg) 32%, var(--bg-deep) 74%, var(--bg-soft) 100%);
  color: var(--text);
  font-family: "Raleway", sans-serif;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

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

.section {
  padding: 120px 0;
}

.section--centered {
  text-align: center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.pill-button.is-disabled {
  cursor: default;
  opacity: 0.58;
}

.pill-button.is-disabled:hover {
  transform: none;
}

.pill-button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.pill-button--download {
  gap: 14px;
  padding: 0 28px;
  text-transform: none;
  letter-spacing: 0;
}

.download-platforms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.download-platforms img,
.download-platforms svg {
  width: 19px;
  height: 19px;
  display: block;
}

.download-platforms svg {
  fill: currentColor;
}

.download-label {
  font-size: 1.06rem;
  font-weight: 600;
}

.pill-button--dark {
  background: #050505;
  color: #fff;
}

.pill-button--pricing {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.price-card--light .pill-button--pricing,
.price-card--green .pill-button--pricing {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.34);
  color: rgba(0, 0, 0, 0.86);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(480px, 0.92fr);
  align-items: center;
  gap: 32px;
  padding-top: 54px;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.portfolio h2,
.testimonials h2,
.security h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.hero-text,
.section-heading p,
.feature-card p,
.portfolio p,
.security-card p,
.price-card p,
.site-footer p,
.site-footer span {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.orb--blue {
  top: 420px;
  right: 110px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(54, 155, 200, 0.78), transparent 66%);
}

.orb--green {
  top: 150px;
  left: 140px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(144, 213, 174, 0.22), transparent 70%);
}

.orb--mint {
  inset: auto;
  top: 50%;
  left: 50%;
  width: min(96vw, 1240px);
  height: min(82vw, 980px);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(116, 222, 179, 0.24) 0%, rgba(96, 206, 172, 0.18) 28%, rgba(33, 82, 69, 0.08) 54%, transparent 72%);
  filter: blur(24px);
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: 0.8;
}

.spark--1 {
  top: 70px;
  right: 120px;
}

.spark--2 {
  top: 460px;
  left: 60px;
}

.spark--3 {
  right: 310px;
  bottom: 120px;
}

.hero-phones-image {
  position: absolute;
  top: 48px;
  right: 56px;
  width: min(34vw, 520px);
  z-index: 2;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.42));
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 56px;
}

.section-heading--left {
  margin-left: 0;
}

.pricing .section-heading {
  text-align: center;
}

.feature-grid,
.security-grid,
.pricing-grid,
.footer-grid,
.portfolio,
.testimonials {
  display: grid;
  gap: 30px;
}

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

.feature-card {
  min-height: 390px;
  padding: 36px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card h3,
.security-card h3,
.price-card h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.feature-card--cyan {
  background: var(--cyan);
}

.feature-card--sky {
  background: var(--sky);
}

.feature-card--mint {
  background: var(--mint);
  color: #082111;
}

.feature-card--lime {
  background: var(--lime);
  color: #112311;
}

.feature-card--mint p,
.feature-card--lime p,
.price-card--light p,
.price-card--green p {
  color: rgba(0, 0, 0, 0.68);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 96px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: inherit;
}

.feature-icon-symbol {
  font-size: 1.9rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.feature-card--mint .feature-icon,
.feature-card--lime .feature-icon {
  border-color: rgba(0, 0, 0, 0.16);
}

.discover {
  position: relative;
}

.discover-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 980px;
}

.discover-showcase-image {
  position: relative;
  z-index: 1;
  width: min(72vw, 900px);
  display: block;
  filter:
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.26))
    drop-shadow(0 48px 110px rgba(0, 0, 0, 0.34));
}

.portfolio {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 38px 0 42px;
}

.stat-grid dt {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid dd {
  margin: 0;
  color: var(--mint);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 500;
  white-space: nowrap;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 7px,
      rgba(255, 255, 255, 0.02) 7px,
      rgba(255, 255, 255, 0.02) 14px
    );
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  mix-blend-mode: screen;
}

.portfolio-image--admin .image-panel {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.portfolio-image--admin .image-panel img {
  aspect-ratio: 16 / 12;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  border-radius: 18px;
}

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

.security .section-heading {
  text-align: center;
}

.security-card {
  padding: 36px 30px;
  border: 1px solid rgba(214, 185, 252, 0.5);
  border-radius: var(--radius-xl);
  background: rgba(14, 10, 24, 0.45);
  color: var(--violet);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.security-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 185, 252, 0.92);
  box-shadow:
    0 0 0 1px rgba(214, 185, 252, 0.22),
    0 18px 44px rgba(86, 46, 140, 0.22);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: rgba(157, 136, 185, 0.18);
  font-size: 1.4rem;
}

.security-badge .material-symbols-outlined {
  font-size: 1.65rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.testimonials {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: start;
}

.testimonials h2 {
  margin-bottom: 28px;
}

.testimonial-intro {
  max-width: 760px;
  margin: 0 0 34px;
}

.enterprise-benefits {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.enterprise-benefit {
  padding: 24px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 21, 39, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.enterprise-benefit h3 {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 1.4rem;
  font-weight: 500;
}

.enterprise-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonials-image .image-panel {
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 26px 70px rgba(0, 0, 0, 0.22);
}

.testimonials-image {
  align-self: end;
  transform: translateY(-14px);
}

.testimonials-image .image-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  border-radius: 18px;
}

.pricing {
  padding-top: 150px;
}

.pricing-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 34px;
  padding: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-switch button {
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pricing-switch button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.pricing-switch .is-active {
  background: var(--cyan);
  color: #fff;
}

.pricing-note {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.price-card--light {
  background: var(--sky);
  color: #050505;
  border-color: rgba(12, 31, 42, 0.12);
}

.price-card--blue {
  background: var(--cyan);
  color: #fff;
}

.price-card--green {
  background: var(--mint);
  color: #050505;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 30px 0 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.price > span:first-child {
  margin-top: 10px;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-value {
  font-size: clamp(5.6rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.price-period {
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.78;
}

.price-card ul {
  margin: 0 0 34px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  list-style: none;
}

.price-card--blue ul {
  border-color: rgba(255, 255, 255, 0.22);
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card li .material-symbols-outlined {
  margin-top: 1px;
  font-size: 1.3rem;
  line-height: 1;
}

.price-card li + li {
  margin-top: 18px;
}

.site-footer {
  margin-top: 90px;
  padding-top: 120px;
  padding-bottom: 32px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background:
    radial-gradient(circle at 18% 0%, rgba(67, 165, 220, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(10, 24, 44, 0.45), rgba(7, 18, 33, 0.82)),
    linear-gradient(180deg, #09182c 0%, #081426 100%);
}

.footer-grid {
  grid-template-columns: minmax(260px, 1fr);
  justify-items: center;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.footer-brand p {
  max-width: 760px;
  margin: 10px auto 0;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

.footer-brand {
  align-items: center;
  text-align: center;
}

.footer-contact {
  align-items: flex-end;
  text-align: right;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.socials img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .hero,
  .portfolio,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 620px;
  }

  .feature-grid,
  .security-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-phones-image {
    top: 26px;
    right: 10px;
    width: min(62vw, 360px);
  }

  .feature-grid,
  .security-grid,
  .pricing-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 88px 0;
  }

  .discover-panel {
    min-height: 760px;
  }

  .discover-showcase-image {
    width: min(82vw, 640px);
  }

  .carousel-buttons button {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.55rem;
  }

  .pill-button {
    width: 100%;
  }

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

  .feature-card,
  .security-card,
  .price-card {
    padding: 28px 22px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 72px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-phones-image {
    top: 36px;
    right: 6px;
    width: 270px;
  }

  .discover-panel {
    min-height: 620px;
  }

  .discover-showcase-image {
    width: min(86vw, 520px);
  }

  .hero h1,
  .section-heading h2,
  .portfolio h2,
  .testimonials h2,
  .security h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }
}
