/* styles.css
   Minimal, modern responsive layout for the Momentum landing page.
   Customize the --accent color and font sizes below.
*/

:root{
  --bg: #ffffff;
  --surface: #f7f8fb;
  --text: #1f2933;
  --muted: #6b7280;
  --accent: #03b3a9; /* teal-ish accent */
  --accent-700: #029589;
  --radius: 12px;
  --container: 1100px;
  --shadow: 0 6px 18px rgba(31,41,51,0.06);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}

/* container */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

/* header */
.site-header{
  border-bottom:1px solid #eef2f4;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  position:sticky;
  height: 90px;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  padding-top: 20px;
  height:72px;
  justify-content:space-between;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text)
}

.brand-logo{
  width: 70px;
  height:70px;
  display:block
}

.brand-name {
  font-weight:600;
  font-size:25px}

.nav {
  display:flex;
  gap:20px;
  align-items:center
}

.nav a {
  color:var(--muted);
  text-decoration:none;
  font-weight:500
}

.nav a.current-page {
  position: relative;
  font-weight: 600;
}

.nav a.current-page::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
  transform: scaleX(1); 
  transform-origin: left;
}

.nav a .current-page {
  color: var(--accent)
}

.actions .btn-ghost{
  padding:8px 12px;
  border-radius:8px;
  border:1px solid #e6e9ec
}

/* hero */

.hero {
  height: 50vh;
}

.page-title {
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--text);
  font-size: 50px;
}

.hero-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.page-description {
  text-align: center;
  width: 50%;
  color: var(--text);
}


/*  Features */

.features {
  padding-left: 12%;
  padding-right: 12%;
}

.features h1 {
  color: var(--text);
  font-size: 35px;
  padding-top: 25px;
  position: relative;
  text-underline-offset: var(--offset, 0.3em);
  text-decoration: underline 0.15em #03b3a9;
  padding-bottom: 25px;
}

.features h2 {
  color: var(--text);
  font-size: 25px;
  padding-top: 35px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 2rem;
  padding: 2rem;
}

.grid-item {
  background-color: var(--bg);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.grid-item p {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.grid-item p span {
  font-size: 16px;
  font-weight: normal;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* footer */
.site-footer{
  background:var(--accent);
  color:white;
  padding:28px 0 14px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.footer-title {
    color: var(--text);
    font-weight: bold;
    font-size: 55px;
}

.footer-subtitle {
    color: var(--text);
    font-weight: lighter;
    font-size: 25px;
}

.footer-div {
    margin-top: 50px;
    margin-bottom: 70px;
}

.footer-div2 {
    margin-top: 50px;
    margin-bottom: 20px;
}