@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */

:root {
  /* Light theme with dark yellow primary */
  --bg: #ffffff;
  --surface: #F7F9FC;
  --muted-surface: #ffffff;
  --text: #0E1325;
  --muted: #5A6B86;
  --primary: #feeb1f;     /* dark yellow/gold */
  --primary-2: #bcb400;   /* deeper gold for gradients */
  --accent: #B7791F;      /* warm accent */
  --border: rgba(16, 24, 40, 0.10);
  --ring: rgba(200, 144, 0, 0.35);
  --shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 .5rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* Header / Nav */
/* ============================= */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* not space-between */
  gap: 16px;
  height: 72px;
}

/* push everything after the logo to the right */
.brand { 
  margin-right: auto; 
}

/* optional: hide burger on desktop */
@media (min-width: 992px) {
  .hamburger { display: none; }
}

.brand .dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 3px rgba(200, 144, 0, 0.20);
}

.header-logo img {
	width: 215px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #344054;
  font-weight: 600;
  font-size: .98rem;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: #FFF6D6;
  color: #3D2E00;
}

.cta {
	display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(200, 144, 0, 0.25);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #344054;
    box-shadow: var(--shadow);
    font-size: .98rem;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 144, 0, 0.25);
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #111827;
  padding: 8px;
  border-radius: 10px;
}

.hamburger:hover {
  background: #FFF6D6;
}

@media (max-width: 900px) {
  .nav-links {
	display: none;
	position: absolute;
	right: 33px;
	top: 73px;
	padding: 10px;
	flex-direction: column;
	background: #f4c811;
	border: 1px solid var(--border);
	/* border-radius: 14px; */
	width: min(92vw, 198px);
	box-shadow: var(--shadow);
	line-height: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links a {
    color: #344054;
    font-weight: 600;
    font-size: 18px;
    padding: 3px 12px;
    border-radius: 10px;
  }
}

@media (max-width: 900px) {
  .nav {
    justify-content: flex-start; /* reset so brand stays left */
  }

  .brand {
    margin-right: auto; /* push everything else away */
  }

  .hamburger {
    margin-left: auto;  /* force hamburger to far right */
  }
}

/* ============================= */
/* Hero */
/* ============================= */

.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(200, 144, 0, 0.16), transparent 60%),
    radial-gradient(700px 350px at 90% 0%, rgba(255, 187, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff, #F7F9FC 60%);
}

.hero .inner {
  padding: clamp(56px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);  
}

.kicker {
  color: #baac11;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero h1 strong {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #4d4d4d;
  border: 0;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 6px 24px rgba(200, 144, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(200, 144, 0, 0.35);
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: #0E1325;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-ghost:hover {
  background: #FFF6D6;
}

.hero-card {
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .25rem;
}

.hero-card p {
  font-size: .95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero .inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================= */
/* Logos strip */
/* ============================= */

.logos {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #FBFDFF;
}

.logos .row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  opacity: .8;
}

.logo {
  height: 22px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(997%) hue-rotate(183deg) brightness(93%) contrast(89%);
  opacity: .55;
}

@media (max-width: 900px) {
  .logos .row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }
}

/* ============================= */
/* Sections */
/* ============================= */

.section {
  padding: clamp(48px, 8vw, 70px) 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}



.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1000px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
  }
}

  /* Responsive layout for pricing only */
  #pricing .pricing-grid {
    display: flex;
    flex-wrap: wrap;              /* allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
  }
  #pricing .pricing-grid .card {
    flex: 1 1 260px;              /* grow, shrink, base width */
    max-width: 320px;             /* keeps cards readable on small screens */
  }

  /* 2 across on medium screens */
  @media (min-width: 640px) {
    #pricing .pricing-grid .card {
      flex: 1 1 300px;
    }
  }

  /* 3 across on wider screens */
  @media (min-width: 992px) {
    #pricing .pricing-grid .card {
      flex: 1 1 30%;
      max-width: 360px;
    }
  }

  /* 4 across on large/desktop screens */
  @media (min-width: 1200px) {
    #pricing .pricing-grid {
      flex-wrap: nowrap;          /* force a single row */
    }
    #pricing .pricing-grid .card {
      flex: 1 0 0;                /* evenly distribute across the row */
      max-width: none;
    }
  }

.card {
  padding: 22px;
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(184 181 0 / 38%), rgb(223 228 0 / 65%));
  border: 1px solid var(--border);
  margin-bottom: 10px;
  color: #6a6a6a;
}

.pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3D2E00;
  background: #fffb18;
}

/* ============================= */
/* Two-up feature */
/* ============================= */

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;	
}

@media (max-width: 900px) {
  .two {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* CTA band */
/* ============================= */

.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FDF7E8, #ffffff);
}

.cta-flex {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .cta-flex {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* Footer */
/* ============================= */

footer {
  padding: 28px 0;
  color: #475467;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot a {
  color: #475467;
}

.foot a:hover {
  color: #111827;
}

/* ============================= */
/* Forms */
/* ============================= */

input,
textarea {
  background: #fff;
  border: 1px solid var(--border);
  color: #0E1325;
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  font-family: inherit;  
  font-size: 12px;	
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(200, 144, 0, 0.45);
}

/* ============================= */
/* Checkboxes */
/* ============================= */

input[type="checkbox"] {
  /* Reset inherited styles */
  /*appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;*/
  width: 13px;
  height: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  /*position: relative;*/
  background: #fff;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
  background: #baac11; /* your brand yellow */
  border-color: #baac11;
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

select {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  font-family: inherit;  
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;  
  cursor: pointer;
}

/* Dropdown arrow */
select {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px; /* space for arrow */
}

select:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
  border-color: rgba(200, 144, 0, 0.45);
}


/* ============================= */
/* Focus styles */
/* ============================= */

:where(a, button, [role="button"]) {
  outline: none;
}

:where(a, button, [role="button"]):focus-visible {
  box-shadow: 0 0 0 4px var(--ring);
}

/* ============================= */
/* Hero image (mobile full screen) */
/* ============================= */

#image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it covers without distortion */
  display: block;
}

/* soft dark overlay for contrast */
#image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(14,19,37,.25), rgba(14,19,37,.55)); */
  pointer-events: none;
}

/* centered slogan */
#image .slogan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  text-align: center;
}

#image .slogan h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 1);
}

/* optional: highlight key words in brand color */
#image .slogan strong {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.image-box {
  display: inline-block;     /* keeps image and text together */
  text-align: center;        /* centers the caption */
  margin: 10px;
}

.image-box img {
  border: 2px solid #333;    /* border around image */
  border-radius: 5px;        /* optional: rounded corners */
  max-width: 200px;          /* control image size */
}

.image-box .caption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.header-auth { position: relative; margin-left: 12px; }
.header-auth #login-toggle { white-space: nowrap; }
.auth-dropdown {
	position: absolute;
    top: calc(100% + 26px);
    right: 0;
    width: 300px;
    max-width: min(92vw, 420px);
    /* background: #fff; */
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
    padding: 0px;
    z-index: 1000;
}
@media (max-width: 640px) {
  .auth-dropdown { right: 8px; }
}

/*Left nav*/
    .layout {
      display: grid;
      grid-template-columns: 215px 1fr;
      gap: 20px;
    }
    .sidebar {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      padding: 10px 0;      
	  position: sticky;
	  top: 145px;        /* distance from top when sticking */
	  height: fit-content;	
    }
    .sidebar hr {      
       border-bottom: 0px solid #eee
    }
    .side-nav {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .side-nav li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      color: #222;
      text-decoration: none;
      font-weight: 500;
      border-left: 3px solid transparent;
	  font-size: 14px;	
    }
    .side-nav li a:hover {
      background: #f7f7f7;
    }
    .side-nav li a.active {
      border-left-color: #1a73e8;
      background: #eef4ff;
      color: #1a73e8;
    }
    @media (max-width: 900px){
      .layout { grid-template-columns: 1fr; }
    }

    .task-status {
		font-size: 11px;
		line-height: 1.5;
		margin-left: 30px;
		margin-right: 20px;		
		color: #347bfa;
    }
  /*Left nav*/

