:root {
  --gs-ro-max-width: 1080px;
  --gs-ro-page-x: 24px;
  --gs-ro-page-y: 40px;
  --gs-ro-surface-bg: transparent;
  --gs-ro-surface-border: transparent;
  --gs-ro-surface-radius: 0px;
  --gs-ro-surface-shadow: none;
  --gs-ro-control-radius: 8px;
  --gs-ro-input-radius: var(--gs-ro-control-radius);
  --gs-ro-button-radius: var(--gs-ro-control-radius);
  --gs-ro-helper-radius: var(--gs-ro-control-radius);
  --gs-ro-choice-radius: var(--gs-ro-control-radius);
  --gs-ro-checkbox-radius: 4px;
  --gs-ro-file-button-radius: var(--gs-ro-control-radius);
  --gs-ro-notice-radius: var(--gs-ro-control-radius);
  --gs-ro-status-radius: var(--gs-ro-control-radius);
  --gs-ro-empty-radius: var(--gs-ro-control-radius);
  --gs-ro-badge-radius: var(--gs-ro-control-radius);
  --gs-ro-text: #0f172a;
  --gs-ro-text-muted: #475569;
  --gs-ro-text-soft: #64748b;
  --gs-ro-form-field-text: #00354d;
  --gs-ro-line: #e2e8f0;
  --gs-ro-accent: #0f766e;
  --gs-ro-accent-contrast: #ffffff;
  --gs-ro-link-color: #00354d;
  --gs-ro-link-hover-color: #00354d;
  --gs-ro-chip-bg: #f1f5f9;
  --gs-ro-chip-text: #334155;
  --gs-ro-input-bg: #ffffff;
  --gs-ro-input-border: #cbd5e1;
  --gs-ro-choice-bg: #ffffff;
  --gs-ro-choice-text: #00354d;
  --gs-ro-choice-border: #cbd5e1;
  --gs-ro-choice-hover-bg: #f8fafc;
  --gs-ro-choice-hover-border: #94a3b8;
  --gs-ro-choice-checked-bg: #e6f2f1;
  --gs-ro-choice-checked-text: #00354d;
  --gs-ro-choice-checked-border: var(--gs-ro-accent);
  --gs-ro-checkbox-bg: #ffffff;
  --gs-ro-checkbox-border: #cbd5e1;
  --gs-ro-checkbox-checked-bg: var(--gs-ro-accent);
  --gs-ro-checkbox-checked-mark: #ffffff;
  --gs-ro-checkbox-focus-ring: color-mix(in srgb, var(--gs-ro-accent) 28%, transparent);
  --gs-ro-notice-success-bg: #ecfdf5;
  --gs-ro-notice-success-text: #166534;
  --gs-ro-notice-error-bg: #fef2f2;
  --gs-ro-notice-error-text: #991b1b;
  --gs-ro-widget-text-color: inherit;
}

.gs-ro-shell {
  max-width: var(--gs-ro-max-width);
  margin: 0 auto;
  padding: var(--gs-ro-page-y) var(--gs-ro-page-x) 72px;
}

.gs-ro-hero,
.gs-ro-single__header,
.gs-ro-widget,
.gs-ro-card {
  background: var(--gs-ro-surface-bg);
  border: 1px solid var(--gs-ro-surface-border);
  border-radius: var(--gs-ro-surface-radius);
  box-shadow: var(--gs-ro-surface-shadow);
}

.gs-ro-hero {
  margin-bottom: 24px;
}

.gs-ro-hero__inner,
.gs-ro-single__header {
  padding: 0 0 12px;
}

.gs-ro-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gs-ro-accent);
}

.gs-ro-hero h1,
.gs-ro-single__header h1,
.gs-ro-card__title {
  margin: 0;
  color: var(--gs-ro-text);
  line-height: 1.06;
}

.gs-ro-hero p:last-child,
.gs-ro-content > *:last-child {
  margin-bottom: 0;
}

.gs-ro-listing {
  display: grid;
  gap: 12px;
}

.gs-ro-grid {
  display: grid;
  gap: 0;
}

.gs-ro-card {
  padding: 24px 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-color: var(--gs-ro-line);
}

.gs-ro-card:first-child {
  padding-top: 0;
}

.gs-ro-card__header {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.gs-ro-card__title a {
  color: inherit;
  text-decoration: none;
}

.gs-ro-card__title a:hover,
.gs-ro-card__title a:focus-visible {
  color: var(--gs-ro-accent);
}

.gs-ro-card__excerpt {
  margin: 14px 0 0;
  color: var(--gs-ro-text-muted);
}

.gs-ro-card__status,
.gs-ro-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: var(--gs-ro-badge-radius);
  padding: 0 12px;
  font-size: 13px;
  line-height: 1;
}

.gs-ro-card__status {
  background: color-mix(in srgb, var(--gs-ro-accent) 10%, white);
  color: var(--gs-ro-accent);
  white-space: nowrap;
}

.gs-ro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gs-ro-badge {
  background: var(--gs-ro-chip-bg);
  color: var(--gs-ro-chip-text);
}

.gs-ro-form button.gs-ro-button,
.gs-ro-widget .gs-ro-button,
.gs-ro-card .gs-ro-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: auto;
  min-width: 0;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  margin-top: 18px;
  border: 0 !important;
  border-radius: var(--gs-ro-button-radius) !important;
  background: var(--gs-ro-accent) !important;
  box-shadow: none !important;
  color: var(--gs-ro-accent-contrast) !important;
  text-decoration: none !important;
  font: inherit !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2 !important;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer !important;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    opacity 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.gs-ro-form button.gs-ro-button:hover,
.gs-ro-widget .gs-ro-button:hover,
.gs-ro-card .gs-ro-button:hover {
  background: color-mix(in srgb, var(--gs-ro-accent) 90%, black) !important;
  color: var(--gs-ro-accent-contrast) !important;
  text-decoration: none !important;
}

.gs-ro-form button.gs-ro-button:focus,
.gs-ro-form button.gs-ro-button:focus-visible,
.gs-ro-widget .gs-ro-button:focus,
.gs-ro-widget .gs-ro-button:focus-visible,
.gs-ro-card .gs-ro-button:focus,
.gs-ro-card .gs-ro-button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gs-ro-accent) 28%, white) !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gs-ro-accent) 18%, transparent) !important;
}

.gs-ro-form button.gs-ro-button:disabled,
.gs-ro-widget .gs-ro-button:disabled,
.gs-ro-widget .gs-ro-button[aria-disabled="true"],
.gs-ro-card .gs-ro-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.gs-ro-form button.gs-ro-button.gs-ro-button--loading,
.gs-ro-widget .gs-ro-button.gs-ro-button--loading,
.gs-ro-card .gs-ro-button.gs-ro-button--loading {
  cursor: progress;
}

.gs-ro-button__spinner {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: gs-ro-spin 0.7s linear infinite;
}

.gs-ro-button__label {
  display: inline-block;
  line-height: 1.2;
}

@keyframes gs-ro-spin {
  to {
    transform: rotate(360deg);
  }
}

.gs-ro-single {
  display: grid;
  gap: 28px;
}

.gs-ro-widget {
  padding-top: 28px;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top-color: var(--gs-ro-line);
}

.gs-ro-widget--flush {
  padding-top: 0;
  border-top: 0;
}

.gs-ro-single__header + .gs-ro-widget {
  padding-top: 8px;
  border-top: 0;
}

.gs-ro-widget-title {
  margin: 0 0 14px;
  color: var(--gs-ro-text);
}

.gs-ro-content {
  color: var(--gs-ro-widget-text-color, var(--gs-ro-text-muted));
}

.gs-ro-content,
.gs-ro-content *,
.gs-ro-content p,
.gs-ro-content li,
.gs-ro-content ul,
.gs-ro-content ol,
.gs-ro-content div,
.gs-ro-content span,
.gs-ro-content strong,
.gs-ro-content em,
.gs-ro-content a,
.gs-ro-content *::before,
.gs-ro-content *::after {
  color: var(--gs-ro-widget-text-color, inherit) !important;
}

.gs-ro-content > *:first-child {
  margin-top: 0;
}

.gs-ro-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 0;
}

.gs-ro-details dt {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gs-ro-text-soft);
}

.gs-ro-details dd {
  margin: 0;
  color: var(--gs-ro-text);
}

.gs-ro-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  color: var(--gs-ro-widget-text-color, inherit);
}

.gs-ro-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: inherit;
}

.gs-ro-form__section-label,
.gs-ro-form__subheading {
  display: block;
  font-weight: 600;
  color: inherit;
}

.gs-ro-form input,
.gs-ro-form textarea,
.gs-ro-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--gs-ro-input-border);
  border-radius: var(--gs-ro-input-radius);
  background: var(--gs-ro-input-bg);
  color: var(--gs-ro-form-field-text);
  font: inherit;
}

.gs-ro-form textarea {
  min-height: 140px;
  resize: vertical;
}

.gs-ro-form input[type="file"] {
  padding: 12px;
}

.gs-ro-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--gs-ro-file-button-radius);
  background: var(--gs-ro-chip-bg);
  color: var(--gs-ro-chip-text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.gs-ro-form small {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: var(--gs-ro-helper-radius);
  background: color-mix(in srgb, currentColor 8%, transparent);
  color: inherit;
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.gs-ro-form__cover-letter {
  display: grid;
  gap: 10px;
}

.gs-ro-form__cover-letter-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--gs-ro-line);
  border-radius: var(--gs-ro-control-radius);
  background: #f8fafc;
  color: var(--gs-ro-text);
}

.gs-ro-form__cover-letter-panel .gs-ro-form__subheading,
.gs-ro-form__cover-letter-panel small {
  color: var(--gs-ro-text);
}

.gs-ro-form__toggle-link {
  justify-self: flex-start;
  padding: 0;
  color: var(--gs-ro-link-color) !important;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.gs-ro-form__toggle-link:hover {
  color: var(--gs-ro-link-hover-color) !important;
}

.gs-ro-form__toggle-link:focus-visible {
  outline: 2px solid var(--gs-ro-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.gs-ro-form__group {
  display: grid;
  gap: 16px;
  padding: 20px 0 0;
  border-top: 1px solid var(--gs-ro-line);
}

.gs-ro-form__group h3 {
  margin: 0;
  color: inherit;
}

.gs-ro-form__question {
  display: grid;
  gap: 8px;
}

.gs-ro-form__question-label {
  font-weight: 600;
  color: inherit;
}

.gs-ro-form__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.gs-ro-form .gs-ro-form__choice {
  position: relative;
  display: block;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--gs-ro-choice-border);
  border-radius: var(--gs-ro-choice-radius);
  background: var(--gs-ro-choice-bg);
  color: var(--gs-ro-choice-text);
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

.gs-ro-form .gs-ro-form__choice:hover {
  border-color: var(--gs-ro-choice-hover-border);
  background: var(--gs-ro-choice-hover-bg);
}

.gs-ro-form__choice input[type="checkbox"],
.gs-ro-form__choice input[type="radio"] {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.gs-ro-form__choice > span {
  position: relative;
  display: block;
  min-height: 22px;
  padding-left: 32px;
}

.gs-ro-form__choice > span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gs-ro-checkbox-border);
  border-radius: var(--gs-ro-checkbox-radius);
  background: var(--gs-ro-checkbox-bg);
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}

.gs-ro-form__choice input[type="radio"] + span::before {
  border-radius: 999px;
}

.gs-ro-form__choice > span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 10px;
  height: 5px;
  border: solid var(--gs-ro-checkbox-checked-mark);
  border-width: 0 0 2px 2px;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition:
    opacity 0.14s ease,
    transform 0.14s ease;
}

.gs-ro-form__choice input[type="radio"] + span::after {
  top: 6px;
  left: 5px;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--gs-ro-checkbox-checked-mark);
  transform: scale(0.7);
}

.gs-ro-form__choice input[type="checkbox"]:focus-visible + span::before,
.gs-ro-form__choice input[type="radio"]:focus-visible + span::before {
  box-shadow: 0 0 0 3px var(--gs-ro-checkbox-focus-ring);
}

.gs-ro-form__choice input[type="checkbox"]:checked + span::before,
.gs-ro-form__choice input[type="radio"]:checked + span::before {
  border-color: var(--gs-ro-checkbox-checked-bg);
  background: var(--gs-ro-checkbox-checked-bg);
}

.gs-ro-form__choice input[type="checkbox"]:checked + span::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.gs-ro-form__choice input[type="radio"]:checked + span::after {
  opacity: 1;
  transform: scale(1);
}

.gs-ro-form__choice:has(input[type="checkbox"]:checked),
.gs-ro-form__choice:has(input[type="radio"]:checked) {
  border-color: var(--gs-ro-choice-checked-border);
  background: var(--gs-ro-choice-checked-bg);
  color: var(--gs-ro-choice-checked-text);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gs-ro-accent) 35%, transparent);
}

.gs-ro-form__privacy {
  align-items: flex-start;
  margin-top: 4px;
  line-height: 1.5;
}

.gs-ro-form__privacy a {
  color: var(--gs-ro-link-color) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gs-ro-form__privacy a:hover {
  color: var(--gs-ro-link-hover-color) !important;
}

.gs-ro-notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--gs-ro-notice-radius);
}

.gs-ro-notice--success {
  background: var(--gs-ro-notice-success-bg);
  color: var(--gs-ro-notice-success-text);
}

.gs-ro-notice--error {
  background: var(--gs-ro-notice-error-bg);
  color: var(--gs-ro-notice-error-text);
}

.gs-ro-form__status {
  padding: 12px 14px;
  border-radius: var(--gs-ro-status-radius);
  background: var(--gs-ro-chip-bg);
  color: var(--gs-ro-chip-text);
  font-weight: 600;
}

.gs-ro-form__status--error {
  background: var(--gs-ro-notice-error-bg);
  color: var(--gs-ro-notice-error-text);
}

.gs-ro-form__status--success {
  background: var(--gs-ro-notice-success-bg);
  color: var(--gs-ro-notice-success-text);
}

.gs-ro-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gs-ro-widget-empty {
  padding: 14px 16px;
  border: 1px dashed var(--gs-ro-line);
  border-radius: var(--gs-ro-empty-radius);
  color: var(--gs-ro-text-soft);
}

@media (max-width: 700px) {
  :root {
    --gs-ro-page-x: 16px;
    --gs-ro-page-y: 24px;
  }

  .gs-ro-card__header {
    flex-direction: column;
  }

  .gs-ro-details {
    grid-template-columns: 1fr;
  }
}
