:root {
  --ink: #18201c;
  --muted: #66706a;
  --line: #dbe0d9;
  --paper: #f7f7f3;
  --lime: #d9ff73;
  --mint: #bcebd3;
  --cream: #fffdf5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}

.page-shell {
  max-width: 1440px;
  margin: auto;
  padding: 0 5.5vw;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: -1px;
}

.brand-mark {
  background: var(--ink);
  color: var(--lime);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: Georgia;
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center; 
  gap: 34px;
  
  /* Centers the links perfectly within the nav bar */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0; /* Removes the old 80px margin */
  height: 100%;
}

.nav-links a, footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover, footer a:hover {
  color: var(--ink);
}

.profile {
  border: 0;
  background: var(--lime);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  font: 500 11px 'DM Mono';
  color: var(--ink);
}

.hero {
  padding: 120px 7vw 112px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  font: 500 11px 'DM Mono', monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero .eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 8px;
}

.hero h1 {
  font-size: clamp(46px, 6.4vw, 88px);
  letter-spacing: -.073em;
  line-height: .98;
  margin: 0;
  max-width: 900px;
  font-weight: 700;
}

.hero-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 450px;
  margin: 32px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button {
  padding: 14px 19px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button b, .section-heading b, footer b {
  margin-left: 8px;
}

.button-text {
  color: var(--ink);
  padding-left: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.quick-card {
  min-height: 178px;
  padding: 30px;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.04em;
}

.quick-card:last-child {
  border: 0;
}

.quick-card:hover {
  background: #f0f2ec;
}

.quick-card small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.card-icon {
  font-family: 'DM Mono';
  font-size: 21px;
  margin-bottom: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .8fr);
  gap: 32px;
  padding: 80px 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--cream);
}

.updates {
  padding: 35px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-heading h2, .today h2, .pulse h2 {
  font-size: 28px;
  letter-spacing: -.06em;
  line-height: 1.05;
  margin: 0;
}

.section-heading a, .today > a {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.update {
  display: grid;
  grid-template-columns: 53px 1fr 18px;
  gap: 19px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.date {
  font: 500 10px 'DM Mono';
  color: var(--muted);
  line-height: 1.3;
}

.date strong {
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
}

.tag {
  font: 500 10px 'DM Mono';
  color: #56655e;
  background: #e1ede7;
  padding: 4px 6px;
  border-radius: 2px;
}

.tag-green {
  background: #e6f6aa;
}

.tag-purple {
  background: #ece7fb;
}

.update h3 {
  font-size: 15px;
  letter-spacing: -.035em;
  margin: 8px 0 6px;
}

.update p, .pulse p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.update > b {
  align-self: center;
  font-size: 18px;
}

.side-stack {
  display: grid;
  gap: 20px;
}

.today {
  padding: 30px;
  background: var(--ink);
  color: #f8fbf2;
}

.today .eyebrow {
  color: #adb8af;
}

.today h2 {
  font-size: 30px;
  margin-bottom: 31px;
}

.meeting {
  border-top: 1px solid #3a433d;
  padding: 15px 0;
  display: flex;
  gap: 18px;
}

.meeting-time {
  font: 500 11px 'DM Mono';
  color: var(--lime);
  padding-top: 2px;
}

.meeting strong, .meeting small {
  display: block;
  font-size: 12px;
}

.meeting small {
  color: #a9b2ac;
  margin-top: 4px;
  font-size: 11px;
}

.today > a {
  color: var(--lime);
  display: block;
  margin-top: 11px;
}

.pulse {
  background: var(--mint);
  padding: 27px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  min-height: 190px;
}

.pulse h2 {
  font-size: 56px;
  margin: 4px 0;
}

.pulse h2 span {
  font-size: 23px;
}

.pulse p {
  max-width: 180px;
  color: #475b50;
}

.pulse-orbit {
  position: relative;
  width: 106px;
  height: 106px;
  margin-top: 16px;
}

.pulse-orbit i {
  position: absolute;
  border: 1px solid #619c7d;
  border-radius: 50%;
  inset: 0;
}

.pulse-orbit i:nth-child(2) {
  inset: 16px;
}

.pulse-orbit i:nth-child(3) {
  inset: 34px;
  background: var(--lime);
  border: 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  display: flex;
  gap: 25px;
  color: var(--muted);
  font: 11px 'DM Mono';
}

footer a {
  margin-left: auto;
  font-family: 'DM Mono';
  color: var(--ink);
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0 22px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 78px 0 72px;
  }
  .hero h1 {
    font-size: 51px;
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-card:nth-child(2) {
    border-right: 0;
  }
  .quick-card {
    min-height: 145px;
    padding: 22px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    padding: 45px 0;
    gap: 20px;
  }
  .updates {
    padding: 23px;
  }
  .update {
    grid-template-columns: 40px 1fr 14px;
    gap: 11px;
  }
  .update h3 {
    font-size: 14px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer a {
    margin-left: 0;
    width: 100%;
  }
}

/* CSS-only animated sky */
.sky-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .72) 0 2%, transparent 18%), linear-gradient(180deg, #edfaff 0%, #bce8ff 44%, #77b7d9 100%);
}

@media (max-width: 760px) {
  .sky-hero {
    min-height: calc(100svh - 88px);
  }
}

/* The workspace becomes night as the page continues below the sky. */
body {
  background: #090b0a;
}

.nav {
  background: linear-gradient(160deg, #edfaff, #c8edff);
  border-color: rgba(24, 32, 28, .14);
}

.quick-links, .content-grid, footer {
  background: #090b0a;
  border-color: #252a27;
}

.quick-card {
  color: #f4f6f0;
  border-color: #252a27;
}

.quick-card small {
  color: #9da59f;
}

.quick-card:hover {
  background: #161b18;
}

.card-icon {
  color: var(--lime);
}

.panel {
  background: #111512;
  border-color: #2b322e;
  color: #f4f6f0;
}

.section-heading a {
  color: var(--lime);
}

.section-heading h2, .update {
  color: #f4f6f0;
}

.update {
  border-color: #2b322e;
}

.date strong {
  color: #f4f6f0;
}

.update p, .pulse p {
  color: #a8b0aa;
}

.today {
  border-color: #2b322e;
}

.pulse {
  background: #1e3428;
  color: #f4f6f0;
}

.pulse p {
  color: #c5d4ca;
}

footer {
  color: #8f9991;
}

footer a {
  color: var(--lime);
}

/* Full-bleed page surfaces with consistent content gutters. */
.page-shell {
  max-width: none;
  padding: 0;
}

.nav {
  padding: 0 5.5vw;
}

.content-grid {
  padding: 80px 5.5vw;
}

footer {
  padding: 28px 5.5vw 40px;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0;
  }
  .nav {
    padding: 0 22px;
  }
  .hero {
    padding: 78px 22px 72px;
  }
  .content-grid {
    padding: 45px 22px;
  }
  footer {
    padding: 28px 22px 40px;
  }
}

.quick-links {
  background: linear-gradient(180deg, #77b7d9 0%, #446f77 48%, #172321 82%, #090b0a 100%);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: clamp(36px, 8vw, 150px);
  align-items: center;
  padding: clamp(80px, 12vw, 180px) 12vw;
  background: #090b0a;
}

.feature-first {
  background: linear-gradient(180deg, #77b7d9 0%, #34545a 40%, #090b0a 92%);
}

.feature-reverse .feature-visual {
  order: 2;
}

.feature-visual {
  aspect-ratio: 1.23 / 1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, .36);
}

.placeholder {
  background: linear-gradient(135deg, rgba(217, 255, 115, .15), rgba(119, 183, 217, .18) 48%, rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .13);
}

.feature-copy {
  max-width: 430px;
  color: #f4f6f0;
}

.feature-copy .eyebrow {
  color: #b5c4ba;
}

.feature-copy h2 {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: .98;
  letter-spacing: -.075em;
  margin: 0 0 25px;
}

.feature-copy > p:last-child {
  font-size: 15px;
  line-height: 1.75;
  color: #abb4ad;
  max-width: 360px;
}

.feature-reverse {
  padding-top: 80px;
}

@media (max-width: 760px) {
  .feature {
    grid-template-columns: 1fr;
    padding: 82px 22px;
    gap: 34px;
  }
  .feature-reverse .feature-visual {
    order: 0;
  }
  .feature-copy h2 {
    font-size: 46px;
  }
  .feature-reverse {
    padding-top: 42px;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.nav-scrolled {
  background: rgba(9, 11, 10, .92);
  border-color: #303631;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.nav-scrolled .brand, .nav-scrolled .nav-links a {
  color: #f4f6f0;
}

.nav-scrolled .brand-mark {
  background: var(--lime);
  color: var(--ink);
}

/* --- ASANA-STYLE MEGA MENU --- */
.products-menu {
  position: relative;
  height: 100%; /* Makes the hover area stretch to the bottom of the nav */
  display: flex;
  align-items: center;
}

.products-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 13px Manrope, Arial, sans-serif;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.products-toggle span {
  margin-left: 4px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-menu:hover .products-toggle span {
  transform: rotate(90deg);
  color: var(--ink);
}

.products-dropdown {
  position: absolute;
  top: calc(100% + 10px); /* This adds your exact 10px gap */
  left: 50%;
  width: 680px;
  padding: 24px;
  padding: 24px;
  background: linear-gradient(160deg, #edfaff, #c8edff);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(24, 32, 28, 0.08);
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(24, 32, 28, 0.12), 0 8px 16px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 15px) scale(0.98); 
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.products-menu:hover .products-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mega-menu-heading {
  font: 600 11px 'DM Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px 16px;
}

.products-dropdown a.mega-link {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px;
  color: var(--ink) !important;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.products-dropdown a.mega-link:hover {
  background: var(--mint);
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-text strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mega-text span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

/* --- SCROLLED NAVIGATION OVERRIDES --- */
.nav-scrolled .products-toggle {
  color: #f4f6f0;
}

.nav-scrolled .products-menu:hover .products-toggle span {
  color: var(--lime);
}

.nav-scrolled .products-dropdown {
  background: rgba(21, 26, 23, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.nav-scrolled .products-dropdown a.mega-link {
  color: #f4f6f0 !important;
}

.nav-scrolled .products-dropdown a.mega-link:hover {
  background: #252d28;
}

.nav-scrolled .products-dropdown a.mega-link:hover .mega-text span {
  color: #c5d4ca;
}

@media (max-width: 760px) {
  .products-menu {
    display: none;
  }
}

.product-intro {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: clamp(36px, 7vw, 130px);
  align-items: center;
  padding: 80px 12vw;
  background: linear-gradient(155deg, #16251e, #090b0a 72%);
}

.product-copy {
  color: #f4f6f0;
  max-width: 430px;
}

.product-copy .eyebrow {
  color: var(--lime);
}

.product-copy h1 {
  font-size: clamp(45px, 5.7vw, 82px);
  line-height: .96;
  letter-spacing: -.08em;
  margin: 0 0 28px;
}

.product-copy > p:last-child, .product-statement > p:last-child {
  font-size: 15px;
  line-height: 1.75;
  color: #adb7af;
}

.product-image {
  height: min(64vh, 720px);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, .42);
}

.product-statement {
  padding: clamp(100px, 14vw, 200px) 12vw;
  max-width: 900px;
  color: #f4f6f0;
}

.product-statement .eyebrow {
  color: var(--lime);
}

.product-statement h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.075em;
  margin: 0 0 28px;
}

.product-statement > p:last-child {
  max-width: 480px;
}

@media (max-width: 760px) {
  .product-intro {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 68px 22px 82px;
    gap: 42px;
  }
  .product-image {
    height: 52vw;
    min-height: 300px;
  }
  .product-copy h1 {
    font-size: 51px;
  }
  .product-statement {
    padding: 90px 22px;
  }
  .product-statement h2 {
    font-size: 47px;
  }
}

.quick-card {
  cursor: default;
}

.quick-card:hover {
  background: transparent;
}

.update {
  grid-template-columns: 53px 1fr;
}

.update > b {
  display: none;
}

.static-label, .calendar-label {
  font: 500 11px 'DM Mono';
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9da59f;
}

.calendar-label {
  display: block;
  margin-top: 18px;
  color: var(--lime);
}

.social-links {
  margin-left: auto;
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #343b36;
  border-radius: 50%;
  font-size: 10px;
  text-decoration: none;
}

@media (max-width: 760px) {
  .social-links {
    margin-left: 0;
    width: 100%;
  }
  .update {
    grid-template-columns: 40px 1fr;
  }
}

/* --- SALES PAGE STYLES --- */
.sales-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 12vw;
  align-items: center;
}

.sales-copy h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 24px;
}

.sales-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sales-form input, .sales-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  font-family: Manrope, sans-serif;
  font-size: 14px;
}

.sales-form button {
  padding: 16px;
  cursor: pointer;
  border: none;
  font-weight: 700;
}

/* Align the new link in the nav */
.sales-link {
  color: var(--ink) !important;
  font-weight: 700 !important;
}

@media (max-width: 760px) {
  .sales-page-layout {
    grid-template-columns: 1fr;
    padding: 60px 22px;
  }
}