:root {
  --gbr-accent: #3a7ca5;
  --gbr-highlight: #f4d35e;
  --gbr-soft-gray: #eaeaea;
  --gbr-text-primary: #222222;
  --gbr-text-secondary: #555555;
  --gbr-cream: #f9f7f3;
}

html,
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gbr-text-primary);
  background-color: #ffffff;
  line-height: 1.7;
}

.gbr-title,
.gbr-wordmark {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.gbr-subtitle {
  color: var(--gbr-text-secondary);
}

.gbr-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gbr-hero--image {
  position: relative;
  background: none;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  min-height: max(24rem, 44vw);
}

.gbr-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 37, 0.45), rgba(8, 26, 37, 0.7));
  z-index: 1;
}

.gbr-hero--image .hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  min-height: inherit;
}

.gbr-hero--image .hero-body .container {
  max-width: 720px;
}

body.landing-connections .gbr-hero--image .hero-body {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.gbr-hero--image .gbr-title,
.gbr-hero--image .subtitle {
  color: #ffffff;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.gbr-hero--image .gbr-cta {
  box-shadow: 0 12px 30px rgba(58, 124, 165, 0.35);
}

.gbr-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gbr-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbr-hero-subtitle {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
}

.gbr-hero-text p {
  margin-bottom: 0.75rem;
  color: var(--gbr-text-secondary);
}

.gbr-cta {
  background-color: var(--gbr-accent);
  border: none;
  color: #ffffff;
  font-weight: 600;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gbr-cta:hover {
  box-shadow: 0 10px 24px rgba(58, 124, 165, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.gbr-secondary-cta {
  border: 1px solid var(--gbr-accent);
  color: var(--gbr-accent);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gbr-secondary-cta:hover {
  background-color: rgba(58, 124, 165, 0.08);
  transform: translateY(-2px);
  color: var(--gbr-accent);
}

.gbr-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gbr-section-light {
  background-color: var(--gbr-cream);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gbr-panel {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  padding: 2.5rem;
  box-shadow: 0 12px 36px rgba(34, 34, 34, 0.08);
}

.gbr-panel-title {
  font-family: "Playfair Display", serif;
}

.gbr-panel-text {
  color: var(--gbr-text-secondary);
  line-height: 1.8;
}

.gbr-list {
  list-style: none;
  padding-left: 0;
}

.gbr-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--gbr-text-secondary);
}

.gbr-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gbr-highlight);
  font-size: 1.4rem;
  line-height: 1;
}

.gbr-step-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 10px 32px rgba(34, 34, 34, 0.08);
  height: 100%;
}

.gbr-step-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.gbr-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.gbr-table thead {
  background-color: #ffffff;
  color: var(--gbr-text-primary);
}

.gbr-table thead th {
  border-bottom: 1px solid var(--gbr-accent);
}

.gbr-table td,
.gbr-table th {
  border: none;
  padding: 1.25rem 1rem;
  text-align: left;
  white-space: normal;
}

.gbr-table tbody tr {
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gbr-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.08);
}

.gbr-table th:first-child,
.gbr-table tbody td:first-child {
  width: 25%;
}

.gbr-table th:nth-child(2),
.gbr-table tbody td:nth-child(2) {
  width: 50%;
}

.gbr-table th:last-child,
.gbr-table tbody td:last-child {
  width: 25%;
}

.gbr-quote {
  font-style: italic;
  border-left: 4px solid var(--gbr-highlight);
  padding-left: 1.5rem;
  color: var(--gbr-text-primary);
}

.gbr-guide-section {
  background-color: #fefbf3;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gbr-guide-box {
  border-radius: 18px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.1);
  padding: 4rem 3rem;
}

.gbr-guide-box .gbr-list {
  margin: 0 auto;
  text-align: left;
  max-width: 28rem;
}

.gbr-guide-box .gbr-list li {
  text-align: left;
}

.gbr-invitation {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(58, 124, 165, 0.08), rgba(244, 211, 94, 0.08));
  border: 1px solid rgba(34, 34, 34, 0.04);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.12);
}

.gbr-navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.05);
  backdrop-filter: blur(12px);
}

body.landing-connections .gbr-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body.landing-connections .gbr-navbar .navbar-item,
body.landing-connections .gbr-navbar .navbar-link {
  color: #ffffff !important;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

body.landing-connections .gbr-navbar .navbar-item:hover,
body.landing-connections .gbr-navbar .navbar-item:focus {
  color: #f4d35e;
}

body.landing-connections .navbar-burger span {
  background-color: #ffffff;
}

.gbr-wordmark {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gbr-wordmark-primary {
  color: var(--gbr-text-primary);
}

.gbr-wordmark-secondary {
  color: var(--gbr-accent);
  font-size: 1.1em;
}

.gbr-accent-button {
  background-color: var(--gbr-highlight);
  border: none;
  color: var(--gbr-text-primary);
  font-weight: 600;
}

.gbr-accent-button:hover {
  color: var(--gbr-text-primary);
  box-shadow: 0 10px 24px rgba(244, 211, 94, 0.3);
}

body.landing-connections .gbr-navbar .gbr-accent-button {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

body.landing-connections .gbr-navbar .gbr-accent-button:hover {
  background: rgba(244, 211, 94, 0.85);
  color: #081a25;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.gbr-footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}

.gbr-footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gbr-footer-links a {
  color: var(--gbr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.gbr-footer-links a:hover {
  color: var(--gbr-accent);
}

/* Landing Connections Alt */
body.landing-connections-alt {
  background-color: #faf6ef !important;
  color: #3a2e1f;
}

body.landing-connections-alt .gbr-navbar,
body.landing-connections-alt .footer {
  background-color: transparent;
}

.gbr-l2-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.gbr-l2-section--light {
  background-color: #fffaf2;
}

.gbr-l2-heading {
  color: #3a2e1f;
}

.gbr-l2-body-text {
  color: #4a3b2e;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.gbr-l2-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #4a3b2e;
}

.gbr-l2-quote-detail {
  color: #6b5b4c;
  margin-top: 0.75rem;
}

.gbr-l2-feature-grid {
  max-width: 520px;
}

.gbr-l2-feature-box {
  background-color: #fef6d9;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #3a2e1f;
  box-shadow: 0 6px 16px rgba(58, 46, 31, 0.08);
}

.gbr-l2-feature-figure {
  margin: 0;
}

.gbr-l2-feature-image {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(58, 46, 31, 0.15);
}

.gbr-guide-form {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.gbr-guide-form .field {
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gbr-l2-email-input {
  border-radius: 999px;
  border: 1px solid rgba(58, 46, 31, 0.2);
  background-color: #ffffff;
  padding: 0.95rem 1.25rem;
  color: #3a2e1f;
}

.gbr-l2-guide-button {
  border-radius: 999px;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-weight: 600;
}

.gbr-guide-form__status {
  min-height: 1.25rem;
  color: #3a2e1f;
}

.gbr-guide-form.is-submitting .gbr-l2-guide-button {
  pointer-events: none;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .gbr-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .gbr-guide-box {
    padding: 3rem 2rem;
  }

  .gbr-step-card {
    margin-bottom: 1.5rem;
  }

  .gbr-invitation {
    padding: 2.5rem 1.5rem;
  }

  .gbr-l2-feature-grid {
    max-width: none;
  }

  .gbr-guide-form .control.is-expanded {
    flex-basis: 100%;
  }

  .gbr-guide-form .field.has-addons {
    justify-content: center;
  }
}
