:root {
  --bg: #dceeff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(27, 68, 134, 0.1);
  --text: #173054;
  --muted: #5a7191;
  --primary: #1d67da;
  --primary-deep: #0b4bb4;
  --sky: #5fb9ff;
  --green: #2da66a;
  --orange: #ff9b37;
  --violet: #7456ef;
  --shadow-lg: 0 28px 60px rgba(35, 84, 160, 0.18);
  --shadow-md: 0 18px 36px rgba(30, 84, 161, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(98, 176, 255, 0.9), transparent 34%),
    radial-gradient(circle at right 20%, rgba(136, 209, 255, 0.45), transparent 25%),
    linear-gradient(180deg, #1d6cdf 0%, #cfe8ff 48%, #f3f8ff 100%);
}

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

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 42px auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(25, 67, 132, 0.22);
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(24, 78, 154, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-deep);
}

.header-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #4b9aff, #1a69de);
  box-shadow: 0 16px 30px rgba(24, 95, 200, 0.25);
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(29, 103, 218, 0.08);
  border: 1px solid rgba(29, 103, 218, 0.15);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 32px;
  padding: 66px 48px 170px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(145, 210, 255, 0.95), transparent 28%),
    radial-gradient(circle at 18% 75%, rgba(65, 124, 246, 0.95), transparent 38%),
    linear-gradient(130deg, #004ab7 0%, #2378eb 42%, #5ec8ff 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -44px;
  height: 220px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-4deg);
  z-index: -1;
}

.hero::after {
  inset: auto -10% -86px;
  height: 240px;
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(2deg);
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.hero h1,
.section-heading h2,
.support-panel h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.hero-metrics li {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

.screen-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(225, 239, 255, 0.98));
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.main-screen {
  right: 42px;
  top: 54px;
  width: min(100%, 430px);
  min-height: 258px;
  padding: 18px;
  border: 12px solid rgba(29, 56, 110, 0.78);
}

.main-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 132px;
  height: 14px;
  background: rgba(57, 98, 168, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
  filter: blur(2px);
}

.screen-toolbar {
  display: flex;
  gap: 8px;
}

.screen-toolbar span {
  width: 10px;
  height: 10px;
  background: rgba(71, 136, 222, 0.35);
  border-radius: 999px;
}

.chart-grid {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 124px;
  margin-top: 34px;
}

.bar {
  flex: 1;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #75c6ff, #2f91ff);
}

.bar-a {
  height: 54%;
}

.bar-b {
  height: 72%;
}

.bar-c {
  height: 43%;
}

.bar-d {
  height: 88%;
  background: linear-gradient(180deg, #ffbb69, #ff9830);
}

.screen-panel {
  height: 50px;
  margin-top: 24px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(73, 162, 255, 0.16), rgba(73, 162, 255, 0.04));
}

.floating-card {
  width: 120px;
  height: 132px;
}

.floating-card-left {
  left: 32px;
  bottom: 64px;
}

.floating-card-right {
  right: 0;
  top: 8px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  opacity: 0.55;
}

.shopping-bag {
  position: absolute;
  bottom: 36px;
  width: 124px;
  height: 112px;
  border-radius: 18px 18px 22px 22px;
  box-shadow: 0 22px 34px rgba(30, 78, 150, 0.2);
}

.shopping-bag::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 44px;
  height: 26px;
  border: 7px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
}

.shopping-bag::after {
  content: "";
  position: absolute;
  inset: 40px auto auto 36px;
  width: 18px;
  height: 36px;
  border-right: 8px solid rgba(255, 255, 255, 0.9);
  border-bottom: 8px solid rgba(255, 255, 255, 0.9);
  transform: rotate(40deg);
}

.bag-orange {
  right: 58px;
  background: linear-gradient(180deg, #ffbf6c, #ff9925);
  color: #284c89;
}

.bag-green {
  right: -8px;
  bottom: 18px;
  width: 98px;
  height: 88px;
  background: linear-gradient(180deg, #6bd996, #2dad61);
  color: #2a8c57;
}

.bag-green::before {
  width: 34px;
  height: 20px;
  top: -14px;
  border-width: 6px;
}

.bag-green::after {
  inset: 31px auto auto 28px;
  width: 14px;
  height: 28px;
  border-right-width: 7px;
  border-bottom-width: 7px;
}

.products,
.audiences,
.support {
  padding: 0 48px 48px;
}

.products {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  padding-top: 28px;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--text);
}

.section-heading p,
.support-panel p,
.audience-card p,
.product-copy p {
  margin: 16px 0 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 34px auto 0;
  max-width: 880px;
}

.product-card,
.audience-card,
.support-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.product-card {
  min-height: 256px;
  padding: 28px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -22px -42px auto;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  opacity: 0.12;
}

.accent-green::before {
  background: radial-gradient(circle, rgba(45, 166, 106, 0.42), rgba(45, 166, 106, 0));
}

.accent-orange::before,
.accent-orange .icon-box {
  background: radial-gradient(circle, rgba(255, 155, 55, 0.44), rgba(255, 155, 55, 0));
}

.accent-violet::before,
.accent-violet .icon-box {
  background: radial-gradient(circle, rgba(116, 86, 239, 0.42), rgba(116, 86, 239, 0));
}

.icon-box {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.icon-box svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-height: 58px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.logo-box img {
  display: block;
  width: auto;
  height: auto;
  max-width: 58px;
  max-height: 58px;
}

.accent-orange .logo-box {
  background: transparent;
}

.accent-violet .logo-box {
  background: transparent;
}

.logo-box-desk img {
  max-width: 74px;
  max-height: 62px;
}

.accent-green svg {
  stroke: var(--green);
}

.accent-orange svg {
  stroke: var(--orange);
}

.accent-violet svg {
  stroke: var(--violet);
}

.product-copy {
  margin-top: 22px;
}

.product-copy h3,
.audience-card h3 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.05em;
}

.product-copy a,
.coming-soon {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

.product-copy a {
  color: var(--primary);
}

.future-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 242, 255, 0.98)),
    #fff;
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(116, 86, 239, 0.12);
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon {
  color: var(--violet);
}

.audiences {
  padding-top: 24px;
}

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

.audience-card {
  padding: 28px 24px;
  text-align: center;
}

.audience-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(60, 136, 235, 0.14), rgba(60, 136, 235, 0.04));
  position: relative;
}

.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
}

.audience-briefcase::before {
  inset: 24px 18px 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #84adff, #4f76c8);
}

.audience-briefcase::after {
  left: 31px;
  top: 18px;
  width: 24px;
  height: 10px;
  border: 4px solid #7f9df0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.audience-store::before {
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 28px;
  background: linear-gradient(180deg, #ffb765, #ff9832);
  border-radius: 0 0 10px 10px;
}

.audience-store::after {
  left: 14px;
  right: 14px;
  top: 18px;
  height: 22px;
  background:
    linear-gradient(
      90deg,
      #ff8f25 0 20%,
      #ffd48d 20% 40%,
      #ff8f25 40% 60%,
      #ffd48d 60% 80%,
      #ff8f25 80% 100%
    );
  border-radius: 12px 12px 8px 8px;
}

.audience-delivery::before {
  left: 16px;
  right: 26px;
  bottom: 28px;
  height: 22px;
  background: linear-gradient(180deg, #8c7cff, #6255d6);
  border-radius: 8px;
}

.audience-delivery::after {
  right: 12px;
  bottom: 28px;
  width: 22px;
  height: 18px;
  background: linear-gradient(180deg, #81b4ff, #5d82d1);
  border-radius: 0 8px 8px 0;
  box-shadow:
    -40px 16px 0 -10px #4668b3,
    -6px 16px 0 -10px #4668b3;
}

.audience-tools::before,
.audience-tools::after {
  width: 16px;
  height: 52px;
  left: 35px;
  top: 17px;
  border-radius: 10px;
  background: linear-gradient(180deg, #79a2ff, #446bb9);
}

.audience-tools::before {
  transform: rotate(44deg);
}

.audience-tools::after {
  transform: rotate(-44deg);
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at left, rgba(90, 180, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.96));
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 0 48px 34px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 148px;
  }

  .hero-copy {
    max-width: none;
  }

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

  .main-screen {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .floating-card-left {
    left: 8%;
  }

  .bag-orange {
    right: 18%;
  }

  .bag-green {
    right: 7%;
  }

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

  .support-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 16px, 1200px);
    margin: 10px auto;
    border-radius: 24px;
  }

  .site-header,
  .products,
  .audiences,
  .support,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: 0.95rem;
  }

  .hero {
    gap: 18px;
    padding: 42px 20px 118px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-metrics,
  .product-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .main-screen {
    width: 88%;
    min-height: 214px;
    top: 12px;
    border-width: 10px;
  }

  .floating-card-left {
    left: 2%;
    bottom: 58px;
    width: 94px;
    height: 102px;
  }

  .floating-card-right {
    right: 0;
    width: 70px;
    height: 70px;
  }

  .shopping-bag {
    width: 94px;
    height: 86px;
  }

  .bag-orange {
    right: 20%;
  }

  .bag-green {
    right: 4%;
    width: 76px;
    height: 70px;
  }

  .section-heading h2,
  .support-panel h2 {
    font-size: 2rem;
  }

  .product-card,
  .audience-card,
  .support-panel {
    border-radius: 22px;
  }
}
