:root {
  --flurus-primary: #f28320;
  --flurus-primary-dark: #d36b12;
  --flurus-dark: #29394b;
  --flurus-muted: #6f7f90;
  --flurus-light: #f7f2eb;
  --flurus-border: #e2d7cc;
  --flurus-surface: #fffaf5;
  --header-offset: 120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--flurus-dark);
  background: var(--flurus-light);
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
  padding-top: 77px;
  position: relative;
}

.section[id]::before {
  content: "";
  display: block;
  height: calc(var(--header-offset) + 5px);
  margin-top: calc(-1 * var(--header-offset) - 5px);
  pointer-events: none;
  visibility: hidden;
}

.section-alt {
  background: radial-gradient(circle at 85% 10%, rgba(242, 131, 32, 0.18), transparent 45%), #fffaf5;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(41, 57, 75, 0.08), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.section-alt > * {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: linear-gradient(120deg, #29394b 0%, #1f2b3a 55%, #16212c 100%);
  color: #f8fafc;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(242, 131, 32, 0.3), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #ffffff;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--flurus-primary);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.125rem;
  color: var(--flurus-muted);
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(242, 131, 32, 0.14);
  color: var(--flurus-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-open {
  color: #16a34a;
  font-weight: 600;
}

.status-warning {
  color: #f97316;
  font-weight: 600;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
}

body.is-scrolled .site-header {
  background: rgba(247, 242, 235, 0.96);
  box-shadow: 0 10px 30px rgba(41, 57, 75, 0.12);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  color: var(--flurus-dark);
}

body.admin-bar {
  --header-offset: 152px;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header .site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.brand {
  gap: 12px;
}

body:not(.is-scrolled) .brand {
  position: relative;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(254, 250, 244, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 41, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body:not(.is-scrolled) .wp-block-site-logo img {
  filter: drop-shadow(0 6px 18px rgba(15, 23, 41, 0.45));
}

body:not(.is-scrolled) .brand-title a {
  text-shadow: 0 6px 18px rgba(15, 23, 41, 0.35);
}

.brand-title a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.is-scrolled .brand-title a {
  color: var(--flurus-dark);
}

body.is-scrolled .brand-tagline {
  color: var(--flurus-muted);
}

.site-nav .wp-block-navigation-item__content {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav .wp-block-navigation__container {
  gap: 24px;
}

body.is-scrolled .site-nav .wp-block-navigation-item__content {
  color: var(--flurus-dark);
}

.site-nav .wp-block-navigation-item__content:hover {
  color: var(--flurus-primary);
}

body:not(.is-scrolled) .site-nav .wp-block-navigation-item__content:hover {
  color: #ffd7b3;
}

.header-cta .wp-block-button__link {
  background: var(--flurus-primary);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(242, 131, 32, 0.3);
}

body.is-scrolled .header-cta .wp-block-button__link {
  background: var(--flurus-dark);
  color: #ffffff;
  box-shadow: none;
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: #ffffff;
}

body.is-scrolled .wp-block-navigation__responsive-container-open,
body.is-scrolled .wp-block-navigation__responsive-container-close {
  color: var(--flurus-dark);
}

.hero-cover {
  min-height: 90vh;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 158, 72, 0.45), transparent 52%),
    radial-gradient(circle at 88% -6%, rgba(242, 131, 32, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(16, 25, 36, 0.18) 0%, rgba(16, 25, 36, 0.58) 100%),
    linear-gradient(120deg, #29394b 0%, #1f2b3a 55%, #16212c 100%);
}

.hero-cover .wp-block-cover__inner-container {
  padding-top: clamp(96px, 12vh, 160px);
}

.hero-cover::before,
.hero-cover::after {
  content: none;
  display: none;
}

.hero-cover .wp-block-cover__background,
.hero-cover .wp-block-cover__gradient-background {
  display: none;
}

.hero-cover .wp-block-cover__image-background {
  opacity: 0;
}

.hero-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 1.125rem;
  color: #e7edf5;
  margin-bottom: 32px;
}

.hero-buttons {
  justify-content: center;
  gap: 16px;
}

.hero-buttons .wp-block-button__link {
  background: var(--flurus-primary);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  display: inline-flex;
  box-shadow: 0 18px 36px rgba(242, 131, 32, 0.32);
}

.hero-buttons .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: none;
}

.hero-metrics {
  margin-top: 32px;
  gap: 20px;
}

.hero-metric {
  border-radius: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 160px;
}

.hero-metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.hero-metric-label {
  margin: 4px 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  margin-top: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(242, 131, 32, 0.2), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.about-media {
  position: relative;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(41, 57, 75, 0.18);
}

.about-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--flurus-border);
  max-width: 240px;
  box-shadow: 0 20px 40px rgba(41, 57, 75, 0.12);
}

.about-years {
  font-size: 2rem;
  font-weight: 700;
  color: var(--flurus-primary);
  margin: 0 0 8px;
}

.about-years-label {
  font-size: 0.85rem;
  color: var(--flurus-muted);
  margin: 0;
}

.product-mockup {
  background: var(--flurus-surface);
  border: 1px solid var(--flurus-border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(41, 57, 75, 0.18);
  position: relative;
  overflow: hidden;
}

.product-mockup::after {
  content: "";
  position: absolute;
  inset: auto -35% -45% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 131, 32, 0.18), transparent 65%);
  z-index: 0;
}

.product-mockup > * {
  position: relative;
  z-index: 1;
}

.product-mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.product-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(41, 57, 75, 0.2);
}

.product-mockup-body {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 16px;
}

.product-mockup-sidebar {
  background: var(--flurus-light);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.product-mockup-sidebar div {
  height: 10px;
  border-radius: 999px;
  background: rgba(41, 57, 75, 0.18);
}

.product-mockup-pill {
  height: 18px;
  border-radius: 999px;
  background: rgba(242, 131, 32, 0.35);
}

.product-mockup-content {
  display: grid;
  gap: 12px;
}

.product-mockup-kpi {
  background: var(--flurus-dark);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-mockup-kpi span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.product-mockup-kpi strong {
  font-size: 1.2rem;
}

.product-mockup-card {
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--flurus-border);
  box-shadow: 0 10px 24px rgba(41, 57, 75, 0.08);
  position: relative;
  overflow: hidden;
}

.product-mockup-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 40%;
  top: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(41, 57, 75, 0.15);
}

.product-mockup-card.is-tall {
  height: 68px;
}

.product-mockup-card.is-tall::after {
  right: 25%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 20px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flurus-primary);
  font-weight: 700;
}

.tabs {
  margin-top: 32px;
}

.tab-buttons {
  padding: 12px 0 20px;
}

.tab-buttons .wp-block-button__link {
  border-radius: 999px;
  background: #ffffff;
  color: var(--flurus-dark);
  border: 1px solid var(--flurus-border);
  padding: 10px 22px;
  font-weight: 600;
}

.tab-button.is-active .wp-block-button__link {
  background: var(--flurus-primary);
  color: #ffffff;
  border-color: var(--flurus-primary);
}

.tabs.is-js .tab-panel {
  display: none;
}

.tabs.is-js .tab-panel.is-active {
  display: block;
}

.course-card {
  background: #ffffff;
  border: 1px solid var(--flurus-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(41, 57, 75, 0.08);
}

.course-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242, 131, 32, 0.16);
  color: var(--flurus-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.course-meta {
  border-top: 1px solid var(--flurus-border);
  margin-top: 16px;
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--flurus-muted);
}

.course-meta-row {
  margin-bottom: 6px;
}

.course-meta-row .wp-block-paragraph {
  margin: 0;
}

.course-meta-label {
  font-weight: 500;
}

.course-meta-value {
  color: var(--flurus-dark);
  font-weight: 600;
}

.plugin-grid {
  margin-top: 32px;
}

.plugin-card {
  background: #ffffff;
  border: 1px solid var(--flurus-border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 36px rgba(41, 57, 75, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plugin-card--primary {
  background: var(--flurus-surface);
  border-color: rgba(242, 131, 32, 0.45);
  box-shadow: 0 24px 44px rgba(242, 131, 32, 0.18);
}

.plugin-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.plugin-list li {
  position: relative;
  padding-left: 22px;
  color: var(--flurus-muted);
  font-weight: 500;
}

.plugin-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--flurus-primary);
  font-weight: 700;
}

.plugin-card-buttons {
  margin-top: auto;
  gap: 12px;
}

.plugin-card-buttons .wp-block-button__link {
  padding: 10px 18px;
}

.platform-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.platform-card {
  background: #ffffff;
  border: 1px solid var(--flurus-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(41, 57, 75, 0.08);
}

.platform-card-title {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.home-cta .lead {
  color: rgba(255, 255, 255, 0.72);
}

.home-cta .cta-buttons {
  justify-content: flex-start;
  gap: 16px;
}

.home-cta .wp-block-button__link {
  background: var(--flurus-primary);
  color: #ffffff;
  padding: 12px 22px;
  box-shadow: 0 18px 36px rgba(242, 131, 32, 0.28);
}

.home-cta .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  box-shadow: none;
}

.method-grid {
  margin-top: 32px;
}

.method-step {
  text-align: center;
  padding: 16px;
}

.method-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(242, 131, 32, 0.12);
  color: var(--flurus-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.schedule-header {
  margin-bottom: 24px;
  gap: 24px;
}

.schedule-link a {
  color: var(--flurus-primary);
  font-weight: 600;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--flurus-border);
}

.schedule-table th,
.schedule-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--flurus-border);
}

.schedule-table th {
  font-weight: 700;
}

.schedule-table td:nth-child(2) strong {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--flurus-light);
  font-weight: 600;
}

.schedule-table td:nth-child(6) strong {
  color: #16a34a;
  font-weight: 600;
}

.schedule-table td:nth-child(6) em {
  color: #f97316;
  font-weight: 600;
  font-style: normal;
}

.teacher-grid {
  margin-top: 32px;
}

.teacher-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--flurus-border);
  box-shadow: 0 16px 32px rgba(41, 57, 75, 0.08);
}

.teacher-card img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.teacher-role {
  color: var(--flurus-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.integration-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(242, 131, 32, 0.16);
  color: var(--flurus-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.teacher-tags {
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background: var(--flurus-light);
  color: var(--flurus-muted);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
}

.teacher-tags .wp-block-paragraph {
  margin: 0;
}

.testimonial-track {
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(41, 57, 75, 0.1);
  scroll-snap-align: start;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #475569;
}

.testimonial-author {
  font-weight: 700;
  margin-top: 16px;
}

.testimonial-meta {
  color: var(--flurus-muted);
  font-size: 0.85rem;
}

.pricing-grid {
  margin-top: 32px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.section-dark .pricing-card {
  color: #f8fafc;
}

.pricing-card ul {
  padding-left: 18px;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.7);
  margin-top: -12px;
}

.pricing-price {
  margin: 16px 0;
  gap: 8px;
  align-items: baseline;
}

.pricing-price-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.pricing-price-unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-featured {
  background: var(--flurus-primary);
  border-color: var(--flurus-primary);
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(242, 131, 32, 0.35);
}

.pricing-flag {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff3d6;
  color: #7a3b00;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  border-bottom-left-radius: 12px;
}

.pricing-section .wp-block-button__link {
  padding: 12px 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.wp-block-details {
  border: 1px solid var(--flurus-border);
  border-radius: 12px;
  padding: 14px 18px;
  background: #ffffff;
}

.wp-block-details summary {
  font-weight: 600;
  cursor: pointer;
}

.contact-columns {
  gap: 32px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--flurus-border);
}

.map-placeholder {
  margin: 16px 0 0;
  background: #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--flurus-muted);
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--flurus-border);
  box-shadow: 0 20px 40px rgba(41, 57, 75, 0.08);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--flurus-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--flurus-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--flurus-surface);
}

.contact-form button {
  background: var(--flurus-primary);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.pricing-section .wp-block-button__link {
  background: var(--flurus-primary);
  color: #ffffff;
  border: 1px solid var(--flurus-primary);
  box-shadow: 0 14px 26px rgba(242, 131, 32, 0.28);
}

.pricing-section .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.pricing-section .is-style-outline .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Portal v2 */
.portal-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 131, 32, 0.15), transparent 40%),
    radial-gradient(circle at 90% 25%, rgba(41, 57, 75, 0.12), transparent 45%),
    #f7f3ee;
  overflow-x: clip;
}

.portal-nav .wp-block-navigation__container {
  gap: 18px;
}

.portal-header-cta .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  box-shadow: none;
}

body.is-scrolled .portal-header-cta .is-style-outline .wp-block-button__link {
  background: #e8edf2;
  border-color: #d1dae4;
  color: var(--flurus-dark);
}

.portal-splash {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 182, 119, 0.55), transparent 45%),
    linear-gradient(132deg, #26364a 0%, #1e2a38 52%, #141d29 100%);
}

.portal-splash::before {
  content: "";
  position: absolute;
  width: min(42vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 131, 32, 0.42), rgba(242, 131, 32, 0) 68%);
  top: -30%;
  right: -10%;
  pointer-events: none;
}

.portal-splash .wp-block-cover__inner-container {
  padding-top: clamp(128px, 16vh, 220px);
  position: relative;
  z-index: 1;
}

.portal-splash-columns {
  gap: 48px;
}

.portal-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.portal-title {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 12.5em;
}

.portal-title-tail {
  display: block;
  min-height: 1.35em;
  margin-top: 0.24em;
  font-size: clamp(1.12rem, 2.3vw, 1.68rem);
  line-height: 1.25;
  font-weight: 600;
  color: #ffd8b9;
  white-space: nowrap;
}

.portal-lead {
  color: #d8e1ec;
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 44rem;
  margin: 0 0 16px;
}

.portal-selected-line {
  margin: 0 0 26px;
  color: #f2f6fc;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 1.35em;
}

.portal-splash-buttons {
  gap: 14px;
}

.portal-splash-buttons .wp-block-button__link {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  background: var(--flurus-primary);
  border: 1px solid var(--flurus-primary);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(242, 131, 32, 0.35);
}

.portal-splash-buttons .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  box-shadow: none;
}

.portal-selector-card {
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2) 0%, rgba(218, 229, 241, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 32px 54px rgba(9, 16, 26, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portal-selector-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffdcbf;
}

.portal-selector-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

.portal-selector-text {
  margin: 0;
  color: #dae3ee;
  font-size: 0.96rem;
  line-height: 1.65;
  min-height: 5em;
}

.portal-persona-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.portal-persona-button {
  appearance: none;
  border: 1px solid rgba(227, 236, 246, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.portal-persona-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(15, 23, 35, 0.26);
  border-color: rgba(255, 255, 255, 0.48);
}

.portal-persona-button.is-active {
  border-color: var(--flurus-primary);
  background: var(--flurus-primary);
  color: #ffffff;
  box-shadow: 0 16px 26px rgba(242, 131, 32, 0.33);
}

.portal-tailored .portal-persona-content {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #d9e2ec;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 20px 40px rgba(41, 57, 75, 0.09);
}

.portal-tailored-cards {
  margin-top: 18px;
  gap: 16px;
}

.portal-tailored-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid #d7e0ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  padding: 20px;
}

.portal-tailored-card h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}

.portal-tailored-card p {
  margin: 0;
  color: var(--flurus-muted);
  line-height: 1.7;
}

.portal-feature-band {
  background:
    radial-gradient(circle at 80% 15%, rgba(242, 131, 32, 0.2), transparent 42%),
    #fdfaf6;
}

.portal-feature-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portal-feature-item {
  margin: 0;
  border: 1px solid #dfd6cb;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(41, 57, 75, 0.08);
}

.portal-feature-tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(41, 57, 75, 0.11);
  color: #2b3b4d;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-feature-tag.is-pro {
  background: rgba(242, 131, 32, 0.2);
  color: #7f3d08;
}

.portal-feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.portal-feature-item p {
  margin: 0;
  color: var(--flurus-muted);
  line-height: 1.68;
}

.portal-feature-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portal-feature-column {
  padding: 20px;
}

.portal-feature-column-kicker {
  margin: 0 0 8px;
}

.portal-feature-column h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
}

.portal-feature-column-pro {
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
  border-color: #e8d8c8;
}

.portal-feature-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.portal-feature-detail {
  margin: 0;
  padding: 12px;
  border: 1px solid #e1e8ef;
  border-radius: 12px;
  background: #ffffff;
}

.portal-feature-column-pro .portal-feature-detail {
  border-color: #e7d8c9;
  background: #fffefc;
}

.portal-feature-detail h4 {
  margin: 0 0 4px;
  font-size: 0.94rem;
  line-height: 1.35;
  color: #243548;
}

.portal-feature-detail p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--flurus-muted);
}

.portal-pro-path {
  background:
    radial-gradient(circle at 18% 0%, rgba(41, 57, 75, 0.08), transparent 45%),
    radial-gradient(circle at 90% 78%, rgba(242, 131, 32, 0.16), transparent 40%),
    #f7f3ee;
}

.portal-upgrade-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.portal-upgrade-step {
  border: 1px solid #d8e0e9;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(41, 57, 75, 0.07);
}

.portal-upgrade-step-kicker {
  margin: 0 0 10px;
  color: var(--flurus-primary-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.portal-upgrade-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.portal-upgrade-step p {
  margin: 0;
  color: var(--flurus-muted);
  line-height: 1.7;
}

.portal-upgrade-step-highlight {
  border-color: rgba(242, 131, 32, 0.45);
  background: linear-gradient(180deg, #fff6ee 0%, #ffffff 100%);
}

.portal-pro-card {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid #d6dfea;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(145deg, #fef9f4 0%, #ffffff 55%, #f7fbff 100%);
  box-shadow: 0 18px 34px rgba(41, 57, 75, 0.1);
}

.portal-pro-card-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7d430f;
}

.portal-pro-lead {
  margin: 0 0 14px;
  color: #2f3f52;
  line-height: 1.7;
  max-width: 62ch;
}

.portal-pro-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.portal-pro-list li {
  color: #334659;
  line-height: 1.65;
}

.portal-pro-buttons {
  margin-top: 18px;
  gap: 12px;
}

.portal-pro-buttons .wp-block-button__link {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  background: var(--flurus-primary);
  border: 1px solid var(--flurus-primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(242, 131, 32, 0.3);
}

.portal-pro-buttons .is-style-outline .wp-block-button__link {
  background: #eef3f9;
  border: 1px solid #cedae7;
  color: var(--flurus-dark);
  box-shadow: none;
}

.portal-checkout-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 131, 32, 0.2), transparent 44%),
    radial-gradient(circle at 14% 78%, rgba(41, 57, 75, 0.09), transparent 46%),
    #fdf8f2;
}

.portal-checkout-shell {
  border: 1px solid #d6dee8;
  border-radius: 22px;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(145deg, #fefcf9 0%, #ffffff 56%, #f8fbff 100%);
  box-shadow: 0 18px 34px rgba(41, 57, 75, 0.1);
}

.portal-checkout-note {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #42566b;
}

.portal-checkout-note a {
  color: var(--flurus-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portal-checkout-band .cppls-external-checkout-wrap {
  margin: 0;
  --cppls-bg: #f8f5f0;
  --cppls-card: #ffffff;
  --cppls-line: #d9e1ea;
  --cppls-ink: #29394b;
  --cppls-muted: #627487;
  --cppls-accent: var(--flurus-primary-dark);
  --cppls-accent-2: var(--flurus-primary);
}

.portal-checkout-band .cppls-submit-button {
  border-color: var(--flurus-primary-dark);
  box-shadow: 0 10px 22px rgba(242, 131, 32, 0.3);
}

.portal-checkout-band .cppls-method-chip.is-active {
  border-color: var(--flurus-primary-dark);
  background: linear-gradient(110deg, var(--flurus-primary-dark) 0%, var(--flurus-primary) 100%);
}

.portal-flow {
  position: relative;
}

.portal-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 40%, rgba(41, 57, 75, 0.07), transparent 52%);
  pointer-events: none;
}

.portal-flow > * {
  position: relative;
  z-index: 1;
}

.portal-flow-steps {
  gap: 16px;
}

.portal-flow-step {
  height: 100%;
  border-radius: 18px;
  border: 1px solid #dbe3ec;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(41, 57, 75, 0.08);
  padding: 24px;
}

.portal-flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(242, 131, 32, 0.16);
  color: #7a3d0b;
  font-weight: 700;
  margin: 0 0 12px;
}

.portal-flow-step h3 {
  margin-bottom: 8px;
}

.portal-flow-step p {
  margin: 0;
  color: var(--flurus-muted);
  line-height: 1.7;
}

.portal-final-cta {
  background:
    radial-gradient(circle at 20% -10%, rgba(242, 131, 32, 0.3), transparent 40%),
    linear-gradient(130deg, #29394b 0%, #1d2938 58%, #131c27 100%);
}

.portal-final-columns {
  gap: 30px;
}

.portal-final-cta .lead {
  color: #d4deea;
}

.portal-final-buttons {
  gap: 12px;
}

.portal-final-buttons .wp-block-button__link {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  background: var(--flurus-primary);
  border: 1px solid var(--flurus-primary);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(242, 131, 32, 0.35);
}

.portal-final-buttons .is-style-outline .wp-block-button__link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  box-shadow: none;
}

.portal-final-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.portal-final-card h3 {
  margin: 0 0 12px;
}

.portal-final-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.portal-final-card li {
  color: #e7edf6;
}

.site-footer {
  background: #1f2b3a;
  color: #e2e8f0;
  padding: 64px 0 32px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-columns {
  margin-bottom: 32px;
}

.footer-title a {
  color: #ffffff;
}

.footer-text {
  color: #cbd5e1;
}

.footer-social a {
  color: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  :root {
    --header-offset: 140px;
  }

  body.admin-bar {
    --header-offset: 172px;
  }

  .site-header .site-header-inner {
    flex-wrap: wrap;
  }

  .hero-cover .wp-block-cover__inner-container {
    padding-top: clamp(140px, 18vh, 220px);
  }

  .about-card {
    position: static;
    margin-top: 16px;
  }

  .pricing-featured {
    transform: none;
  }

  .portal-splash-columns {
    gap: 26px;
  }

  .portal-selector-card {
    margin-top: 8px;
  }

  .portal-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portal-upgrade-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
    padding-top: 77px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-metric {
    min-width: 100%;
  }

  .portal-nav .wp-block-navigation__container {
    gap: 12px;
  }

  .portal-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .portal-title-tail {
    font-size: 1rem;
    min-height: 1.35em;
  }

  .portal-splash-buttons {
    flex-direction: column;
  }

  .portal-feature-grid {
    grid-template-columns: 1fr;
  }

  .portal-selector-card {
    padding: 18px;
  }

  .portal-selector-text {
    min-height: 6.7em;
  }

  .portal-pro-buttons {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
  }

  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.6s; }

  .stagger-grid > .wp-block-column,
  .pricing-grid > .wp-block-column,
  .testimonial-track > .testimonial-card {
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
  }

  .portal-splash-columns > .wp-block-column,
  .portal-feature-grid > .portal-feature-item,
  .portal-flow-steps > .wp-block-column,
  .portal-upgrade-track > .portal-upgrade-step,
  .portal-pro-card {
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
  }

  .stagger-grid > .wp-block-column:nth-child(1),
  .pricing-grid > .wp-block-column:nth-child(1),
  .testimonial-track > .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .stagger-grid > .wp-block-column:nth-child(2),
  .pricing-grid > .wp-block-column:nth-child(2),
  .testimonial-track > .testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .stagger-grid > .wp-block-column:nth-child(3),
  .pricing-grid > .wp-block-column:nth-child(3),
  .testimonial-track > .testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .stagger-grid > .wp-block-column:nth-child(4),
  .pricing-grid > .wp-block-column:nth-child(4),
  .testimonial-track > .testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
  }

  .portal-splash-columns > .wp-block-column:nth-child(1),
  .portal-feature-grid > .portal-feature-item:nth-child(1),
  .portal-flow-steps > .wp-block-column:nth-child(1) {
    animation-delay: 0.1s;
  }

  .portal-splash-columns > .wp-block-column:nth-child(2),
  .portal-feature-grid > .portal-feature-item:nth-child(2),
  .portal-flow-steps > .wp-block-column:nth-child(2) {
    animation-delay: 0.2s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(3),
  .portal-flow-steps > .wp-block-column:nth-child(3) {
    animation-delay: 0.3s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(6) {
    animation-delay: 0.6s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(7) {
    animation-delay: 0.7s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(8) {
    animation-delay: 0.8s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(9) {
    animation-delay: 0.9s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(10) {
    animation-delay: 1s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(11) {
    animation-delay: 1.1s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(12) {
    animation-delay: 1.2s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(13) {
    animation-delay: 1.3s;
  }

  .portal-feature-grid > .portal-feature-item:nth-child(14) {
    animation-delay: 1.4s;
  }

  .portal-upgrade-track > .portal-upgrade-step:nth-child(1) {
    animation-delay: 0.15s;
  }

  .portal-upgrade-track > .portal-upgrade-step:nth-child(2) {
    animation-delay: 0.25s;
  }

  .portal-upgrade-track > .portal-upgrade-step:nth-child(3) {
    animation-delay: 0.35s;
  }

  .portal-pro-card {
    animation-delay: 0.2s;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .scroll-indicator {
    animation: none;
  }

  .hero-content > *,
  .stagger-grid > .wp-block-column,
  .pricing-grid > .wp-block-column,
  .testimonial-track > .testimonial-card,
  .portal-splash-columns > .wp-block-column,
  .portal-feature-grid > .portal-feature-item,
  .portal-flow-steps > .wp-block-column,
  .portal-upgrade-track > .portal-upgrade-step,
  .portal-pro-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.editor-styles-wrapper .site-header {
  position: static;
  padding: 16px 0;
  background: #ffffff;
}

.editor-styles-wrapper .brand-title a,
.editor-styles-wrapper .site-nav .wp-block-navigation-item__content {
  color: var(--flurus-dark);
}

.editor-styles-wrapper .brand-tagline {
  color: var(--flurus-muted);
}
