* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 78% 12%, rgba(112, 91, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 42%, #f7f8ff 100%);
  color: #070814;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mac-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 11%, rgba(116, 95, 255, 0.24), transparent 35%),
    radial-gradient(circle at 42% 48%, rgba(245, 247, 255, 0.9), transparent 42%);
}

/* NAVBAR */

.mac-navbar {
  width: 100%;
  height: 70px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(15, 18, 35, 0.08);
  position: relative;
  z-index: 10;
}

.mac-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #090a14;
}

.mac-brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  border-radius: 8px;
}

.mac-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.mac-nav-links a {
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #090a14;
  opacity: 0.86;
}

.mac-nav-links a.active {
  color: #4c45ff;
  opacity: 1;
}

.mac-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 58px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #4c45ff;
}

.nav-download {
  height: 44px;
  padding: 0 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #5b53ff 0%, #5147ee 100%);
  box-shadow: 0 12px 26px rgba(82, 74, 244, 0.24);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

/* HERO */

.mac-hero {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 66px 64px 46px;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  gap: 38px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  width: max-content;
  margin-bottom: 30px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #eeeaff;
  color: #4d39f5;
  font-size: 13px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 0;
  max-width: 640px;
  font-size: 69px;
  line-height: 1.00;
  letter-spacing: -0.2px;
  font-weight: 700;
  color: #060713;
}

.hero-text {
  max-width: 550px;
  margin: 30px 0 30px;
  font-size: 19px;
  line-height: 1.62;
  font-weight: 500;
  color: #5d6577;
}

.hero-button {
  width: max-content;
  height: 61px;
  padding: 0 31px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5a52ff 0%, #5147ee 100%);
  box-shadow: 0 18px 35px rgba(78, 69, 237, 0.28);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.28s ease;
}

.hero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.34) 42%,
    transparent 72%
  );
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 24px 46px rgba(78, 69, 237, 0.36);
  background: linear-gradient(135deg, #675fff 0%, #5147ee 100%);
}

.hero-button:hover::before {
  transform: translateX(120%);
}

.hero-button:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow: 0 14px 28px rgba(78, 69, 237, 0.28);
}

.hero-button img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.hero-button {
  z-index: 1;
}

.hero-button span,
.hero-button img {
  pointer-events: none;
}


.section-button {
  margin-top: 24px;
  height: 54px;
  padding: 0 26px;
  font-size: 15px;
  border-radius: 13px;
}

.section-button img {
  width: 19px;
  height: 19px;
}

.product-button {
  margin-top: 28px;
}

.hero-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: #6a7280;
}

.hero-mockup {
  width: 100%;
  min-height: 445px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 720px;
  height: 520px;
  background: radial-gradient(circle, rgba(94, 78, 255, 0.23), transparent 64%);
  filter: blur(8px);
  z-index: 0;
}

.hero-mockup img {
  position: relative;
  z-index: 1;
  width: 700px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(20, 20, 45, 0.16));
}

/* FEATURE STRIP */

.feature-strip {
  width: min(100% - 128px, 1280px);
  min-height: 150px;
  margin: 0 auto 36px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow:
    0 25px 60px rgba(36, 39, 80, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 4;
}

.feature-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
}

.highlight {
  background: linear-gradient(135deg, #5a52ff 0%, #7a6cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.feature-icon {
  width: 61px;
  height: 61px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.feature-icon.purple {
  background: #eeeaff;
}

.feature-icon.green {
  background: #e8faef;
}

.feature-icon.orange {
  background: #fff0e5;
}

.feature-icon.blue {
  background: #eaf5ff;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  color: #11121c;
}

.feature-item p {
  margin: 0;
  max-width: 210px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  color: #424858;
}



/* HOW TO SEE CLIPBOARD */

.clipboard-how-section {
  width: min(100% - 128px, 1280px);
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
}

.clipboard-how-card {
  min-height: 325px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow:
    0 25px 60px rgba(36, 39, 80, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.clipboard-how-image {
  height: 450px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2ff;
  box-shadow: 0 18px 40px rgba(28, 33, 68, 0.09);
}

.clipboard-how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clipboard-how-content {
  padding: 10px 34px 10px 0;
}

.section-eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #7a32ff;
}

.clipboard-how-content h2 {
  margin: 0 0 20px;
  max-width: 520px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: 1.0px;
  font-weight: 700;
  color: #080914;
}

.section-text {
  margin: 0 0 16px;
  max-width: 485px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: #505767;
}

.section-text.small {
  margin-top: 18px;
  margin-bottom: 0;
  max-width: 470px;
}

.path-pill {
  width: max-content;
  max-width: 100%;
  padding: 12px 22px;
  border-radius: 999px;
  background: #eeeaff;
  color: #1f2233;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}


/* LIMITATIONS */

.limitations-section,
.why-section,
.product-section {
  width: min(100% - 128px, 1280px);
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
}

.limitations-card {
  min-height: 285px;
  padding: 40px 52px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow: 0 25px 60px rgba(36, 39, 80, 0.07);
  backdrop-filter: blur(18px);
}

.limitations-content h2 {
  margin: 0 0 38px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  color: #080914;
}

.limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 58px;
}

.limitation-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.x-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ff0022;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.x-icon img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(84%) saturate(3100%) hue-rotate(336deg) brightness(96%) contrast(92%);
}

.limitation-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #3f4553;
}

.limitations-image {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.limitations-image img {
  width: 390px;
  max-width: 100%;
  object-fit: contain;
}

/* WHY */

.why-card {
  padding: 34px 58px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow: 0 25px 60px rgba(36, 39, 80, 0.07);
  backdrop-filter: blur(18px);
}

.why-card h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
  color: #080914;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.why-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
}

.why-icon {
  width: 61px;
  height: 61px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 32px;
  height: 32px;
}

.why-icon.purple {
  background: #eeeaff;
}

.why-icon.green {
  background: #e8faef;
}

.why-icon.orange {
  background: #fff0e5;
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  color: #11121c;
}

.why-item p {
  margin: 0;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  color: #424858;
}

/* PRODUCT */

.product-section {
  padding-bottom: 60px;
}

.product-card {
  min-height: 360px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow: 0 25px 60px rgba(36, 39, 80, 0.07);
  backdrop-filter: blur(18px);
}

.product-image {
  height: 315px;
  border-radius: 14px;
  overflow: hidden;
  background: #11131a;
  box-shadow: 0 22px 50px rgba(20, 20, 45, 0.14);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding-right: 38px;
}

.product-content h2 {
  margin: 0 0 20px;
  font-size: 39px;
  line-height: 1.04;
  letter-spacing: 1px;
  font-weight: 700;
  color: #080914;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 13px;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #3f4553;
}

.product-list img {
  width: 14px;
  height: 14px;
}

.product-note {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #505767;
}



/* FOOTER */

.site-footer {
  width: min(100% - 128px, 1280px);
  margin: 0 auto;
  padding: 34px 0 42px;
  position: relative;
  z-index: 3;
}

.footer-inner {
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 60px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 21, 40, 0.07);
  box-shadow: 0 25px 60px rgba(36, 39, 80, 0.07);
  backdrop-filter: blur(18px);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-app-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: contain;
}

.footer-company-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  max-width: 430px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: #5a6272;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  color: #080914;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: #596174;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
  color: #5a52ff;
  transform: translateX(3px);
}

.footer-bottom {
  padding: 18px 6px 0;
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #7b8291;
}



/* RESPONSIVE */

@media (max-width: 1180px) {
  .mac-navbar {
    padding: 0 28px;
  }

  .mac-nav-links {
    gap: 20px;
  }

  .mac-hero {
    padding: 56px 32px 38px;
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-mockup {
    min-height: auto;
    justify-content: center;
  }

  .hero-mockup img {
    width: min(100%, 720px);
  }

  .feature-strip {
    width: calc(100% - 64px);
    grid-template-columns: repeat(2, 1fr);
  }

  .clipboard-how-section {
    width: calc(100% - 64px);
  }
  
  .clipboard-how-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  
  .clipboard-how-content {
    padding: 0 14px 16px;
  }


  .limitations-section,
  .why-section,
  .product-section {
    width: calc(100% - 64px);
  }

  .limitations-card,
  .product-card {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-content {
    padding-right: 14px;
  }

  .site-footer {
    width: calc(100% - 64px);
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .mac-navbar {
    height: auto;
    padding: 18px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .mac-nav-links {
    order: 3;
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mac-nav-links a {
    height: auto;
  }

  .nav-download {
    margin-left: auto;
  }

  .mac-hero {
    padding: 44px 22px 28px;
  }

  .hero-content h1 {
    font-size: 44px;
    letter-spacing: -2.8px;
  }

  .hero-text {
    font-size: 16px;
  }

  .feature-strip {
    width: calc(100% - 36px);
    padding: 24px;
    grid-template-columns: 1fr;
  }


  .clipboard-how-section {
    width: calc(100% - 36px);
  }
  
  .clipboard-how-card {
    padding: 14px;
  }
  
  .clipboard-how-image {
    height: 220px;
  }
  
  .clipboard-how-content h2 {
    font-size: 30px;
  }
  
  .path-pill {
    font-size: 13px;
    padding: 11px 16px;
  }


  .limitations-section,
  .why-section,
  .product-section {
    width: calc(100% - 36px);
  }

  .limitations-card,
  .why-card,
  .product-card {
    padding: 24px;
  }

  .limitations-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .limitations-content h2,
  .product-content h2 {
    font-size: 30px;
  }

  .why-card h2 {
    font-size: 25px;
    text-align: left;
  }

  .why-item {
    grid-template-columns: 58px 1fr;
  }

  .product-image {
    height: 230px;
  }


  .site-footer {
    width: calc(100% - 36px);
    padding-bottom: 32px;
  }
  
  .footer-inner {
    padding: 28px 24px;
  }
  
  .footer-logos {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}