/* ────────────────────────────────────────────────
   DESIGN TOKENS
   ──────────────────────────────────────────────── */
:root {
	--ac-green:        #90b72d;
	--ac-green-dark:   #6d8a22;
	--ac-green-faint:  #f4f9e8;
	--ac-green-mid:    #dff0b8;
	--ac-ink:          #354860;
	--ac-ink-mid:      #5a6d7f;
	--ac-ink-light:    #8a99a8;
	--ac-sand:         #f7f8f9;
	--ac-white:        #ffffff;
	--ac-phone-bg:     #0f1923;
	--ac-phone-frame:  #1e2d3d;
	--ac-radius:       14px;
	--ac-radius-lg:    24px;
	--ac-radius-xl:    36px;
	--ac-max-w:        1080px;
}

/* ────────────────────────────────────────────────
   KEYFRAMES
   ──────────────────────────────────────────────── */
@keyframes acFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes acFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes acSlideLeft {
	from { opacity: 0; transform: translateX(32px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes acPulse {
	0%,100% { box-shadow: 0 0 0 0 rgba(144,183,45,.4); }
	50%      { box-shadow: 0 0 0 10px rgba(144,183,45,0); }
}
@keyframes acFloat {
	0%,100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
@keyframes acDotBlink {
	0%,100% { opacity: 1; }
	50%      { opacity: .3; }
}

/* ────────────────────────────────────────────────
   SHARED SECTION SHELL
   ──────────────────────────────────────────────── */
.ac-section {
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}
.ac-section .inner {
	max-width: var(--ac-max-w);
	margin: auto;
}
.ac-section--white { background: var(--ac-white); }
.ac-section--sand  { background: var(--ac-sand); }
.ac-section--green { background: var(--ac-green-faint); }

/* ────────────────────────────────────────────────
   EYEBROW LABEL (reusable)
   ──────────────────────────────────────────────── */
.ac-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: var(--ac-green-faint);
	color: var(--ac-green-dark);
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .3rem .85rem;
	border-radius: 100px;
	border: 1px solid rgba(109,138,34,.2);
	margin-bottom: 1rem;
}
.ac-eyebrow .dot {
	width: 6px; height: 6px;
	background: var(--ac-green);
	border-radius: 50%;
	animation: acDotBlink 2s ease-in-out infinite;
}

/* ────────────────────────────────────────────────
   SPLIT-SCREEN HERO
   ──────────────────────────────────────────────── */
#ac-hero {
	background: linear-gradient(135deg, #0f1923 0%, #1a2d3e 55%, #1e3848 100%);
	padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
	position: relative;
	overflow: hidden;
}

#ac-hero::before {
	content: '';
	position: absolute;
	right: -5%;
	top: -10%;
	width: 60%;
	height: 120%;
	background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(144,183,45,.14) 0%, transparent 65%);
	pointer-events: none;
}
#ac-hero::after {
	content: '';
	position: absolute;
	left: -8%;
	bottom: -20%;
	width: 40%;
	height: 80%;
	background: radial-gradient(ellipse 60% 60% at 20% 80%, rgba(50,123,169,.08) 0%, transparent 65%);
	pointer-events: none;
}

.ac-hero__grid {
	max-width: var(--ac-max-w);
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.ac-hero__copy {
	animation: acFadeUp .65s ease both;
}

.ac-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(144,183,45,.15);
	border: 1px solid rgba(144,183,45,.3);
	color: #a8d044;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	padding: .35rem 1rem;
	border-radius: 100px;
	margin-bottom: 1.5rem;
}
.ac-hero__tag .live-dot {
	width: 7px; height: 7px;
	background: #a8d044;
	border-radius: 50%;
	animation: acDotBlink 1.8s ease-in-out infinite;
}

.ac-hero__h1 {
	color: #ffffff !important;
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	line-height: 1.18;
	font-weight: 800;
	margin-bottom: 1.25rem;
	letter-spacing: -.02em;
}
.ac-hero__h1 mark {
	background: none;
	color: var(--ac-green);
	-webkit-background-clip: unset;
}

.ac-hero__sub {
	color: rgba(255,255,255,.65) !important;
	font-size: 1.1rem;
	line-height: 1.75;
	margin-bottom: 2rem;
	max-width: 44ch;
}

.ac-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.ac-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--ac-green);
	color: #ffffff !important;
	font-size: 1rem;
	font-weight: 700;
	padding: .9rem 2rem;
	border-radius: 100px;
	text-decoration: none;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 20px rgba(144,183,45,.35);
	animation: acPulse 3s ease-in-out infinite;
}
.ac-btn-primary:hover {
	background: var(--ac-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(144,183,45,.45);
	text-decoration: none;
	color: #ffffff !important;
}
.ac-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: transparent;
	color: rgba(255,255,255,.75) !important;
	font-size: .95rem;
	font-weight: 600;
	padding: .9rem 1.5rem;
	border-radius: 100px;
	text-decoration: none;
	border: 1.5px solid rgba(255,255,255,.2);
	transition: border-color .2s, color .2s, background .2s;
}
.ac-btn-ghost:hover {
	border-color: rgba(255,255,255,.45);
	color: #ffffff !important;
	background: rgba(255,255,255,.06);
	text-decoration: none;
}

.ac-hero__trust {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.ac-hero__trust-item {
	display: flex;
	align-items: center;
	gap: .45rem;
	color: rgba(255,255,255,.5);
	font-size: .82rem;
}
.ac-hero__trust-item svg {
	width: 15px; height: 15px;
	color: var(--ac-green);
	flex-shrink: 0;
}

/* RIGHT: phone mockup */
.ac-hero__visual {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	animation: acSlideLeft .75s ease .15s both;
}

.ac-phone {
	position: relative;
	width: 260px;
	background: var(--ac-phone-frame);
	border-radius: var(--ac-radius-xl);
	padding: 14px;
	box-shadow:
		0 2px 0 rgba(255,255,255,.06) inset,
		0 40px 80px rgba(0,0,0,.55),
		0 8px 24px rgba(0,0,0,.35),
		0 0 0 1px rgba(255,255,255,.06);
	animation: acFloat 5s ease-in-out infinite;
}

.ac-phone__screen {
	background: #ffffff;
	border-radius: 26px;
	overflow: hidden;
	aspect-ratio: 9/19;
	position: relative;
}

.ac-phone__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin-top: 10px;
}

/* Overlay UI chrome on top of the placeholder image */
.ac-phone__chrome {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
}
.ac-phone__status-bar {
	height: 38px;
	background: linear-gradient(180deg, rgba(15,25,35,.9) 0%, transparent 100%);
	flex-shrink: 0;
}
.ac-phone__header {
	background: rgba(15,25,35,.88);
	backdrop-filter: blur(6px);
	padding: .65rem 1rem .55rem;
	border-bottom: 1px solid rgba(255,255,255,.07);
	flex-shrink: 0;
}
.ac-phone__header-title {
	color: #ffffff;
	font-size: .72rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.ac-phone__header-sub {
	color: rgba(255,255,255,.4);
	font-size: .58rem;
	text-align: center;
	margin-top: 2px;
}
.ac-phone__feed {
	flex: 1;
	overflow: hidden;
	padding: .6rem .65rem;
	display: flex;
	flex-direction: column;
	gap: .45rem;
}
.ac-phone__event-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 10px;
	padding: .55rem .7rem;
	display: flex;
	gap: .55rem;
	align-items: flex-start;
}
.ac-phone__event-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	flex-shrink: 0;
}
.ac-phone__event-icon--run  { background: rgba(144,183,45,.2); }
.ac-phone__event-icon--tt   { background: rgba(50,123,169,.2); }
.ac-phone__event-icon--yoga { background: rgba(180,100,200,.2); }

.ac-phone__event-body { flex: 1; min-width: 0; }
.ac-phone__event-title {
	color: rgba(255,255,255,.9);
	font-size: .62rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ac-phone__event-meta {
	color: rgba(255,255,255,.38);
	font-size: .54rem;
	margin-top: 2px;
}
.ac-phone__event-rsvp {
	display: flex;
	gap: 3px;
	margin-top: 4px;
}
.ac-phone__rsvp-badge {
	font-size: .5rem;
	font-weight: 700;
	padding: 1px 5px;
	border-radius: 100px;
}
.ac-phone__rsvp-badge--yes   { background: rgba(144,183,45,.25); color: #a8d044; }
.ac-phone__rsvp-badge--maybe { background: rgba(255,180,0,.18);  color: #f0b429; }
.ac-phone__rsvp-badge--no    { background: rgba(255,80,80,.15);  color: #ff7070; }

.ac-phone__footer {
	background: rgba(15,25,35,.92);
	backdrop-filter: blur(6px);
	border-top: 1px solid rgba(255,255,255,.07);
	padding: .55rem 1rem;
	display: flex;
	justify-content: space-around;
	flex-shrink: 0;
}
.ac-phone__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: rgba(255,255,255,.3);
	font-size: .48rem;
}
.ac-phone__tab.active { color: var(--ac-green); }
.ac-phone__tab svg { width: 14px; height: 14px; }

.ac-phone__badge {
	position: absolute;
	top: -14px;
	right: -18px;
	background: var(--ac-green);
	color: #ffffff;
	font-size: .65rem;
	font-weight: 800;
	padding: .3rem .75rem;
	border-radius: 100px;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(144,183,45,.45);
	animation: acFadeUp .6s ease .5s both;
}

/* ────────────────────────────────────────────────
   SOCIAL-PROOF STRIP
   ──────────────────────────────────────────────── */
#ac-strip {
	background: var(--ac-ink);
	padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
	overflow: hidden;
}
.ac-strip__inner {
	max-width: var(--ac-max-w);
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}
.ac-strip__item {
	display: flex;
	align-items: center;
	gap: .65rem;
	padding: .45rem 1.75rem;
	color: rgba(255,255,255,.75);
	font-size: .88rem;
	font-weight: 500;
	border-right: 1px solid rgba(255,255,255,.1);
}
.ac-strip__item:last-child { border-right: none; }
.ac-strip__item strong {
	color: #ffffff;
	font-weight: 700;
}
.ac-strip__item svg {
	width: 16px; height: 16px;
	color: var(--ac-green);
	flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   ACTIVITY FEED MOCKUP SECTION
   ──────────────────────────────────────────────── */
#ac-feed-section {
	background: var(--ac-sand);
	padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}
.ac-feed__grid {
	max-width: var(--ac-max-w);
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.ac-feed__copy .ac-eyebrow { margin-bottom: 1rem; }
.ac-feed__copy h2 {
	color: var(--ac-ink);
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -.02em;
}
.ac-feed__copy p {
	color: var(--ac-ink-mid);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}
.ac-feed__copy p:last-of-type { margin-bottom: 0; }

.ac-event-list {
	background: var(--ac-white);
	border-radius: var(--ac-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 28px rgba(0,0,0,.06);
	border: 1px solid rgba(0,0,0,.07);
}
.ac-event-list__header {
	background: var(--ac-ink);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ac-event-list__header-title {
	color: #ffffff;
	font-size: .9rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.ac-event-list__header-title svg {
	width: 16px; height: 16px;
	color: var(--ac-green);
}
.ac-event-list__header-new {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	background: var(--ac-green);
	color: #ffffff;
	font-size: .7rem;
	font-weight: 700;
	padding: .25rem .7rem;
	border-radius: 100px;
}
.ac-event-list__header-new svg {
	width: 11px; height: 11px;
}

.ac-event-item {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,.05);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: start;
	transition: background .18s;
}
.ac-event-item:last-child { border-bottom: none; }
.ac-event-item:hover { background: var(--ac-sand); }

.ac-event-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}
.ac-event-item__icon--run  { background: #e8f5d0; }
.ac-event-item__icon--tt   { background: #dbeeff; }
.ac-event-item__icon--yoga { background: #f0e6ff; }

.ac-event-item__name {
	color: var(--ac-ink);
	font-size: .97rem;
	font-weight: 700;
	margin-bottom: .2rem;
}
.ac-event-item__meta {
	color: var(--ac-ink-light);
	font-size: .8rem;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	align-items: center;
}
.ac-event-item__meta span {
	display: flex;
	align-items: center;
	gap: .25rem;
}
.ac-event-item__meta svg {
	width: 12px; height: 12px;
}

.ac-event-item__rsvp {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .4rem;
}
.ac-rsvp-row {
	display: flex;
	gap: .35rem;
}
.ac-rsvp-pill {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	font-size: .72rem;
	font-weight: 700;
	padding: .25rem .65rem;
	border-radius: 100px;
}
.ac-rsvp-pill--yes   { background: #e8f5d0; color: #3a6612; }
.ac-rsvp-pill--maybe { background: #fff4d6; color: #8a6000; }
.ac-rsvp-pill--no    { background: #ffeaea; color: #8a2020; }

.ac-capacity-bar {
	width: 80px;
	height: 4px;
	background: rgba(0,0,0,.08);
	border-radius: 100px;
	overflow: hidden;
}
.ac-capacity-bar__fill {
	height: 100%;
	background: var(--ac-green);
	border-radius: 100px;
	transition: width .4s ease;
}
.ac-capacity-label {
	font-size: .68rem;
	color: var(--ac-ink-light);
	white-space: nowrap;
}

/* ────────────────────────────────────────────────
   FEATURE SHOWCASE — ALTERNATING ROWS
   ──────────────────────────────────────────────── */
.ac-feature-row {
	max-width: var(--ac-max-w);
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.ac-feature-row + .ac-feature-row {
	margin-top: clamp(3rem, 6vw, 5rem);
}
.ac-feature-row--reverse .ac-feature-row__visual { order: -1; }

.ac-feature-row__copy .ac-eyebrow { margin-bottom: 1.1rem; }
.ac-feature-row__copy h2 {
	color: var(--ac-ink);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: .9rem;
	letter-spacing: -.02em;
}
.ac-feature-row__copy p {
	color: var(--ac-ink-mid);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.1rem;
}
.ac-feature-row__copy p:last-of-type { margin-bottom: 0; }

.ac-feature-list {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
	display: flex;
	flex-direction: column;
	gap: .7rem;
}
.ac-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	color: var(--ac-ink-mid);
	font-size: .95rem;
	line-height: 1.55;
}
.ac-feature-list li::before {
	content: '';
	width: 18px;
	height: 18px;
	min-width: 18px;
	background: var(--ac-green);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 11px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: .15rem;
	flex-shrink: 0;
}

.ac-feature-row__visual {
	position: relative;
}
.ac-screenshot-frame {
	background: var(--ac-sand);
	border-radius: var(--ac-radius-lg);
	border: 1px solid rgba(0,0,0,.07);
	overflow: hidden;
	box-shadow: 0 4px 28px rgba(0,0,0,.06);
	aspect-ratio: 4/3;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ac-screenshot-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ac-float-chip {
	position: absolute;
	background: var(--ac-white);
	border-radius: var(--ac-radius);
	padding: .65rem 1rem;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
	border: 1px solid rgba(0,0,0,.06);
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .82rem;
	color: var(--ac-ink);
	font-weight: 600;
	pointer-events: none;
	z-index: 2;
}
.ac-float-chip .chip-val {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--ac-green-dark);
}
.ac-float-chip--tl { top: -16px; left: -16px; }
.ac-float-chip--br { bottom: -16px; right: -16px; }
.ac-float-chip--tr { top: -16px; right: -16px; }

/* ────────────────────────────────────────────────
   NOTIFICATION MOCKUP
   ──────────────────────────────────────────────── */
.ac-notif-stack {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.ac-notif {
	background: rgba(30,45,61,.96);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	padding: .9rem 1.1rem;
	display: flex;
	gap: .85rem;
	align-items: flex-start;
	border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.ac-notif__icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--ac-green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.ac-notif__icon svg {
	width: 18px; height: 18px;
	color: #ffffff;
}
.ac-notif__app {
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: rgba(255,255,255,.4);
	margin-bottom: 2px;
}
.ac-notif__title {
	font-size: .82rem;
	font-weight: 700;
	color: rgba(255,255,255,.9);
	margin-bottom: 2px;
}
.ac-notif__body {
	font-size: .77rem;
	color: rgba(255,255,255,.5);
	line-height: 1.4;
}
.ac-notif__time {
	margin-left: auto;
	font-size: .65rem;
	color: rgba(255,255,255,.3);
	white-space: nowrap;
	flex-shrink: 0;
}

.ac-dark-visual {
	background: #0f1923;
	border-radius: var(--ac-radius-lg);
	padding: 1.75rem 1.5rem;
	box-shadow: 0 4px 28px rgba(0,0,0,.2);
}
.ac-dark-visual__header {
	text-align: center;
	margin-bottom: 1.25rem;
}
.ac-dark-visual__lockscreen {
	font-size: .72rem;
	color: rgba(255,255,255,.35);
	letter-spacing: .04em;
}
.ac-dark-visual__time {
	font-size: 2.4rem;
	font-weight: 700;
	color: rgba(255,255,255,.9);
	line-height: 1;
	margin-top: .25rem;
}

/* ────────────────────────────────────────────────
   HR BENEFITS GRID
   ──────────────────────────────────────────────── */
.ac-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}
.ac-benefit-card {
	background: var(--ac-white);
	border-radius: var(--ac-radius);
	padding: 1.75rem 1.5rem;
	box-shadow: 0 4px 28px rgba(0,0,0,.06);
	border: 1px solid rgba(0,0,0,.07);
	transition: transform .2s, box-shadow .2s;
}
.ac-benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,.09);
}
.ac-benefit-card__icon {
	width: 44px;
	height: 44px;
	background: var(--ac-green-faint);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.ac-benefit-card__icon svg {
	width: 22px; height: 22px;
	color: var(--ac-green-dark);
}
.ac-benefit-card h3 {
	color: var(--ac-ink);
	font-size: .97rem;
	font-weight: 700;
	margin-bottom: .4rem;
	line-height: 1.3;
}
.ac-benefit-card p {
	color: var(--ac-ink-mid);
	font-size: .87rem;
	line-height: 1.65;
	margin: 0;
}

/* ────────────────────────────────────────────────
   DARK CTA SECTION
   ──────────────────────────────────────────────── */
#ac-cta {
	background: #0f1923;
	padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
	position: relative;
	overflow: hidden;
	text-align: center;
}
#ac-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 55% 70% at 50% 60%, rgba(144,183,45,.12) 0%, transparent 65%),
		radial-gradient(ellipse 30% 40% at 20% 20%, rgba(50,123,169,.07) 0%, transparent 60%);
	pointer-events: none;
}
.ac-cta__inner {
	max-width: 680px;
	margin: auto;
	position: relative;
	z-index: 1;
}
.ac-cta__eyebrow {
	display: inline-block;
	background: rgba(144,183,45,.15);
	border: 1px solid rgba(144,183,45,.3);
	color: #a8d044;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .3rem .9rem;
	border-radius: 100px;
	margin-bottom: 1.5rem;
}
#ac-cta h2 {
	color: #ffffff !important;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 800;
	line-height: 1.18;
	margin-bottom: 1.1rem;
	letter-spacing: -.02em;
}
#ac-cta h2 span { color: var(--ac-green); }
#ac-cta p {
	color: rgba(255,255,255,.62) !important;
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 2.25rem;
	max-width: 52ch;
	margin-left: auto;
	margin-right: auto;
}
.ac-cta__note {
	margin-top: 1.25rem;
	color: rgba(255,255,255,.35) !important;
	font-size: .82rem;
}

/* ────────────────────────────────────────────────
   SCROLL-TRIGGERED REVEAL
   ──────────────────────────────────────────────── */
.ac-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .55s ease, transform .55s ease;
}
.ac-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ────────────────────────────────────────────────
   RESPONSIVE OVERRIDES
   ──────────────────────────────────────────────── */
@media (max-width: 900px) {
	.ac-hero__grid     { grid-template-columns: 1fr; text-align: center; }
	.ac-hero__sub      { max-width: 100%; margin-left: auto; margin-right: auto; }
	.ac-hero__actions  { justify-content: center; }
	.ac-hero__trust    { justify-content: center; }
	.ac-hero__visual   { order: -1; }
	.ac-phone          { width: 200px; }

	.ac-feature-row            { grid-template-columns: 1fr; }
	.ac-feature-row--reverse .ac-feature-row__visual { order: unset; }
	.ac-feed__grid             { grid-template-columns: 1fr; }
	.ac-benefits-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.ac-strip__inner      { flex-direction: column; gap: 0; }
	.ac-strip__item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); justify-content: center; }
	.ac-strip__item:last-child { border-bottom: none; }
	.ac-benefits-grid     { grid-template-columns: 1fr; }
	.ac-event-item        { grid-template-columns: auto 1fr; }
	.ac-event-item__rsvp  { display: none; }
	.ac-float-chip        { display: none; }
}
