@font-face {
  font-family: CursorGothic;
  src: url('./fonts/CursorGothic-Regular.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: CursorGothic;
  src: url('./fonts/CursorGothic-Italic.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: CursorGothic;
  src: url('./fonts/CursorGothic-Bold.woff2') format('woff2');
  font-display: swap;
  font-weight: 680;
  font-style: normal;
}

@font-face {
  font-family: CursorGothic;
  src: url('./fonts/CursorGothic-BoldItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: 680;
  font-style: italic;
}




:root {
  --bg:          #14120b;
  --surface:     #1b1913;
  --surface-alt: #201e18;
  --text:        #edecec;
  --text-muted:  rgba(237, 236, 236, 0.6);
  --border:      rgba(237, 236, 236, 0.2);
  --accent:      #f54e00;
  --font:        'CursorGothic', system-ui, sans-serif;
  --radius:      4px;
  --radius-pill: 999px;
  --max-w:       1300px;
  --max-w-outer: 1470px;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





.inner-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}


.section-outer {
  width: 100%;
  max-width: var(--max-w-outer);
  margin: 0 auto;
  padding: 67px 20px;
}




.card {
  background-color: var(--surface);
  border-radius: var(--radius);
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
}

.btn-primary {
  background-color: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--text);
  color: var(--bg);
}




.feature-link span,
.usecase-link span,
.join-link span,
.highlights-link,
.changelog-link {
  color: var(--accent);
  font-size: 16px;
  line-height: 24px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.feature-link span,
.join-link span {
  letter-spacing: -0.14px;
}

.usecase-link span {
  letter-spacing: 0.08px;
  display: inline-block;
}

.feature-link:hover span,
.usecase-link:hover span,
.join-link:hover span,
.highlights-link:hover,
.changelog-link:hover {
  opacity: 0.7;
}




#nav-header {
  width: 100%;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 52px;
  z-index: 10;
  background-color: var(--bg);
}

body {
  padding-top: 52px;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

.nav-container {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  height: 52px;
  margin-left: 65px;
  margin-right: 65px;
  z-index: 2;
}

#logo {
  display: block;
  line-height: 24px;
  font-size: 16px;
  cursor: pointer;
}

#logo img {
  width: 96px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  -webkit-font-smoothing: antialiased;
}

.nav-links a:hover {
  opacity: 0.7;
}

a {
  display: inline-flex;
  padding: 6px 15px;
  background-color: transparent;
  color: var(--text);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
  text-decoration: none;
}

.nav-buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 7.5px;
  height: 27.4px;
  font-size: 16px;
}


.download-btn {
  width: 87px;
  height: 27.4px;
}

.signup-btn {
  line-height: 14px;
}


.cta-button {
  padding: 21px 12px;
  font-size: 16px;
  width: 216px;
  height: 42px;
  margin-bottom: 7px;
}




#hero-section {
  display: block;
  padding: 112px 20px 67px;
  width: 100%;
  height: 1053px;
  max-width: 1430px;
  margin: 0 auto;
}

.container {
  display: block;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 20px;
  width: 1300px;
  height: 874px;
}

.cta {
  display: block;
  height: 138px;
  width: 658px;
  margin-bottom: 56px;
}

#hero-heading {
  display: block;
  height: 65px;
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: var(--text);
}

#hero-cta {
  display: flex;
  justify-content: start;
  align-items: center;
}

#hero-img img {
  width: 100%;
  height: auto;
  display: block;
}




#trusted-by {
  display: block;
  width: 100%;
  height: 176px;
  max-width: var(--max-w-outer);
  margin: 0 auto;
  padding: 0 20px 33px;
}

.logo-container {
  display: block;
  width: 100%;
  height: 100%;
  max-width: var(--max-w);
  margin-left: 65px;
  margin-right: 65px;
}

.logo-container h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.14px;
}

#logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 153.75px);
  gap: 10px;
  width: 100%;
  height: 100px;
}

.grid-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.grid-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7.5px;
  width: 100%;
  height: 100%;

  color: var(--text);
}

.grid-img img {
  display: block;
  height: 40px;
  overflow: clip;
}




.feature-section {
  width: 100%;
  padding: 67px 20px;
}

#feature-1,
#feature-2,
#feature-3 {
  width: 100%;
  padding: 0 20px;
}

.feature-container {

  margin: 0 auto 89px;
  height: 100%;
}

.feature-grid {

  display: grid;
  width: 100%;
  min-height: 680px;
}

.feature-layout {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 17.5px;
  width: 100%;
  height: 100%;
}

.feature-text {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 0 20px;
}

.feature-text h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 28.6px;
  letter-spacing: -0.11px;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.11px;
  color: var(--text-muted);
  text-wrap: pretty;
  margin-bottom: 18px;
}

.feature-link {
  display: inline-block;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.feature-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img img {
  width: 100%;
  max-width: 840px;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.feature-layout-reverse {
  flex-direction: row-reverse;
}

.feature-layout-reverse .feature-text {
  padding: 0 20px 0 30px;
}





.testimonial-section {
  max-width: var(--max-w-outer);
}

.t-heading {

  margin: 0 auto 56px;
}

.t-heading-text {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
}

.t-heading-text h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: -0.72px;
  color: var(--text);
  text-align: center;
}

.t-container {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.testimonial-card {

  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  overflow: clip;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text);
  margin: 0;
}

.author-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-muted);
  margin: 0;
}






.usecase-heading {
  max-width: 486px;
  margin-bottom: 22px;
}

.usecase-heading h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: -0.33px;
  color: var(--text);
  text-wrap: balance;
  margin: 0;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.usecase-card {

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.usecase-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 16px;
}

.usecase-card h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  margin: 0;
}

.usecase-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
  text-wrap: pretty;
  margin: 0 0 12px;
}

.usecase-link {
  display: block;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.usecase-card-image {
  width: 100%;
  padding: 0 20px 20px;
}

.usecase-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}






.changelog-container h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: -0.33px;
  color: var(--text);
  margin-bottom: 22px;
}

.changelog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.changelog-card {

  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.changelog-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.changelog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: rgba(237, 236, 236, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
}

.changelog-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-muted);
  margin: 0;
}

.changelog-card h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  margin: 0;
}

.changelog-link {
  display: block;
  width: fit-content;
  margin: 22px 0 0;
  padding: 0;
  text-decoration: none;
}




.join {
  width: 100%;
  padding: 67px 20px;
  max-width: var(--max-w-outer);
}

.join-container {

  margin: 0 auto 90px;
  height: 100%;
}

.join-grid {

  display: grid;
  width: 100%;
  min-height: 508px;
}

.join-layout {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 17.5px;
  width: 100%;
  height: 100%;
}

.join-text {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 0 2.5px;
}

.join-text h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 28.6px;
  letter-spacing: -0.11px;
}

.join-link {
  display: inline-block;
  text-decoration: none;
  padding: 0;
  margin-top: 22px;
}

.join-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-img img {
  width: 100%;
  max-width: 840px;
  height: auto;
  border-radius: var(--radius);
  display: block;
}




.highlights {
  width: 100%;
  max-width: var(--max-w-outer);
  margin: 67px auto 0;
  padding: 90px 20px;
  background-color: var(--surface);
}



.highlights-grid {
  display: flex;
  width: 100%;
  max-width: var(--max-w);
  gap: 50px;
  margin: 0;
  padding: 0;
}

.highlights-left {
  width: 325px;
  flex-shrink: 0;
}

.highlights-left h2 {
  position: sticky;
  top: 64px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--text);
  margin: 0;
}

.highlights-right {
  width: 650px;
}

.highlights-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  background-color: var(--surface-alt);
}

.highlights-card-content {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 14px 15px 15px;
}

.p1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--text);
  text-wrap: pretty;
  margin: 0;
  cursor: pointer;
}

.p2 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.08px;
  color: var(--text-muted);
  text-wrap: pretty;
  margin: 0;
}

.highlights-meta {
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--text-muted);
  margin-top: 22px;
  cursor: pointer;
}

.highlights-link {
  display: inline-flex;
  margin-top: 22px;
  padding: 0;
  text-decoration: none;
}




.cta2 {
  width: 100%;
  padding: 134px 20px;
  max-width: var(--max-w-outer);
}



.cta2-content {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  text-align: center;
}

.cta2-content h2 {
  font-size: 72px;
  font-weight: 400;
  line-height: 79.2px;
  letter-spacing: -2.16px;
  text-align: center;
  color: var(--text);
  text-wrap: balance;
  margin: 0 0 22px;
}

.btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}




footer {
  position: relative;
  width: 100%;
  max-width: var(--max-w-outer);
  margin: 0 auto;
  padding: 67px 20px 30px;
  background-color: var(--surface);
}

.footer-container {

  margin: 0 auto 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px 10px;
}

.footer-grid h3 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0.14px;
  color: var(--text-muted);
  margin: 0;
  padding-bottom: 5px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: 0;
  padding: 0;
}

.footer-grid a {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 21px;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-grid a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.14px;
  color: var(--text-muted);
  margin: 0;
}
