:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #f1f4fb;
  --text: #0d1733;
  --muted: #667896;
  --line: rgba(17, 24, 39, 0.08);
  --primary: #2f63f3;
  --primary-2: #5dd6db;
  --shadow: 0 18px 40px rgba(12, 24, 56, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --nav-h: 82px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 99, 243, 0.06), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #f2f5fb 100%);
}

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

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

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

.section {
  padding: 92px 0;
}

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

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2f63f3, #2957d8);
  color: white;
  box-shadow: 0 10px 22px rgba(47, 99, 243, 0.25);
}

.brand-text {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1;
}

.brand-text .accent {
  color: var(--primary);
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #66748d;
  font-weight: 500;
}

.menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px;
  padding: 16px 28px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), #3b72ff);
  color: white;
  box-shadow: 0 14px 28px rgba(47, 99, 243, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(47, 99, 243, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 64px 0 72px;
}

.hero-card {
  text-align: center;
  max-width: 980px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 99, 243, 0.2);
  color: var(--primary);
  background: rgba(47, 99, 243, 0.06);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 1rem;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #2f63f3 5%, #4aaee9 55%, #5ed7d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 860px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 42px;
}

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

.card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
  background: linear-gradient(180deg, #edf1ff, #e9eef8);
}

.card h3 {
  margin: 0 0 16px;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.products-stack {
  display: grid;
  gap: 34px;
}

.product {
  /*display: grid;*/
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.product.reverse .product-copy {
  order: 2;
}

.product.reverse .product-visual {
  order: 1;
}

.product-copy {
  border-radius: 28px;
  padding: 48px 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.product-copy.soft {
  background: linear-gradient(180deg, #f3f1ff, #eef1fb);
}

.product-copy.warm {
  background: linear-gradient(180deg, #f7ebe7, #f7f0ed);
}

.product-copy h3 {
  margin: 10px 0 18px;
  font-size: 3rem;
  letter-spacing: -0.04em;
}

.product-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.2rem;
}

.feature-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--primary);
}

.product-visual {
  min-height: 460px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.parkbae-visual {
  background: radial-gradient(circle at 50% 40%, rgba(97, 108, 170, 0.25), transparent 18%), linear-gradient(180deg, #19295c 0%, #14214e 100%);
}

.parkbae-visual .pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.28;
}

.parkbae-visual::before,
.parkbae-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.parkbae-visual::before {
  width: 210px;
  height: 210px;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.parkbae-visual::after {
  width: 110px;
  height: 110px;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dinestack-visual {
  background: linear-gradient(180deg, #251528, #2d1d35 100%);
}

.dinestack-plate {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 36px;
  height: 82px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dinestack-line {
  position: absolute;
  left: 58px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.dinestack-line.one {
  bottom: 76px;
  width: 82px;
}

.dinestack-line.two {
  bottom: 52px;
}

/* Vyanjan product link and logo */
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-logo {
  border-radius: 8px;
  flex: 0 0 auto;
}

.visual-brand {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  z-index: 5;
}

.visual-brand img {
  border-radius: 6px;
}

.about {
  background:
    linear-gradient(180deg, rgba(1, 10, 35, 0.82), rgba(1, 10, 35, 0.9)),
    radial-gradient(circle at 65% 45%, rgba(47, 99, 243, 0.22), transparent 23%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.06), transparent 28%),
    #07163d;
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 0 0 28px;
  max-width: 640px;
}

.about-copy .underline {
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 26px;
}

.about-copy p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 720px;
}

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

.stat {
  min-height: 120px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}

.stat strong {
  display: block;
  font-size: 3.3rem;
  color: #2f63f3;
  letter-spacing: -0.04em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

.contact-wrap {
  max-width: 1020px;
  margin: 0 auto;
  /*display: grid;*/
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.contact-side {
  padding: 54px 48px;
  background: linear-gradient(180deg, #2f63f3, #3d64ef 70%, #4669ea);
  color: white;
}

.contact-side h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}

.contact-side p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 430px;
}

.contact-info {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-item .circle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-form {
  padding: 50px 46px;
  background: #fff;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  padding: 18px 18px;
  font: inherit;
  font-size: 1.08rem;
  color: var(--text);
  background: #fbfcfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(47, 99, 243, 0.45);
  box-shadow: 0 0 0 4px rgba(47, 99, 243, 0.08);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  background: #020c2d;
  color: white;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
  gap: 48px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.18rem;
  line-height: 1.6;
}

.footer-title {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.copyright {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 1120px) {
  .cards-grid,
  .product,
  .about-grid,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product.reverse .product-copy,
  .product.reverse .product-visual {
    order: initial;
  }

  .product-visual,
  .contact-side,
  .contact-form {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    top: var(--nav-h);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu a,
  .menu .btn {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .menu .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .section {
    padding: 72px 0;
  }

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

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

@media (max-width: 640px) {
  .brand-text {
    font-size: 1.25rem;
  }

  .hero p,
  .section-head p,
  .card p,
  .product-copy p,
  .about-copy p,
  .footer p,
  .footer a,
  .feature-list li,
  .contact-side p,
  .contact-item {
    font-size: 1rem;
  }

  .card,
  .product-copy,
  .contact-side,
  .contact-form {
    padding: 28px 22px;
  }

  .product-visual {
    min-height: 320px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }
}
