:root {
  --navy: #071c3d;
  --navy2: #0a315f;
  --blue: #0a63e8;
  --blue2: #074fc0;
  --cyan: #16b7d5;
  --teal: #12b886;
  --violet: #7650d8;
  --ink: #10213f;
  --muted: #5f6f89;
  --line: #dbe5f2;
  --soft: #f4f8ff;
  --white: #fff;
  --shadow: 0 24px 70px rgba(11, 45, 89, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 242, 0.85);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.company-link {
  display: flex;
  align-items: center;
}

.corp-logo {
  display: block;
  width: 330px;
  max-width: 31vw;
  height: auto;
}

.divider {
  width: 1px;
  height: 52px;
  background: var(--line);
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.product-icon {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 10px 13px rgba(10, 99, 232, 0.16));
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.product-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.byline {
  font-size: 12px;
  font-weight: 760;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 780;
  color: #223754;
}

.nav a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: 0.2s ease;
  cursor: pointer;
}

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

.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  box-shadow: 0 13px 30px rgba(10, 99, 232, 0.24);
}

.secondary {
  background: white;
  border-color: #9bbcf0;
  color: #064dae;
}

.full {
  width: 100%;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(22, 183, 213, 0.15), transparent 34%),
    radial-gradient(circle at 8% 85%, rgba(10, 99, 232, 0.11), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 52%, #f8fdff 100%);
}

.hero-inner {
  min-height: 630px;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bfd4f4;
  background: #edf5ff;
  color: #084eaa;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 850;
}

h1 {
  font-size: clamp(52px, 5vw, 79px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 18px 0 20px;
  max-width: 730px;
}

h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-copy {
  font-size: 20px;
  color: #405574;
  max-width: 690px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.benefits {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 750;
  color: #2c415f;
}

.benefits span::before {
  content: "✓";
  color: #0aa66e;
  font-weight: 950;
  margin-right: 8px;
}

.notice {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff4d8;
  color: #7a5200;
  border: 1px solid #f4d693;
  font-weight: 750;
}

.demo-shell {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(210, 223, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.demo-stage {
  min-height: 455px;
  border-radius: 19px;
  overflow: hidden;
  background: linear-gradient(130deg, #f8fbff, #eef6ff);
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: stretch;
}

.demo-left {
  padding: 34px 18px 28px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #203655;
}

.mini-brand svg {
  width: 31px;
  height: 31px;
}

.demo-left h3 {
  margin: 38px 0 12px;
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.demo-left p {
  color: #536785;
  margin: 0 0 26px;
  max-width: 330px;
}

.demo-bars {
  display: grid;
  gap: 9px;
  width: 78%;
}

.demo-bars span {
  height: 11px;
  border-radius: 99px;
}

.demo-bars span:nth-child(1) {
  width: 100%;
  background: #1f6fff;
}

.demo-bars span:nth-child(2) {
  width: 76%;
  background: #12b886;
}

.demo-bars span:nth-child(3) {
  width: 108%;
  background: #7650d8;
}

.demo-left small {
  margin-top: auto;
  color: #667893;
  max-width: 310px;
}

.gmail-window {
  margin: 28px 20px 28px 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce5f0;
  box-shadow: 0 18px 45px rgba(31, 69, 116, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gmail-top {
  height: 47px;
  background: #f2f6fb;
  border-bottom: 1px solid #e1e8f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 13px;
  color: #344866;
}

.gmail-top b {
  color: #0a63e8;
  font-size: 12px;
  background: #e7f0ff;
  border-radius: 99px;
  padding: 5px 10px;
}

.gmail-row {
  height: 43px;
  padding: 12px 15px;
  border-bottom: 1px solid #edf1f6;
  color: #7a8799;
  font-size: 12px;
}

.gmail-body {
  position: relative;
  flex: 1;
  padding: 22px 17px;
  font-size: 14px;
  color: #2e415e;
}

.gmail-body u {
  text-decoration-color: #ef4343;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.suggestion-card {
  position: absolute;
  left: 22px;
  top: 75px;
  width: 220px;
  background: #fff;
  border: 1px solid #d9e4f1;
  border-radius: 13px;
  box-shadow: 0 16px 35px rgba(21, 50, 87, 0.18);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.suggestion-card strong {
  font-size: 11px;
  color: #65758d;
}

.suggestion-card span {
  font-size: 17px;
  font-weight: 850;
  color: #10213f;
}

.suggestion-card button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  background: #0a63e8;
  color: #fff;
  padding: 7px 12px;
  font-weight: 800;
}

.gmail-bottom {
  height: 52px;
  border-top: 1px solid #edf1f6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
}

.gmail-bottom span {
  background: #0a63e8;
  color: #fff;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
}

.gmail-bottom i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #e5ebf3;
}

.integrations {
  background: linear-gradient(90deg, #052d5c, #075a91, #063565);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.integration-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.integration-row::-webkit-scrollbar {
  display: none;
}

.integration-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 13px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 13px;
  font-weight: 820;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
}

.integration-chip b {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #0758c7;
  font-size: 13px;
}

.gmail-dot {
  color: #e94235 !important;
}

.drive-dot {
  color: #16a05d !important;
}

.docs-dot {
  color: #4285f4 !important;
}

.slides-dot {
  color: #f9ab00 !important;
}

.chat-dot {
  background: #10a37f !important;
  color: #fff !important;
}

.forms-dot {
  background: #7248b9 !important;
  color: #fff !important;
}

.ms-dot {
  background: linear-gradient(135deg, #f25022 0 50%, #00a4ef 50%) !important;
  color: #fff !important;
}

.edu-dot {
  background: #9dd6ff !important;
  color: #063565 !important;
}

.languages {
  background: #eef7ff;
  border-bottom: 1px solid #d7e7f7;
}

.languages-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #284766;
  flex-wrap: wrap;
}

.languages-inner strong {
  color: #083d82;
  font-size: 15px;
}

.languages-inner span {
  font-size: 14px;
  font-weight: 650;
}

.features {
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--line);
}

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

.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #a7c5f5;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.feature h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.soft {
  background: var(--soft);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 900;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 8px 0 14px;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

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

.card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(18, 54, 96, 0.06);
}

.card-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8f2ff;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 8px;
}

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

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 22px;
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  position: relative;
  box-shadow: 0 16px 50px rgba(17, 52, 96, 0.08);
}

.price-card.main {
  border: 2px solid var(--blue);
}

.tag {
  position: absolute;
  right: 25px;
  top: 25px;
  background: #e8f2ff;
  color: #0758c7;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.price {
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 14px 0 8px;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0;
}

.clean {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.clean li {
  margin: 11px 0;
  padding-left: 25px;
  position: relative;
}

.clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 950;
}

.faq {
  max-width: 850px;
  margin: auto;
}

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px 20px;
  margin: 12px 0;
}

.faq summary {
  font-weight: 850;
  cursor: pointer;
}

.faq p {
  color: var(--muted);
}

footer {
  background: linear-gradient(135deg, #061a36, #082e59);
  color: #eaf2ff;
}

.footer-main {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.72fr 0.85fr 1fr;
  gap: 42px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 17px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
}

.footer-corp-logo {
  display: block;
  width: 245px;
  max-width: 100%;
  height: auto;
}

.footer-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(8, 46, 89, 0.12);
}

.footer-product .product-icon {
  width: 46px;
  height: 46px;
  filter: none;
}

.footer-product .product-name {
  font-size: 24px;
  color: #17345f;
}

.footer-product .byline {
  font-size: 12px;
}

.footer-main h4 {
  margin: 0 0 13px;
  font-size: 17px;
}

.footer-main h4.accent {
  color: #36cbe5;
}

.footer-main p {
  color: #c9d7e9;
  margin: 0;
  max-width: 280px;
}

.footer-main a {
  display: block;
  color: #dce7f5;
  margin: 8px 0;
  font-size: 14px;
}

.footer-brand-lockup a {
  margin: 0;
}

.footer-main a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c7d4e6;
  font-size: 13px;
}

.legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal a {
  color: #e7eff9;
}

@media (max-width: 1180px) {
  .corp-logo {
    width: 270px;
  }

  .product-name {
    font-size: 24px;
  }

  .byline {
    font-size: 11px;
  }

  .nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .feature {
    border: 0;
    padding: 0;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-stage {
    min-height: 420px;
  }

  .demo-left {
    padding-left: 25px;
  }
}

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

  .topbar-inner {
    min-height: 78px;
    gap: 15px;
  }

  .corp-logo {
    width: 210px;
    max-width: 48vw;
  }

  .divider,
  .nav a:not(.button) {
    display: none;
  }

  .product-icon {
    width: 46px;
    height: 46px;
  }

  .product-name {
    font-size: 20px;
  }

  .byline {
    font-size: 10px;
  }

  .nav {
    margin-left: auto;
  }

  .nav .button {
    min-height: 44px;
    padding: 0 15px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 55px 0;
  }

  .demo-stage {
    min-height: 400px;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .languages-inner {
    padding: 14px 0;
    gap: 6px;
  }

  .languages-inner strong,
  .languages-inner span {
    width: 100%;
  }
}

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

  .corp-logo {
    width: 175px;
  }

  .topbar .product-brand {
    display: none;
  }

  .hero-inner {
    padding: 42px 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .benefits {
    display: grid;
    gap: 8px;
  }

  .demo-stage {
    display: block;
    min-height: 0;
  }

  .demo-left {
    padding: 28px 24px 20px;
  }

  .demo-left h3 {
    margin-top: 26px;
  }

  .gmail-window {
    margin: 0 18px 22px;
  }

  .feature-grid,
  .cards,
  .pricing,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 48px 1fr;
  }

  .footer-brand-lockup {
    gap: 12px;
    padding: 12px;
  }

  .footer-divider {
    display: none;
  }

  .footer-brand-lockup .product-brand {
    display: flex;
  }

  .footer-product .product-name {
    font-size: 20px;
  }

  .footer-product .byline {
    font-size: 10px;
  }

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

  .section {
    padding: 65px 0;
  }
}
