/* Appily Twentyfive — Ripple Desk contact (unique ct25 layout) */

.ct25-page { background: var(--pu-light); padding-bottom: 72px; }

/* Hero */
.ct25-hero {
  position: relative;
  background: var(--pu-black);
  color: var(--pu-white);
  padding: 56px 0 96px;
  overflow: hidden;
}
.ct25-ripples {
  position: absolute;
  top: 50%;
  right: 12%;
  width: 320px;
  height: 320px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.ct25-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(191, 255, 0, .35);
  border-radius: 50%;
  animation: ct25Ripple 4.5s ease-out infinite;
}
.ct25-ring:nth-child(2) { animation-delay: 1.1s; }
.ct25-ring:nth-child(3) { animation-delay: 2.2s; }
.ct25-ring:nth-child(4) { animation-delay: 3.3s; }
@keyframes ct25Ripple {
  0% { transform: scale(.35); opacity: .85; }
  100% { transform: scale(1.35); opacity: 0; }
}

.ct25-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.ct25-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pu-lime);
}
.ct25-hero h1 {
  font-family: var(--pu-font);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.ct25-hero h1 em { font-style: normal; color: var(--pu-lime); }
.ct25-hero-lede {
  margin: 0 0 18px;
  max-width: 540px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  font-size: 15px;
}
.ct25-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ct25-chips li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--pu-radius-pill);
  border: 1px solid rgba(191, 255, 0, .35);
  color: var(--pu-lime);
}

.ct25-pond-badge {
  width: 132px;
  padding: 18px 14px;
  border-radius: 50%;
  border: 2px solid rgba(191, 255, 0, .45);
  background: rgba(191, 255, 0, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  font-family: var(--pu-font);
}
.ct25-pond-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pu-lime);
  box-shadow: 0 0 12px var(--pu-lime);
  margin-bottom: 8px;
  animation: ct25Pulse 2s ease-in-out infinite;
}
@keyframes ct25Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.ct25-pond-badge strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--pu-lime);
  line-height: 1.1;
}
.ct25-pond-badge > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}
.ct25-pond-badge em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, .45);
  margin-top: 10px;
  display: block;
}

/* Stage */
.ct25-stage { margin-top: -56px; position: relative; z-index: 2; }
.ct25-wrap { max-width: 980px; }

.ct25-orbit {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px) 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
  align-items: start;
}

.ct25-satellite {
  background: var(--pu-white);
  border: 1px solid var(--pu-border);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}
.ct25-satellite::before {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(191, 255, 0, .2);
  border-radius: 50%;
  pointer-events: none;
}
.ct25-satellite-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pu-black);
  color: var(--pu-lime);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.ct25-satellite h2 {
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ct25-satellite p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pu-ink);
}
.ct25-satellite a {
  color: var(--pu-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ct25-satellite a:hover { color: var(--pu-black); }
.ct25-satellite-meta {
  margin-top: 8px !important;
  font-size: 11px !important;
  color: var(--pu-gray) !important;
  line-height: 1.45 !important;
}

.ct25-satellite-email { grid-column: 1; grid-row: 1; }
.ct25-satellite-phone { grid-column: 3; grid-row: 1; }
.ct25-satellite-hours { grid-column: 1; grid-row: 3; }
.ct25-satellite-address { grid-column: 3; grid-row: 3; }

/* Dropwell */
.ct25-dropwell {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  position: relative;
  padding: 28px;
}
.ct25-dropwell-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ct25-dropwell-rings span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(191, 255, 0, .25);
  border-radius: 50%;
}
.ct25-dropwell-rings span:nth-child(1) { inset: 0; }
.ct25-dropwell-rings span:nth-child(2) { inset: 14px; opacity: .7; }
.ct25-dropwell-rings span:nth-child(3) { inset: 28px; opacity: .45; }

.ct25-dropwell-core {
  position: relative;
  z-index: 1;
  background: var(--pu-white);
  border: 2px solid var(--pu-black);
  border-radius: 24px;
  padding: 28px 30px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}
.ct25-dropwell-tag {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pu-lime);
  background: var(--pu-black);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--pu-radius-pill);
}
.ct25-dropwell-head h2 {
  font-family: var(--pu-font);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.ct25-dropwell-lede {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--pu-gray);
  line-height: 1.6;
}

/* Form */
.ct25-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct25-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ct25-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct25-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pu-gray);
}
.ct25-field input,
.ct25-field textarea,
.ct25-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--pu-border);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  background: var(--pu-light);
  transition: border-color .15s, box-shadow .15s;
}
.ct25-field input:focus,
.ct25-field textarea:focus,
.ct25-field select:focus {
  outline: none;
  border-color: var(--pu-black);
  box-shadow: 0 0 0 3px rgba(191, 255, 0, .35);
}
.ct25-field textarea {
  min-height: 120px;
  resize: vertical;
}

.ct25-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ct25-alert-error {
  background: rgba(229, 57, 53, .08);
  border: 1px solid rgba(229, 57, 53, .25);
  color: var(--pu-danger, #E53935);
}

/* Sent state */
.ct25-sent {
  text-align: center;
  padding: 12px 0 4px;
}
.ct25-sent-pulse {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pu-lime);
  position: relative;
}
.ct25-sent-pulse::before,
.ct25-sent-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(191, 255, 0, .5);
  border-radius: 50%;
  animation: ct25Ripple 2.5s ease-out infinite;
}
.ct25-sent-pulse::after { animation-delay: .8s; }
.ct25-sent h2 {
  font-family: var(--pu-font);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.ct25-sent p {
  margin: 0 0 20px;
  color: var(--pu-gray);
  line-height: 1.6;
  font-size: 15px;
}

/* Buttons */
.ct25-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--pu-radius-pill);
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .15s, color .15s;
}
.ct25-btn:hover { transform: translateY(-1px); }
.ct25-btn-primary {
  background: var(--pu-lime);
  color: var(--pu-black);
  border-color: var(--pu-lime);
}
.ct25-btn-primary:hover { background: #d4ff33; }
.ct25-btn-soft {
  background: var(--pu-black);
  color: var(--pu-white);
  border-color: var(--pu-black);
}
.ct25-btn-soft:hover { background: #222; }
.ct25-btn-outline {
  background: transparent;
  color: var(--pu-black);
  border-color: var(--pu-black);
}
.ct25-btn-outline:hover { background: var(--pu-black); color: var(--pu-white); }
.ct25-btn-wide { width: 100%; }

/* Footer strip */
.ct25-deck-foot {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--pu-white);
  border: 1px dashed var(--pu-border);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ct25-deck-foot p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--pu-gray);
}
.ct25-deck-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 860px) {
  .ct25-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .ct25-pond-badge {
    width: auto;
    max-width: 220px;
    border-radius: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 16px 18px;
    text-align: left;
    align-items: center;
  }
  .ct25-pond-dot { margin: 0; }
  .ct25-pond-badge em {
    width: 100%;
    margin-top: 4px;
  }
  .ct25-ripples {
    right: -80px;
    opacity: .5;
  }
  .ct25-orbit {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ct25-satellite-email,
  .ct25-satellite-phone,
  .ct25-satellite-hours,
  .ct25-satellite-address,
  .ct25-dropwell {
    grid-column: 1;
    grid-row: auto;
  }
  .ct25-dropwell { max-width: none; padding: 0; }
  .ct25-dropwell-rings { display: none; }
  .ct25-form-row { grid-template-columns: 1fr; }
  .ct25-deck-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .ct25-deck-links { justify-content: center; }
}

@media (max-width: 480px) {
  .ct25-dropwell-core { padding: 22px 20px 26px; }
  .ct25-satellite { padding: 16px 18px; }
}
