:root {
  --bg: #07100c;
  --bg-soft: #0d1712;
  --card: #131d17;
  --green: #20d47a;
  --green-dark: #0b9f57;
  --text: #dfe6e2;
  --muted: #9fb0a7;
  --border: #203128;
  --max-width: 1180px;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}




.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(7, 16, 12, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-v {
  color: var(--text);
}

.logo-g {
  color: var(--green);
  margin-left: -5px;
}

.logo-origin {
  color: var(--text);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}




.hero {
  padding: 110px 0 90px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  margin: 14px 0 24px;
}

.hero h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 0 24px;
  font-weight: 500;
}

.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}




.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--green);
  color: #04150c;
  font-weight: 700;
}

.button:hover {
  background: #2ee88a;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  background: var(--bg-soft);
}




.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 16px;
}

.section-heading p {
  color: var(--muted);
}




.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(32, 212, 122, 0.12);
  display: grid;
  place-items: center;
  color: var(--green);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 212, 122, 0.45);
  background: #152119;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(32, 212, 122, 0.05);
}



.about-intro {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}


.page-content {
  max-width: 820px;
}

.page-content>p:first-child {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 42px;
}

.page-content h2 {
  margin: 48px 0 16px;
  font-size: 1.45rem;
  color: var(--text);
  line-height: 1.3;
}

.page-content p {
  max-width: 760px;
  line-height: 1.75;
}

.page-content h2+p {
  margin-top: 0;
}


.page-content h2:not(:first-of-type) {
  padding-top: 10px;
}

/* Slightly softer hero spacing */
.page-hero {
  padding: 78px 0 42px;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 12px 0 0;
  line-height: 1.05;
}




@media (max-width: 600px) {

  .about-intro {
    margin-top: 22px;
    font-size: 1rem;
  }

  .page-content {
    max-width: none;
  }

  .page-content>p:first-child {
    margin-bottom: 34px;
  }

  .page-content h2 {
    margin-top: 38px;
    font-size: 1.3rem;
  }

  .page-hero {
    padding: 62px 0 34px;
  }

  .page-hero h1 {
    line-height: 1.08;
  }
}




.project {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}




.project-panel {
  background: linear-gradient(145deg,
      rgba(32, 212, 122, 0.14),
      rgba(32, 212, 122, 0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  min-height: 360px;
  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.project-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 212, 122, 0.4);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}




.project-panel small {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-panel h3 {
  font-size: 2rem;
  margin: 10px 0 0;
}

.project-panel p {
  max-width: 470px;
  margin: 14px 0 24px;
  color: var(--muted);
}




.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(32, 212, 122, 0.25);
  border-radius: 999px;
  background: rgba(32, 212, 122, 0.08);
  color: #bdebd2;
  font-size: 0.78rem;
}




.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  margin: 14px 0 24px;
}

.project-copy p {
  color: var(--muted);
}




.project-list {
  padding: 0;
  list-style: none;
}

.project-list li {
  margin: 12px 0;
  color: var(--muted);
}

.project-list li::before {
  content: "→";
  color: var(--green);
  margin-right: 10px;
}




@media (max-width: 850px) {

  .project {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .project-copy {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {

  .project-panel {
    min-height: 320px;
    padding: 26px;
  }

  .project-panel h3 {
    font-size: 1.7rem;
  }

  .project-tags span {
    font-size: 0.74rem;
  }
}



.final-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 18px;
}

.final-cta p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 28px;
}

.final-cta .button {
  margin-top: 4px;
}



.page-hero {
  padding: 90px 0 50px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  margin: 10px 0;
}

.page-content {
  max-width: 760px;
  padding-bottom: 90px;
}

.page-content h2 {
  margin-top: 42px;
}

.page-content p,
.page-content li {
  color: var(--muted);
}

.page-hero .container {
  max-width: 900px;
}

.about-note {
  max-width: 760px;
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(32, 212, 122, 0.05);
  border-radius: 0 10px 10px 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-note+p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}




.page-content.legal-page {
  max-width: 900px;
}

.legal-updated {
  margin: 0 0 46px;
  color: #718179;
  font-size: 0.9rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
  margin-bottom: 50px;
}

.legal-column h2,
.legal-block h2 {
  margin: 0 0 18px;
  color: #adb8b2;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.legal-column p,
.legal-column li,
.legal-block p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-column p {
  margin: 0 0 20px;
}

.legal-column ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-column li {
  margin-bottom: 7px;
}

.legal-column li::marker {
  color: var(--green);
}

.legal-block {
  margin-bottom: 42px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block p {
  margin: 0 0 18px;
}

.legal-block a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: #2ee88a;
}

.legal-page {
  max-width: 900px;
}



.contact-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-section {
  padding: 10px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}




.contact-info {
  padding-top: 20px;
}

.contact-info h2 {
  margin: 12px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.contact-info p {
  color: var(--muted);
}

.contact-details {
  margin: 34px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: #718179;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-details a {
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-details a:hover {
  color: #2ee88a;
}

.contact-note {
  font-size: 0.92rem;
}




.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-box:hover {
  border-color: rgba(32, 212, 122, 0.3);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading h2 {
  margin: 10px 0 0;
  font-size: 1.65rem;
}




.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group label span {
  color: #718179;
  font-size: 0.8rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: var(--bg-soft);
  color: var(--text);
  font: inherit;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 48px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #0f1a14;
  box-shadow: 0 0 0 3px rgba(32, 212, 122, 0.1);
}

.form-group textarea::placeholder {
  color: #718179;
}

.form-group select {
  cursor: pointer;
}

.contact-submit {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-privacy {
  max-width: 620px;
  margin: 0;
  color: #718179;
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy a:hover {
  color: var(--green);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(32, 212, 122, 0.65);
  border-radius: 10px;
  background: rgba(32, 212, 122, 0.18);
  color: var(--green);
  font-weight: 700;
  line-height: 1.6;
}



.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid var(--border);
  border-radius: 9px;

  background: var(--bg-soft);
  color: var(--text);

  font: inherit;
  text-align: left;
  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(32, 212, 122, 0.45);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(32, 212, 122, 0.1);
}

.custom-select-trigger svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;

  display: none;

  padding: 6px;

  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;

  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);

  z-index: 50;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-options button {
  width: 100%;
  padding: 11px 12px;

  border: 0;
  border-radius: 7px;

  background: transparent;
  color: var(--muted);

  font: inherit;
  text-align: left;
  cursor: pointer;

  transition:
    background 0.16s ease,
    color 0.16s ease;
}

.custom-select-options button:hover,
.custom-select-options button:focus {
  background: rgba(32, 212, 122, 0.12);
  color: var(--text);
  outline: none;
}

.custom-select-options button.selected {
  background: rgba(32, 212, 122, 0.16);
  color: var(--green);
}



@media (max-width: 850px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-info {
    padding-top: 0;
    max-width: 720px;
  }
}

@media (max-width: 600px) {

  .contact-intro {
    margin-top: 22px;
    font-size: 1rem;
  }

  .contact-section {
    padding-bottom: 65px;
  }

  .contact-box {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
    text-align: center;
  }
}




.site-footer {
  border-top: 1px solid var(--border);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand strong {
  letter-spacing: 0.08em;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 30px;
  color: #718179;
  font-size: 0.82rem;
  text-align: right;
}



@media (max-width: 850px) {

  .grid-3,
  .project {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}




@media (max-width: 600px) {

  .nav {
    min-height: 66px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.45rem;
  }

  .section {
    padding: 65px 0;
  }

  .page-hero {
    padding: 65px 0 35px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .page-content {
    padding-bottom: 65px;
  }

  .legal-updated {
    margin-bottom: 35px;
  }

  .legal-column h2,
  .legal-block h2 {
    font-size: 1.25rem;
  }

  .legal-block {
    margin-bottom: 34px;
  }

  .project-panel {
    min-height: 320px;
    padding: 26px;
  }

  .project-panel h3 {
    font-size: 1.7rem;
  }

  .footer-bottom {
    text-align: right;
  }
}