/* ==========================================================
   Respondnow — premium login concept
   Pure HTML + CSS, responsive, accessible and dependency-free
   ========================================================== */

:root {
  --ink: #0c1737;
  --ink-deep: #071128;
  --ink-soft: #21315d;
  --green: #35c759;
  --green-light: #7df19d;
  --green-pale: #e9fff0;
  --violet: #7a86ff;
  --white: #ffffff;
  --paper: #f7f9fc;
  --line: #dfe5ef;
  --muted: #697590;
  --shadow-xl: 0 34px 90px rgba(5, 17, 47, .18);
  --shadow-md: 0 18px 42px rgba(5, 17, 47, .12);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(430px, .78fr);
}

/* LEFT EXPERIENCE PANEL */

.experience-panel {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 48px clamp(36px, 5vw, 86px) 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 5%, rgba(63, 207, 104, .16), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(122, 134, 255, .15), transparent 30%),
    linear-gradient(145deg, #071229 0%, #0a1735 50%, #08132d 100%);
  display: flex;
  flex-direction: column;
}

.experience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.aurora {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .55;
  pointer-events: none;
}

.aurora-one {
  width: 430px;
  height: 430px;
  top: 10%;
  left: -250px;
  background: rgba(53, 199, 89, .24);
  animation: breathe 8s var(--ease) infinite alternate;
}

.aurora-two {
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: 0;
  background: rgba(109, 123, 255, .2);
  animation: breathe 10s var(--ease) 1s infinite alternate-reverse;
}

.noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  grid-template-columns: auto 32px;
  grid-template-areas:
    "name mark"
    "tagline tagline";
  width: fit-content;
  text-decoration: none;
}

.brand-name {
  grid-area: name;
  font-size: clamp(30px, 2.5vw, 43px);
  line-height: .9;
  letter-spacing: -2.6px;
  font-weight: 300;
}

.brand-name b {
  color: var(--green);
  font-weight: 500;
}

.brand-name strong {
  color: #e8edff;
  font-weight: 500;
}

.brand-mark {
  grid-area: mark;
  align-self: center;
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 2px;
  border: 7px solid rgba(232, 237, 255, .16);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  width: 22px;
  height: 11px;
  left: 3px;
  top: -3px;
  border-left: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  transform: rotate(-45deg);
}

.brand-tagline {
  grid-area: tagline;
  margin-top: 8px;
  color: rgba(232, 237, 255, .55);
  text-align: right;
  font-size: 14px;
  letter-spacing: .04em;
}

.brand-tagline span {
  color: var(--green);
  margin-inline: 5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 5px rgba(125, 241, 157, .1), 0 0 18px var(--green);
  animation: pulse 2.4s ease-out infinite;
}

.hero-copy {
  max-width: 850px;
  margin-top: clamp(62px, 8vh, 112px);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--green-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 690;
}

.hero-copy h1 span {
  display: block;
  color: rgba(255, 255, 255, .48);
  font-weight: 430;
}

.hero-intro {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.event-orbit {
  position: relative;
  width: min(100%, 880px);
  min-height: 300px;
  margin: 36px 0 0;
}

.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: .8;
}

.flow-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 180px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .065);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}

.flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 241, 157, .35);
  background: rgba(255, 255, 255, .09);
}

.flow-card-one { left: 0; top: 91px; }
.flow-card-two { left: 24%; top: 54px; }
.flow-card-three { right: 24%; top: 90px; }
.flow-card-four { right: 0; top: 99px; }

.flow-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-light);
  border: 1px solid rgba(125, 241, 157, .18);
  border-radius: 13px;
  background: rgba(53, 199, 89, .1);
}

.flow-icon svg {
  width: 21px;
  height: 21px;
}

.flow-card small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.flow-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.1;
}

.flow-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .52);
  white-space: nowrap;
  font-size: 11px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 880px);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 20px;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.proof-symbol {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  color: var(--green-light);
  border-radius: 12px;
  background: rgba(53, 199, 89, .09);
  font-size: 21px;
}

.proof-item p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  line-height: 1.45;
}

.proof-item strong {
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 880px);
  padding-top: 18px;
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.panel-footer p {
  margin: 0;
}

.panel-footer span {
  color: var(--green);
  margin-inline: 5px;
}

/* RIGHT AUTH PANEL */

.auth-panel {
  min-height: 100vh;
  padding: 42px clamp(30px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 199, 89, .08), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
}

.mobile-brand {
  display: none;
}

.auth-card {
  width: min(100%, 470px);
  margin-inline: auto;
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid rgba(12, 23, 55, .07);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
}

.auth-heading {
  position: relative;
  margin-bottom: 34px;
}

.welcome-icon {
  position: absolute;
  right: 0;
  top: -6px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--green);
  border: 1px solid rgba(53, 199, 89, .16);
  border-radius: 16px;
  background: var(--green-pale);
  transform: rotate(4deg);
}

.welcome-icon svg {
  width: 25px;
  height: 25px;
}

.auth-heading .eyebrow {
  margin-bottom: 12px;
  color: #27a949;
}

.auth-heading h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.auth-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.label-row label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 760;
}

.label-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.label-row a {
  color: #309f4d;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.label-row a:hover {
  text-decoration: underline;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #8c96ab;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-icon svg {
  width: 19px;
  height: 19px;
}

.input-wrap input {
  width: 100%;
  height: 54px;
  padding: 0 16px 0 47px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
  background: #fbfcfe;
  font-size: 14px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    transform .2s var(--ease);
}

.input-wrap input::placeholder {
  color: #a3acbf;
}

.input-wrap input:hover {
  border-color: #cbd3e1;
  background: #fff;
}

.input-wrap input:focus {
  border-color: rgba(53, 199, 89, .85);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(53, 199, 89, .11);
  transform: translateY(-1px);
}

.remember {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  user-select: none;
}

.remember input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-ui {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #cbd3e1;
  border-radius: 6px;
  background: #fff;
  transition: all .2s ease;
}

.remember input:checked + .check-ui {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 199, 89, .1);
}

.remember input:checked + .check-ui::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.primary-button,
.secondary-button {
  border: 0;
  cursor: pointer;
  transition:
    transform .22s var(--ease),
    box-shadow .22s ease,
    filter .22s ease;
}

.primary-button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 57px;
  margin-top: 4px;
  padding: 0 19px 0 22px;
  color: #fff;
  border-radius: 16px;
  background:
    linear-gradient(115deg, #2bbd50 0%, #39cb61 58%, #5edc78 100%);
  box-shadow: 0 14px 30px rgba(53, 199, 89, .24);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .3), transparent 75%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}

.primary-button:hover::before {
  transform: translateX(120%);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.primary-button:active,
.secondary-button:active {
  transform: translateY(0);
}

.primary-button svg {
  width: 20px;
  height: 20px;
}

.password-help {
  margin-top: 24px;
  border-top: 1px solid #e8ecf3;
  border-bottom: 1px solid #e8ecf3;
}

.password-help summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 760;
}

.password-help summary::-webkit-details-marker {
  display: none;
}

.password-help summary svg {
  width: 18px;
  height: 18px;
  color: #8d97aa;
  transition: transform .25s var(--ease);
}

.password-help[open] summary svg {
  transform: rotate(180deg);
}

.reset-content {
  padding: 0 0 18px;
  animation: reveal .3s var(--ease);
}

.reset-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.reset-content form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.reset-content .input-wrap input {
  height: 46px;
  font-size: 12px;
}

.secondary-button {
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid #dfe5ef;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(5, 17, 47, .06);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 14px;
  color: #698071;
  border: 1px solid #dff1e4;
  border-radius: 14px;
  background: #f5fff8;
}

.security-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #2db454;
}

.security-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.support-line {
  width: min(100%, 470px);
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.support-line p {
  display: inline;
  margin: 0 5px 0 0;
}

.support-line a {
  color: #2fa34d;
  font-weight: 800;
  text-decoration: none;
}

.support-line a:hover {
  text-decoration: underline;
}

/* ANIMATION */

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 241, 157, .45), 0 0 18px var(--green); }
  75%, 100% { box-shadow: 0 0 0 10px rgba(125, 241, 157, 0), 0 0 18px var(--green); }
}

@keyframes breathe {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, 25px, 0) scale(1.14); }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .login-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(410px, .85fr);
  }

  .flow-card {
    min-width: 155px;
    padding: 11px 12px;
  }

  .flow-card-two { left: 22%; }
  .flow-card-three { right: 22%; }

  .flow-card p {
    font-size: 10px;
  }

  .proof-item {
    padding-inline: 12px;
  }
}

@media (max-width: 960px) {
  .login-shell {
    display: block;
    min-height: 100vh;
    background:
      radial-gradient(circle at 10% 0, rgba(53, 199, 89, .14), transparent 30%),
      linear-gradient(160deg, #071229 0%, #0b1938 46%, #f6f8fb 46%);
  }

  .experience-panel {
    min-height: auto;
    padding: 30px 28px 150px;
    background: transparent;
  }

  .brand-row {
    align-items: flex-start;
  }

  .status-pill {
    margin-top: 2px;
  }

  .hero-copy {
    margin-top: 70px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 10vw, 74px);
  }

  .event-orbit,
  .proof-strip,
  .panel-footer {
    display: none;
  }

  .auth-panel {
    min-height: auto;
    margin-top: -118px;
    padding: 0 24px 50px;
    background: transparent;
  }

  .auth-card {
    position: relative;
    z-index: 2;
    max-width: 560px;
  }

  .support-line {
    color: #72809b;
  }
}

@media (max-width: 620px) {
  .experience-panel {
    padding: 24px 20px 128px;
  }

  .brand-row .brand {
    transform: scale(.86);
    transform-origin: left top;
  }

  .status-pill {
    max-width: 145px;
    line-height: 1.25;
  }

  .hero-copy {
    margin-top: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-intro {
    font-size: 15px;
    line-height: 1.55;
  }

  .auth-panel {
    margin-top: -90px;
    padding-inline: 14px;
  }

  .auth-card {
    padding: 31px 22px;
    border-radius: 26px;
  }

  .welcome-icon {
    width: 45px;
    height: 45px;
  }

  .auth-heading {
    padding-right: 45px;
  }

  .auth-heading h2 {
    font-size: 34px;
  }

  .reset-content form {
    grid-template-columns: 1fr;
  }

  .secondary-button {
    min-height: 44px;
  }

  .support-line {
    padding-inline: 18px;
    line-height: 1.6;
  }

  .support-line p {
    display: block;
    margin: 0;
  }
}

@media (max-width: 390px) {
  .status-pill {
    display: none;
  }

  .auth-heading {
    padding-right: 0;
  }

  .welcome-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Respondnow integration: sign-out / info alerts inside the auth card */
.login-alert {
  margin-bottom: 18px;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.login-alert.success {
  color: #1d7a3a;
  border: 1px solid #cdeed8;
  background: #effbf3;
}
.login-alert.info {
  color: #21518f;
  border: 1px solid #cfdff5;
  background: #eef5fe;
}

/* Respondnow integration: real reversed logo replaces the CSS wordmark */
.brand-image {
  display: block;
  height: 66px;
  width: auto;
}
.brand-image-mobile {
  height: 44px;
}
@media (max-width: 620px) {
  .brand-image { height: 48px; }
}

/* Respondnow integration: six-step flow (Invite, RSVP, Survey, Golfing, Arrive, Badge) */
.event-orbit .flow-card { min-width: 128px; padding: 11px 13px; }
.event-orbit .flow-card p { font-size: 10px; }
.flow-card-one   { left: 0;      top: 95px;  }
.flow-card-two   { left: 16.5%;  top: 52px;  }
.flow-card-three { left: 34%;    top: 98px;  }
.flow-card-four  { left: 51.5%;  top: 52px;  right: auto; }
.flow-card-five  { right: 13.5%; top: 98px;  }
.flow-card-six   { right: 0;     top: 58px;  }
@media (max-width: 1180px) {
  .flow-card-two   { left: 15%;  }
  .flow-card-three { left: 33%;  }
  .flow-card-four  { left: 51%;  }
  .flow-card-five  { right: 14%; }
}

/* Six-step flow: stronger stagger so cards never overlap */
.flow-card-one   { left: 0;     top: 104px; }
.flow-card-two   { left: 16%;   top: 26px;  }
.flow-card-three { left: 33%;   top: 104px; }
.flow-card-four  { left: 50%;   top: 26px;  right: auto; }
.flow-card-five  { right: 14%;  top: 104px; }
.flow-card-six   { right: 0;    top: 26px;  }
.event-orbit { min-height: 260px; }

/* Respondnow integration: ScoreCapture association badge */
.assoc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .2s ease;
}
.assoc-badge img {
  display: block;
  height: 34px;
  width: auto;
}
.assoc-badge:hover { color: rgba(255, 255, 255, .85); }
.assoc-badge:hover span { text-decoration: underline; }
@media (max-width: 960px) {
  .assoc-badge { display: none; }
}

/* Survey card: compact variant at the end of the flow */
.flow-card-small { min-width: 0 !important; padding: 8px 11px !important; gap: 9px; }
.flow-card-small .flow-icon { width: 32px; height: 32px; border-radius: 10px; }
.flow-card-small .flow-icon svg { width: 16px; height: 16px; }
.flow-card-small strong { font-size: 13px; }
.flow-card-small p { font-size: 9px; }
.flow-card-six { right: 0; top: 104px; }

/* ScoreCapture badge under the flow diagram, larger logo */
.assoc-badge { margin: 6px 0 18px; }
.assoc-badge img { height: 52px; }

/* Survey (06) belongs on the top row — keeps the zigzag, clears Badge */
.flow-card-six { right: 0; top: 26px; }

/* Golfing card: compact like Survey */
.flow-card-three { min-width: 0 !important; padding: 8px 11px !important; gap: 9px; }
.flow-card-three .flow-icon { width: 32px; height: 32px; border-radius: 10px; }
.flow-card-three .flow-icon svg { width: 16px; height: 16px; }
.flow-card-three strong { font-size: 13px; }
.flow-card-three p { font-size: 9px; }

/* Tighten the orbit's empty space so the ScoreCapture badge sits closer */
.event-orbit { min-height: 205px !important; margin-top: 28px !important; }
.assoc-badge { margin: 2px 0 14px; }

/* Golfing was stretching: the template's original .flow-card-three rule pins
   right:24%, and with our left set too the card spanned both anchors */
.flow-card-three { right: auto !important; }
