.btn-glow,
.btn-ghost {
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.28s ease;
}

.btn-glow {
  color: #fff;
  background: linear-gradient(135deg, #79c7ff 0%, #2f7bff 45%, #3ee7ff 100%);
  box-shadow: 0 10px 30px rgba(62, 231, 255, 0.28);
}

.btn-glow:hover {
  color: #04101e;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(62, 231, 255, 0.42);
}

.btn-urgent {
  animation: urgentPulse 1.8s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(62, 231, 255, 0.28); }
  50% { box-shadow: 0 10px 36px rgba(62, 231, 255, 0.55), 0 0 0 6px rgba(62, 231, 255, 0.14); }
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border: 1px solid #fff;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
/* Hero */
.hero {
  /*min-height: 100dvh;*/
  padding: 155px 0 90px;
  position: relative;
  overflow: hidden;
  background: #06101f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 10, 22, 0.72) 0%, rgba(4, 10, 22, 0.42) 58%, rgb(4 10 22 / 26%) 100%), linear-gradient(180deg, rgba(4, 10, 22, 0.4), rgb(4 10 22 / 54%));
}

.hero .container {
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.urgency-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  color: #f6e2b0;
  font-size: 1.15rem;
  font-weight: 600;
}

.urgency-bar strong {
  display: inline-grid;
  place-items: center;
  min-width: 2.1em;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(228, 194, 122, 0.45);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.urgency-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a5a;
  box-shadow: 0 0 0 0 rgba(255, 90, 90, 0.7);
  animation: pulse 1.4s infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e9f3ff;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(62, 231, 255, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(62, 231, 255, 0); }
}

.hero-title {
  font-size: clamp(2.85rem, 5.9vw, 5.25rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

.hero-title .title-line {
  display: block;
  width: fit-content;
  isolation: isolate;
}

.hero-title em {
  font-style: normal;
  position: relative;
  z-index: 1;
  color: #fff8ea;
}

.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: -1%;
  bottom: 0.23em;
  height: 0.19em;
  z-index: -1;
  border-radius: 3px 12px 4px 2px;
  background: linear-gradient(90deg, rgba(228, 194, 122, 0.92), rgb(26, 115, 232));
  transform: skewX(-6deg);
}

.event-meta {
  margin: 6px 0 28px;
}

.event-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.event-line i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #158fd8;
  border-radius: 50%;
  color: #158fd8;
  font-size: 20px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: #F8FBFF;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  max-width: 280px;
}

.avatar-stack {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}

.avatar-stack img {
  width: 46px;
  height: 46px;
  max-width: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -14px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(228, 194, 122, 0.55);
  position: relative;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack img:nth-child(1) { z-index: 4; }
.avatar-stack img:nth-child(2) { z-index: 3; }
.avatar-stack img:nth-child(3) { z-index: 2; }
.avatar-stack img:nth-child(4) { z-index: 1; }   @media (max-width: 991.98px) {
  .hero {
    padding: 120px 0 130px;
  }
  .hero-title { max-width: none; }
  .float-card { display: none; }
  .price-card.featured { transform: none; }
  .agenda-item { grid-template-columns: 1fr; gap: 6px; }
  .explore-tab { display: none; }
  .site-nav { inset: 10px 12px auto; }
  .site-nav .nav-shell { border-radius: 22px; }
  .trust-row {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    margin-top: 8px;
  }
}

@media (max-width: 575.98px) {
  .btn-glow,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-text small {
    display: none;
  }
  .event-line {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Learn / agenda capture */
/*.learn-section {*/
/*  padding-top: 40px;*/
/*}*/

/*.learn-panel {*/
/*  overflow: hidden;*/
/*  border-radius: 32px;*/
/*  border: 1px solid var(--line);*/
/*  box-shadow: var(--shadow);*/
/*}*/

/*.learn-copy {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  padding: 52px 44px 88px;*/
/*  background: #07121f;*/
/*  color: #fff;*/
/*}*/

/*.learn-dots {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  width: 100%;*/
/*  height: 38%;*/
/*  pointer-events: none;*/
/*  z-index: 0;*/
/*}*/

/*.learn-copy > *:not(.learn-dots) {*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/

/*.learn-copy .section-title,*/
/*.learn-copy .section-lead {*/
/*  text-shadow: 0 6px 18px rgba(7, 18, 31, 0.9);*/
/*}*/

/*.section-title {*/
/*    text-align: left;*/
/*}*/

/*.learn-copy .section-lead {*/
/*  margin-bottom: 28px;*/
/*}*/

/*.learn-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 14px;*/
/*  height: 100%;*/
/*  padding: 14px 12px;*/
/*  border-radius: 16px;*/
/*  background: #0b1a2e;*/
/*  border: 1px solid rgba(255, 255, 255, 0.08);*/
/*  transition: 0.25s ease;*/
/*}*/

/*.learn-item:hover {*/
/*  background: #10243f;*/
/*  border-color: rgba(62, 231, 255, 0.28);*/
/*}*/

/*.learn-item p {*/
/*  margin: 0;*/
/*  color: #eef4fb;*/
/*  font-weight: 600;*/
/*  line-height: 1.35;*/
/*}*/

/*.learn-icon {*/
/*  width: 44px;*/
/*  height: 44px;*/
/*  flex-shrink: 0;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  border-radius: 50%;*/
  /*background: #1d6bff;*/
/*  color: #fff;*/
/*  font-size: 1.15rem;*/
/*  background: linear-gradient(135deg, #79c7ff 0%, #2f7bff 45%, #3ee7ff 100%);*/
/*  box-shadow: 0 10px 30px rgba(62, 231, 255, 0.28);*/
/*}*/

/*.learn-form {*/
/*  height: 100%;*/
/*  padding: 52px 40px;*/
/*  background: #f4f7fb;*/
/*  color: #10243f;*/
/*}*/

/*.learn-form h3 {*/
/*  font-size: 2rem;*/
/*  margin-bottom: 8px;*/
/*  color: #07121f;*/
/*}*/

/*.learn-form-lead {*/
/*  color: #5b6f86;*/
/*  margin-bottom: 22px;*/
/*}*/

/*.learn-form .form-control {*/
/*  background: #fff;*/
/*  border: 1px solid #d5dee8;*/
/*  color: #10243f;*/
/*  border-radius: 10px;*/
/*  padding: 14px 16px;*/
/*}*/

/*.learn-form .form-control:focus {*/
/*  background: #fff;*/
/*  color: #10243f;*/
/*  border-color: #1d6bff;*/
/*  box-shadow: 0 0 0 0.2rem rgba(29, 107, 255, 0.15);*/
/*}*/

/*.learn-form .form-control::placeholder {*/
/*  color: #90a0b3;*/
/*}*/

/* Learn / agenda capture */
.learn-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 120px;
  background: #011537;
}

.learn-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, #000 62%, transparent 100%);
  mask-image: linear-gradient(to top, #000 62%, transparent 100%);
}

.learn-section .container {
  position: relative;
  z-index: 1;
}

.learn-copy {
  position: relative;
  padding: 0 12px 28px 0;
}

.learn-copy .section-title em {
  font-style: normal;
  color: #e4c27a;
}

.learn-copy .section-lead {
  margin-bottom: 36px;
  color: #fff;
}

.learn-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  padding: 0;
  margin: 0;
}

.learn-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 12px;
}

.learn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #6ec4ff 0%, #2b7de9 100%);
  color: #fff;
  font-size: 1rem;
}

.learn-icon i {
  line-height: 1;
}

.learn-list p {
  margin: 0;
  color: #eef4fb;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}

.section-title {
    text-align: left;
}

@media (max-width: 767.98px) {
  .learn-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.learn-form {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px 36px;
  background: #f5f8fa;
  border-radius: 20px;
  color: #10243f;
  overflow: hidden;
}

.learn-form h3 {
  font-size: 2rem;
  margin-bottom: 22px;
  color: #07121f;
}

.learn-form .form-control {
  background: #fff;
  border: 1px solid #d5dee8;
  color: #10243f;
  border-radius: 10px;
  padding: 14px 16px;
}

.learn-form .form-control:focus {
  background: #fff;
  color: #10243f;
  border-color: #1d6bff;
  box-shadow: 0 0 0 0.2rem rgba(29, 107, 255, 0.15);
}

.learn-form .form-control::placeholder {
  color: #90a0b3;
}

.btn-agenda {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #1d6bff;
  transition: 0.25s ease;
}

.btn-agenda:hover {
  color: #fff;
  background: #1558d6;
  transform: translateY(-1px);
}

/* Why */
.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0;
  background-color: #081628;
  background-image:
  radial-gradient(880px 520px at 6% -8%, rgb(79 156 255 / 54%), transparent 58%), 
  radial-gradient(720px 440px at 100% 108%, rgba(62, 231, 255, 0.16), transparent 54%), 
  linear-gradient(165deg, rgb(22 79 158 / 94%) 0%, rgb(20 61 120 / 65%) 100%), 
  url(../images/background/why-ctip.webp);
  background-size: cover;
  background-position: center;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(5, 16, 32, 0.28);
}

.why-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(159, 212, 255, 0.55), transparent);
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 72px;
  align-items: center;
}

.why-reasons .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 28px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.why-reasons .section-title em {
  font-style: normal;
  color: #e4c27a;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: grid;
  grid-template-columns: 28px 1px 42px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 9px 0;
}

.why-list-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e4c27a;
}

.why-list-rule {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(126, 200, 255, 0.55);
}

.why-list p {
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.why-list-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #5ec8f0;
  color: #e4c27a;
  background: linear-gradient(135deg, #072b59, #082853);
  font-size: 1.05rem;
}

.audience-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #e4c27a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.audience-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #e4c27a;
}

.audience-heading {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 20px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.audience-roles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 12px;
}

.audience-roles:last-child {
  margin-bottom: 0;
}

.audience-roles li {
  margin: 0;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6e2b0db, #66a4ff);
  border: 1px solid #212529;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.why-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(94, 200, 240, 0.28);
  background: none;
  border-radius: 0;
}

.why-cta-copy {
  padding-left: 16px;
  border-left: 3px solid #3ee7ff;
}

.why-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 4px;
  color: aliceblue;
}

.why-cta p {
  margin: 0;
  color: #9bb8d0;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.section-title {
    color: #fff;
}

.why-section {
    padding: 50px 0;
    position: relative;
}

.section-kicker {
display: inline-flex;
align-items: center;
gap: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
color: #E4C27A;
margin-bottom: 14px;
}

.section-kicker::before {
content: "";
width: 28px;
height: 1px;
background: linear-gradient(90deg, #E4C27A, transparent);
}

.section-title {
font-size: 2.7rem;
line-height: 1.05;
font-weight: 600;
margin-bottom: 18px;
}
.early-bird-tag {
display: inline-block;
margin-bottom: 14px;
padding: 8px 14px;
border-radius: 999px;
background: linear-gradient(135deg, #dc3545, #fd7e14); 
/*rgba(228, 194, 122, 0.16);*/
border: 1px solid #E4C27A;
color: #fff;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.ctip-urgency-strip {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 3500;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    max-width: calc(100% - 24px);
    padding: 14px 14px 14px 18px;
    border-radius: 999px;
    background: linear-gradient(105deg, #07133b 0%, #0c1f52 48%, #07133b 100%);
    border: 1.5px solid rgba(21, 143, 216, 0.65);
    box-shadow:
        0 16px 40px rgba(7, 19, 59, 0.65),
        0 0 28px rgba(21, 143, 216, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    transform: translate(-50%, 120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 1s ease,
        opacity 1s ease,
        visibility 1s ease;
}

.ctip-urgency-strip.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ctip-urgency-strip__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ctip-urgency-strip__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    animation: ctipMegaGlow 2s ease-in-out infinite;
}

.ctip-urgency-strip__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctip-urgency-strip__badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(234deg, #1E7CFF, #0DCAF0);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(21, 143, 216, 0.45);
}

.ctip-urgency-strip__rule {
    flex-shrink: 0;
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent, rgba(21, 143, 216, 0.55), transparent);
}

.ctip-urgency-strip__copy {
    min-width: 0;
    flex: 0 1 auto;
}

.ctip-urgency-strip__title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    white-space: nowrap;
}

.ctip-urgency-strip__title em {
    font-style: normal;
    color: #4db8ff;
}

.ctip-urgency-strip__text {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

.ctip-urgency-strip__clock {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
    margin: 0 2px;
}

.ctip-urgency-strip__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ctip-urgency-strip__num {
    min-width: 46px;
    padding: 9px 8px;
    border: 1.5px solid transparent;
    border-radius: 10px;
    background: linear-gradient(180deg, #0C1F52 0%, #07133B 100%) padding-box, linear-gradient(180deg, #E4C27A 0%, #FFC107 100%) border-box;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
    box-shadow:
        0 0 12px rgba(21, 143, 216, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ctip-urgency-strip__unit:last-child .ctip-urgency-strip__num {
    animation: ctipTimerPulse 1s ease-in-out infinite;
    color: #9ad8ff;
}

.ctip-urgency-strip__label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #FFD34F;
    line-height: 1;
}

.ctip-urgency-strip__sep {
    padding-top: 9px;
    color: #158fd8;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    animation: ctipColonBlink 1s step-end infinite;
}

.ctip-urgency-strip__flourish {
    flex-shrink: 0;
    width: 22px;
    height: 48px;
    margin: 0 -2px;
    opacity: 0.95;
}

.ctip-urgency-strip__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #79c7ff 0%, #2f7bff 45%, #3ee7ff 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
    cursor: pointer;
    animation: ctipStripBlink 1.1s ease-in-out infinite;
}

.ctip-urgency-strip__btn:hover {
    color: #fff;
}

.ctip-urgency-strip__close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(21, 143, 216, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.ctip-urgency-strip__close:hover {
    background: rgba(21, 143, 216, 0.28);
    color: #fff;
}

@keyframes ctipStripBlink {
    0%, 100% {
        filter: brightness(1);
        box-shadow: 0 8px 22px rgba(21, 143, 216, 0.45);
    }
    50% {
        filter: brightness(1.18);
        box-shadow: 0 0 24px 5px rgba(21, 143, 216, 0.65);
    }
}

@media (max-width: 991.98px) {
    .ctip-urgency-strip {
        gap: 12px;
        padding: 12px;
        border-radius: 28px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: calc(100% - 16px);
    }

    .ctip-urgency-strip__flourish {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ctip-urgency-strip {
        gap: 10px;
        width: calc(100% - 16px);
        max-width: 460px;
    }

    .ctip-urgency-strip__rule {
        display: none;
    }

    .ctip-urgency-strip__copy {
        flex: 1 1 100%;
        order: 3;
        text-align: center;
    }

    .ctip-urgency-strip__clock {
        order: 4;
        flex: 1 1 100%;
        justify-content: center;
        margin: 0;
    }

    .ctip-urgency-strip__btn {
        order: 5;
    }

    .ctip-urgency-strip__close {
        order: 2;
        margin-left: auto;
    }

    .ctip-urgency-strip__title,
    .ctip-urgency-strip__text {
        white-space: normal;
    }

    .ctip-urgency-strip__title {
        font-size: 14px;
    }

    .ctip-urgency-strip__text {
        font-size: 12px;
    }

    .ctip-urgency-strip__num {
        min-width: 38px;
        font-size: 14px;
        padding: 7px 6px;
    }

    .ctip-urgency-strip__btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .learn-form {
        padding: 30px 10px;
    }
}


@media (max-width: 400px) {
    .hero {
        padding: 160px 0 75px;
    }
    .hero-title {
        font-size: 35px;
    }
    .hero-title .title-line {
        display: inline;
    }
    .btn-glow, .btn-ghost {
        padding: 14px 16px;
    }
    .section-title {
        font-size: 30px;
    }
    .impact-cell {
        padding: 4px 0;
    }
    .impact-strip {
        grid-template-columns: 1fr;
    }
    .impact-cell + .impact-cell::before {
        display: none;
    }
    .why-cta {
        padding: 28px 15px;
    }
    .learn-copy {
        padding: 30px 15px 70px;
    }
    .learn-form {
        padding: 52px 15px;
    }
}