/* ORGANIZATIONS PAGE */

.org-simple-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 8px 24px rgba(3, 20, 36, 0.06);
}

.org-simple-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.org-logo img {
  width: 230px;
}

.org-header-cta {
  white-space: nowrap;
}

/* HERO */

.org-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 30%, rgba(143, 207, 95, 0.2), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(77, 140, 216, 0.16), transparent 36%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.org-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.22;
  pointer-events: none;
}

.org-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.org-eyebrow {
  color: var(--lime);
}

.org-hero h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.org-hero-sub {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.84);
}

.org-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.org-main-btn {
  min-width: 265px;
}

.org-text-link {
  color: #f0e7b4;
  font-weight: 900;
  border-bottom: 2px solid rgba(240, 231, 180, 0.45);
}

.org-hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.org-hero-trust div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 800;
}

.org-hero-visual {
  display: grid;
  gap: 18px;
}

.org-hero-photo {
  position: relative;
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.23);
  background-size: cover;
  background-position: center center;
}

.org-hero-summary {
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.org-hero-summary h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.org-hero-summary ul,
.org-fit-list ul,
.org-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.org-hero-summary li,
.org-fit-list li,
.org-bullet-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.org-hero-summary li::before,
.org-fit-list li::before,
.org-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 900;
}

.org-image-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(143, 207, 95, 0.45);
  background: rgba(3, 20, 36, 0.76);
  color: var(--lime);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SECTIONS */

.org-section {
  padding: 78px 0;
}

.org-white {
  background: #fff;
}

.org-soft {
  background: var(--mint);
}

.org-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 28%, rgba(143, 207, 95, 0.13), transparent 34%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.org-dark .eyebrow,
.cream {
  color: #f0e7b4;
}

.org-split,
.org-value-grid,
.org-fit-grid,
.org-form-grid,
.org-difference-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.org-media-split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 50px;
  align-items: center;
}

.org-media-copy h2,
.org-split h2,
.org-value-grid h2,
.org-fit-grid h2,
.org-form-copy h2,
.org-difference-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.org-rich-copy p,
.org-value-grid p,
.org-fit-grid p,
.org-form-copy p,
.org-difference-copy p,
.org-media-copy p {
  margin: 0 0 18px;
  color: rgba(16, 35, 58, 0.78);
  font-size: 1.1rem;
}

.org-dark p,
.org-form-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.org-section-head {
  max-width: 820px;
  margin: 0 auto 40px;
}

.org-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.org-section-head p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(16, 35, 58, 0.76);
  font-size: 1.1rem;
}

/* IMAGE SUPPORT */

.org-media-card,
.org-difference-visual {
  width: 100%;
}

.org-media-image,
.org-value-photo,
.org-feature-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.org-media-image {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 39, 63, 0.14);
  border: 1px solid rgba(16, 35, 58, 0.08);
}

.org-value-photo {
  min-height: 235px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.org-difference-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(13, 39, 63, 0.14);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: #fff;
}

/* FEATURE CARDS */

.org-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.org-feature-card {
  border: 1px solid rgba(16, 35, 58, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(13, 39, 63, 0.07);
  overflow: hidden;
}

.org-feature-image {
  min-height: 170px;
}

.org-feature-content {
  padding: 24px 24px 26px;
}

.org-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.38rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.org-feature-card p {
  margin: 0;
  color: rgba(16, 35, 58, 0.76);
}

/* PLAYBOOK */

.org-playbook-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.org-playbook-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(16, 35, 58, 0.08);
}

.org-playbook-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.org-playbook-list span {
  display: block;
  color: rgba(16, 35, 58, 0.76);
}

/* VALUE */

.improved-value-grid {
  align-items: center;
}

.org-value-stack {
  display: grid;
  gap: 18px;
}

.org-value-panel {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.org-value-label {
  margin: 0 0 8px !important;
  color: var(--lime) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem !important;
}

.org-value-panel strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

/* STEPS */

.org-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.org-steps article {
  padding: 24px;
  border: 1px solid rgba(16, 35, 58, 0.08);
  border-radius: 20px;
  background: var(--cream);
}

.org-steps div {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.org-steps h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.org-steps p {
  margin: 0;
  color: rgba(16, 35, 58, 0.74);
  font-size: 0.98rem;
}

/* FIT */

.org-fit-list {
  padding: 30px;
  border-radius: 24px;
  background: var(--navy);
}

/* FORM */

.org-cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(143, 207, 95, 0.15), transparent 32%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.org-form-copy {
  position: sticky;
  top: 24px;
}

.org-form-copy h2 {
  color: #fff;
}

.org-form-note-box {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.org-form-note-box strong {
  color: var(--lime);
}

.org-form-note-box span {
  color: rgba(255, 255, 255, 0.78);
}

.org-lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.org-lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(16, 35, 58, 0.86);
  font-size: 0.95rem;
  font-weight: 900;
}

.org-lead-form input,
.org-lead-form select,
.org-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 58, 0.14);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.org-lead-form textarea {
  min-height: 118px;
  resize: vertical;
}

.org-lead-form input:focus,
.org-lead-form select:focus,
.org-lead-form textarea:focus {
  outline: 2px solid rgba(90, 157, 67, 0.32);
  border-color: rgba(90, 157, 67, 0.65);
}

.org-honeypot {
  display: none;
}

.org-submit-btn {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.org-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.org-success {
  margin: 2px 0 0;
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

.org-form-disclaimer {
  margin: 0;
  color: rgba(16, 35, 58, 0.58);
  font-size: 0.9rem;
}

.org-form-disclaimer a {
  color: var(--green);
  font-weight: 800;
}

/* FOOTER */

.org-simple-footer {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.org-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.org-footer-inner img {
  width: 170px;
}

.org-footer-inner p {
  margin: 0;
  color: rgba(16, 35, 58, 0.66);
  font-size: 0.95rem;
  text-align: right;
}

/* IMAGE PLACEHOLDERS - REPLACE WITH YOUR FINAL SITE IMAGES */

.org-photo-hero {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.2), rgba(3, 20, 36, 0.35)),
    url('/assets/images/organizations/org-hero.jpg');
}

.org-photo-why {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.08), rgba(3, 20, 36, 0.16)),
    url('/assets/images/organizations/why-organizations-use-it.jpg');
}

.org-photo-athlete {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/athlete-huddle.jpg');
}

.org-photo-parent {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/parent-huddle.jpg');
}

.org-photo-guest {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/guest-huddle.jpg');
}

.org-photo-vault {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/huddle-vault.jpg');
}

.org-photo-community {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/community-access.jpg');
}

.org-photo-leader {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.12), rgba(3, 20, 36, 0.2)),
    url('/assets/images/organizations/leader-access.jpg');
}

.org-photo-playbook {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.1), rgba(3, 20, 36, 0.16)),
    url('/assets/images/organizations/life-playbook-athletes.jpg');
}

.org-photo-retention {
  background-image:
    linear-gradient(rgba(3, 20, 36, 0.18), rgba(3, 20, 36, 0.24)),
    url('/assets/images/organizations/retention-value.jpg');
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .org-hero-grid,
  .org-split,
  .org-value-grid,
  .org-fit-grid,
  .org-form-grid,
  .org-difference-grid,
  .org-media-split,
  .org-virtual-band .org-virtual-grid {
    grid-template-columns: 1fr;
  }

  .org-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-form-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .org-simple-nav {
    min-height: 72px;
  }

  .org-logo img {
    width: 190px;
  }

  .org-header-cta {
    display: none;
  }

  .org-hero {
    padding: 56px 0 50px;
  }

  .org-hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .org-hero-sub {
    font-size: 1.08rem;
  }

  .org-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .org-main-btn,
  .org-text-link {
    width: 100%;
    text-align: center;
  }

  .org-hero-trust {
    grid-template-columns: 1fr;
  }

  .org-hero-summary,
  .org-lead-form,
  .org-value-panel,
  .org-fit-list {
    padding: 24px;
    border-radius: 22px;
  }

  .org-section {
    padding: 58px 0;
  }

  .org-media-image {
    min-height: 290px;
  }

  .org-hero-photo {
    min-height: 260px;
  }

  .org-feature-grid,
  .org-steps {
    grid-template-columns: 1fr;
  }

  .org-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .org-footer-inner p {
    text-align: left;
  }
}


.green-text {
  color: var(--lime);
}


.org-difference-full {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 24px 60px rgba(13, 39, 63, 0.14);
}

.org-difference-full img {
  width: 100%;
  display: block;
}


.org-virtual-band .org-virtual-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.org-virtual-band h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.org-virtual-band p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.org-virtual-panel {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.org-virtual-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.org-virtual-panel li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.org-virtual-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 900;
}


/* FULL IMAGE SECTIONS */

.org-life-image-section,
.org-difference-image-section {
  padding: 72px 0;
  background: var(--mint);
}

.org-life-full,
.org-difference-full {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 24px 60px rgba(13, 39, 63, 0.14);
}

.org-life-full img,
.org-difference-full img {
  width: 100%;
  display: block;
}

@media (max-width: 720px) {
  .org-life-image-section,
  .org-difference-image-section {
    padding: 54px 0;
  }

  .org-life-full,
  .org-difference-full {
    border-radius: 20px;
  }
}
