:root {
  --page-bg: #020617;
  --shell-bg: transparent;
  --card-bg: #020617;
  --card-elevated-bg: #020617;
  --border-soft: rgba(148, 163, 184, 0.35);
  --border-strong: rgba(148, 163, 184, 0.7);
  --accent: #a3e635;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 1.1rem;
  --radius-md: 0.6rem;
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.9);
  --transition: 0.18s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.28), transparent 60%),
    #020617;
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.gl-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.gl-main {
  min-height: 60vh;
}

/* Header & nav */

.gl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.94));
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.gl-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.5rem;
  padding: 0.6rem 0;
}

.gl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.gl-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ecfeff 0, #a3e635 38%, #4ade80 65%, #0f172a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.7);
}

.gl-logo-g {
  font-weight: 800;
  font-size: 1.1rem;
  color: #020617;
  letter-spacing: 0.02em;
}

.gl-logo-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #020617;
  right: 8px;
  bottom: 8px;
  border: 2px solid #ecfeff;
}

.gl-logo-text {
  display: flex;
  flex-direction: column;
}

.gl-logo-title {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.gl-logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.gl-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.84rem;
}

.gl-nav a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}

.gl-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.gl-nav a:hover {
  color: var(--text-main);
}

.gl-nav a:hover::after {
  width: 100%;
}

.gl-nav-toggle {
  display: none;
  justify-self: end;
  background: none;
  border: 1px solid rgba(75, 85, 99, 0.9);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.gl-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  margin: 3px 0;
}

/* Sections & typography */

.gl-section {
  padding: 3rem 0;
}

.gl-section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border-block: 1px solid rgba(31, 41, 55, 0.95);
}

.gl-section-border {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(15, 23, 42, 0.96);
}

.gl-section-header {
  margin-bottom: 1.5rem;
}

.gl-section-header h1,
.gl-section-header h2 {
  margin: 0 0 0.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gl-section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gl-section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
}

h2 {
  font-size: 1.32rem;
}

h3 {
  font-size: 1rem;
}

.gl-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* Hero */

.gl-hero {
  padding-top: 2.4rem;
}

.gl-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.gl-hero-copy {
  max-width: 34rem;
}

.gl-hero-copy h1 {
  line-height: 1.18;
}

.gl-hero-lead {
  color: var(--text-muted);
  margin: 0.6rem 0 1.1rem;
  font-size: 0.95rem;
}

.gl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.gl-hero-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.gl-hero-media {
  position: relative;
}

.gl-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.4), rgba(15, 23, 42, 0.96));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gl-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    rgba(148, 163, 184, 0.18) 1px,
    transparent 1px
  );
  background-size: 100% 24px;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.gl-hero-card img {
  position: relative;
  border-radius: inherit;
  mix-blend-mode: screen;
}

/* Buttons */

.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.58rem 1.45rem;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.gl-btn-primary {
  background: var(--accent);
  color: #020617;
  box-shadow: 0 16px 40px rgba(163, 230, 53, 0.5);
}

.gl-btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.gl-btn-ghost {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--text-main);
}

.gl-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* Layout grids */

.gl-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.gl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gl-grid-align-top {
  align-items: flex-start;
}

/* Cards */

.gl-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  font-size: 0.9rem;
}

.gl-card-outline {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid var(--border-soft);
}

.gl-card-solid {
  background: radial-gradient(circle at top left, rgba(163, 230, 53, 0.16), rgba(15, 23, 42, 1));
  border: 1px solid var(--border-strong);
}

.gl-card h2,
.gl-card h3 {
  margin-top: 0.15rem;
  margin-bottom: 0.4rem;
}

.gl-card p {
  margin: 0;
  color: var(--text-muted);
}

.gl-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.gl-plan-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.gl-card-location .gl-map {
  margin-top: 0.7rem;
}

.gl-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: var(--radius-md);
  background: #020617;
}

.gl-map-large iframe {
  height: 240px;
}

/* Lists / steps */

.gl-link-inline {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.gl-link-inline::after {
  content: "↗";
  margin-left: 0.25rem;
}

.gl-steps {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gl-steps li + li {
  margin-top: 0.25rem;
}

.gl-support-grid ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Blog */

.gl-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gl-blog-card {
  min-height: 0;
}

/* Contact form */

.gl-contact-layout {
  align-items: flex-start;
}

.gl-contact-form {
  margin-top: 1.3rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.gl-form-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.gl-form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gl-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.84rem;
}

.gl-contact-form input,
.gl-contact-form textarea,
.gl-contact-form select {
  border-radius: 0.55rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.5rem 0.65rem;
  font: inherit;
  color: var(--text-main);
  background: #020617;
}

.gl-contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.gl-contact-form input:focus,
.gl-contact-form textarea:focus,
.gl-contact-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.gl-form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0 0 0.7rem;
}

.gl-contact-submit {
  margin-top: 0.1rem;
}

/* Footer */

.gl-footer {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
}

.gl-footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.8rem 0 1.2rem;
  font-size: 0.86rem;
}

.gl-footer-col h3,
.gl-footer-col h4 {
  margin-top: 0;
}

.gl-footer-col p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
}

.gl-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gl-footer-col li + li {
  margin-top: 0.25rem;
}

.gl-footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  text-align: center;
  padding: 0.7rem 0 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Cookie banner */

.gl-cookie {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 980px;
  width: 100%;
  background: #020617;
  color: var(--text-main);
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  z-index: 50;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
}

.gl-cookie-text p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.gl-cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.gl-cookie-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

.gl-cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.35rem 1rem;
  font-size: 0.76rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.gl-cookie-btn-primary {
  background: var(--accent);
  color: #020617;
}

.gl-cookie-btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(75, 85, 99, 0.9);
}

.gl-cookie-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.95);
}

.gl-cookie--hidden {
  display: none !important;
}

/* General */

ul {
  padding-left: 1.1rem;
}

.gl-section p {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
