/*
Theme Name: Torvexis
Version: 1.3
*/
:root {
 --primary: #2B3328;
 --accent: #5E6946;
 --dark: #3C493A;
 --attention: #E97451;
 --background: #C1C1BB;
 --surface: #F1F1EA;
 --white: #EBEDEF;
 --black: #1E1E1E;
 --text: #2B3328;
 --muted: #7D7D75;
 --words: #CFBFB0;
}
body {
 background-color: var(--background);
 color: var(--text);
 font-family: 'Segoe UI', Roboto, sans-serif;
 line-height: 1.6;
 margin: 0;
 padding: 0;
}
h1, h2, h3, h4, h5, h6 {
 color: var(--primary);
 margin: 0 0 0.5em;
 font-weight: 600;
}

a {
 color: var(--primary);
 text-decoration: none;
}

a:hover {
 text-decoration: underline;
}

.inline-link {
  color: inherit;
}
.sticky-wrapper {
 position: sticky;
 top: 0;
 z-index: 999;
 background: transparent;
 display: flex;
 justify-content: center;
 padding: 0.5rem 1rem;
}

.nav-inner {
 background: var(--white);
 border-radius: 16px;
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 padding: 0.75rem 1.5rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
 max-width: 1200px;
 width: 100%;
}

.logo {
 font-weight: bold;
 font-size: 1.3rem;
 color: var(--primary);
}

.nav-inner nav {
 display: flex;
 gap: 1.5rem;
}

.nav-inner nav a {
 color: var(--text);
 text-decoration: none;
 font-weight: 500;
}

.nav-inner nav a:hover {
 color: var(--primary);
 text-decoration: underline;
}

.nav-inner nav a:focus {
 outline: 2px solid var(--attention);
 outline-offset: 2px;
}
.hero {
  background: var(--primary);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.product-name {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 -1rem;
  letter-spacing: -0.02em;
}

.product-by {
  font-size: 0.95rem;
  color: var(--words);
  font-weight: 500;
  margin: 0.25rem 0 1.5rem;
  letter-spacing: 0.05em;
}

.tagline {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-screenshot {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-screenshot img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-acronym {
  font-size: 0.60rem;
  color: var(--white);
  margin: 0.0rem 0 0;
  letter-spacing: 0.03em;
}
.section-block {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--black);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

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

.feature-text {
  flex: 1;
}

.feature-text-narrow {
  flex: 0 0 260px;
}

.feature-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.75em;
  border-radius: 4px;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--background);
}

.feature-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--black);
}

.feature-image img {
  width: 100%;
  display: block;
}

.feature-image-duo {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
}

.feature-image-duo-primary {
  flex: 1;
  max-width: 400px;
}

.feature-image-duo-primary img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--black);
  display: block;
}

.feature-image-duo-secondary {
  flex: 0 0 140px;
}

.feature-image-duo-secondary img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--black);
  display: block;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.cap-item {
  background: var(--surface);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cap-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.cap-item p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
}
.agentic-placeholder {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.7;
}
.arch {
  background: var(--primary);
  padding: 3rem 1.5rem;
}

.arch-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.arch h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.arch p {
  color: var(--white);
  margin-bottom: 2rem;
}

.arch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.arch-badge {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: 6px;
  border: 1px solid var(--accent);
}
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--accent);
  font-size: 0.85rem;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  cursor: zoom-out;
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.active {
  display: flex;
}

:target {
  scroll-margin-top: 115.33px;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .product-name {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .hero-screenshot img {
    height: 220px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }

  .feature-text-narrow {
    flex: 1;
  }

  .feature-image {
    width: 100%;
  }

  .feature-image-duo {
    flex-direction: column;
    width: 100%;
  }

  .feature-image-duo-primary {
    max-width: 100%;
  }

  .feature-image-duo-secondary {
    flex: auto;
    width: 100%;
  }

  .nav-inner nav {
    gap: 0.75rem;
  }

  .nav-inner nav a {
    font-size: 0.9rem;
  }
  .nav-inner {
    flex-wrap: wrap;
	   justify-content: center;
  }

  .logo {
    flex: 1;
   	width: 100%;
  	 text-align: center;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }

  nav a {
    font-size: 0.8rem;
  }
}
