:root {
  --page-width: 940px;
  --color-primary: #00D;
  --color-secondary: #2727E6;
  --color-text: #0a0a0a;
  --color-text-secondary: #b7b7b7;
  --blue-gradient: linear-gradient(114deg, #00D 1.82%, #2727E6 113.76%);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


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

html {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
              Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
}

body {
  background: #ffffff;
  line-height: 1.5;
}

h1, h2 {
  background: linear-gradient(114deg, #00D 1.82%, #2727E6 113.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

p {
  max-width: 520px;
  margin-bottom: 16px;
}

ul {
  list-style-type: disc;
  margin-left: 40px;
}

li {
  margin-bottom: 10px;
}

section {
  margin-bottom: 240px;
}

.center {
  text-align: center;
}

.blockquote p {
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  margin-top: 16px;
  margin-left: 16px;
  margin-right: 16px;
  text-align: left;
}

/* Layout container */
.container {
  max-width: var(--page-width); /* change to 1440px if you want */
  margin: 0 auto;
  padding: 0 32px;
}

/* Header / navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(270deg, #101319 0%, #0A0A0B 100%);
  border-bottom: 1px solid #eee;
}

.navbar {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 20px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
}
.black .logo {
  color: var(--color-text-secondary);
}

.nav-right a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}
.black .nav-right a {
  color: var(--color-text-secondary);
}

.nav-right a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: .9fr 1.1fr;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  margin: 120px auto 240px;
  max-width: 800px;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
  min-height: 400px;
}


.hero-text p {
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1aff;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #333;
  max-width: 520px;
}

.hero-image img.square,
section img.square {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 40px 20px rgba(255, 255, 255, 0.08);
}

.hero-image img {
  max-height: 500px;
  width: 100%;
  max-height: 100vh;
  min-height: 500px;
}

section img {
  max-height: 500px;
  width: 100%;
}

img.no-shadow {
  box-shadow: none;
}

.grid-1-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.grid-2-columns.align-center {
  align-items: center;
}

.grid-2-columns-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.button-container {
  display: flex;
  gap: 16px;
}

.button-primary {
  background: var(--blue-gradient);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eee;
  margin-top: 96px;
}

.footer-inner {
  max-width: 1200px; /* keep in sync with navbar/container */
  margin: 0 auto;
  padding: 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  font-size: 14px;
  color: var(--color-text);
}
.black .site-footer p {
  color: var(--color-text-secondary);
}

.footer-right a {
  margin-left: 24px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
}
.black .footer-right a {
  color: var(--color-text-secondary);
}
.footer-right a:hover {
  text-decoration: underline;
}

section.center>* {
  padding: 80px;
  max-width: 600px;
  margin: auto;
}

.black {
  background: linear-gradient(270deg, #101319 0%, #0A0A0B 100%);
  color: #fff;
}
.black * {
  color: #fff;
}
.black h1,
.black h2 {
  color: #fff;
  background: none;
  background-clip: text;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
}
.black h1.force-blue {
  background: linear-gradient(114deg, #00D 1.82%, #2727E6 113.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.black p,
.black li {
  color: var(--color-text-secondary);
}

/* Footer responsive */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-right a {
    margin-left: 0;
    margin-right: 16px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }
}
