@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --fg: #f2f2f2;
  --muted: #737373;
  --accent: #ed6b1c; /* Using the SetuprAI orange instead of the portfolio amber */
  --border: rgba(255, 255, 255, 0.1);
  --font-display: "Anton", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

/* Portfolio noise background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mono-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}

p {
  color: var(--fg);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

a {
  color: var(--fg);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

nav .logo {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 12px;
}

nav .logo img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

nav .links {
  display: flex;
  gap: 2rem;
}

nav .links a {
  font-family: var(--font-mono);
  color: var(--fg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
}

.hero p {
  max-width: 600px;
  font-size: 1.25rem;
  color: var(--muted);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Marquee */
.marquee-wrapper {
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background: var(--bg);
  margin-bottom: 4rem;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  animation: scroll-left 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item img {
  height: 14px;
  width: auto;
  opacity: 0.7;
}

.marquee-diamond {
  color: var(--muted);
  font-size: 0.5rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--fg);
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--fg);
}

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

.btn-secondary:hover {
  border-color: var(--fg);
}

/* Sections */
.section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

/* Text Section (Heavy Generalist Style) */
.text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.text-section .text-left h2 {
  font-size: 5rem;
  line-height: 0.9;
  margin-top: 1rem;
}

.text-section .text-right {
  padding-top: 2rem;
}

.text-section .text-right p {
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .text-section {
    grid-template-columns: 1fr;
  }
}

/* Platforms Grid */
.text-center {
  text-align: center;
}

.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.text-center .mono-subtitle {
  text-align: center;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logos-grid img {
  height: 48px;
  width: auto;
}

.logos-grid.coming-soon img, .logos-grid.coming-soon .text-logo {
  height: 32px;
  opacity: 0.5;
  filter: grayscale(100%);
}

.text-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 32px;
  color: var(--muted);
}

/* Features List - How I Work style */
.list-brutalist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4rem;
  column-gap: 4rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .list-brutalist {
    grid-template-columns: 1fr;
  }
}

.list-item {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  position: relative;
}

.list-item .item-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 2rem;
  text-align: center;
}

.list-item h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.list-item p {
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 0;
}

/* Features Grid - Brutalist */
.grid-brutalist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

@media (max-width: 900px) {
  .grid-brutalist {
    grid-template-columns: 1fr;
  }
}

.grid-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.grid-cell .cell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.grid-cell .cell-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.grid-cell .cell-dot {
  width: 6px;
  height: 6px;
  background: var(--fg);
  border-radius: 50%;
}

.grid-cell h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid-cell p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0;
}

.grid-cell .pricing-features {
  flex-grow: 1;
}

/* Pricing Toggle */
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

@media (max-width: 600px) {
  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.pricing-toggle {
  display: flex;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  border: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--fg);
  color: var(--bg);
}

/* Footer */
footer {
  border-top: 1px solid var(--fg);
  padding: 4rem 0;
  margin-top: 6rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-meta {
    text-align: left !important;
  }
  .footer-links {
    justify-content: flex-start !important;
  }
}

.footer-brand h2 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  max-width: 400px;
  font-size: 1rem;
  color: var(--fg);
  margin: 0;
}

.footer-meta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--fg);
}

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

.footer-sys {
  margin-top: 0.75rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 4rem auto;
}

.legal-content h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
