@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/*
Theme Name: Cyclio
Theme URI: https://cyclio.ai
Author: Cyclio
Description: Lightweight custom marketing theme for Cyclio, recurring-care scheduling software.
Version: 0.2.0
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: cyclio
*/

:root {
  --cyclio-ivory: #fbf7ef;
  --cyclio-ivory-deep: #f4ecdf;
  --cyclio-plum: #561269;
  --cyclio-berry: #96367c;
  --cyclio-violet: #8b4bd8;
  --cyclio-ink: #211928;
  --cyclio-muted: #6f6674;
  --cyclio-border: rgba(86, 18, 105, 0.13);
  --cyclio-white: #fffdf9;
  --cyclio-shadow: 0 24px 70px rgba(63, 26, 70, 0.12);
  --cyclio-gradient: linear-gradient(135deg, #561269 0%, #96367c 100%);
  --cyclio-radius: 24px;
  --cyclio-radius-sm: 16px;
  --cyclio-max: 1240px;
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cyclio-ivory);
  color: var(--cyclio-ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-shell { overflow: hidden; }
.wrap { width: min(calc(100% - 40px), var(--cyclio-max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(86,18,105,.06);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display:flex; align-items:center; width: 205px; height: 64px; }
.brand img { width: 205px; height: 64px; display: block; object-fit: contain; object-position: left center; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}
.nav a:not(.button) { color: #4f4654; }
.nav a:hover:not(.button) { color: var(--cyclio-plum); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: white;
  background: var(--cyclio-gradient);
  box-shadow: 0 12px 26px rgba(86,18,105,.18);
}
.button-secondary {
  color: var(--cyclio-plum);
  background: rgba(255,255,255,.55);
  border-color: rgba(86,18,105,.18);
}
.button-ghost {
  min-height: 42px;
  padding: 0 18px;
  color: var(--cyclio-plum);
  background: transparent;
  border-color: rgba(86,18,105,.16);
}

.hero {
  position: relative;
  padding: 94px 0 76px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -180px;
  background: radial-gradient(circle, rgba(150,54,124,.15), rgba(150,54,124,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyclio-plum);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyclio-gradient);
  box-shadow: 0 0 0 5px rgba(150,54,124,.09);
}
h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: -.045em; line-height: 1.02; font-weight: 750; }
h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(48px, 6.4vw, 78px);
  font-weight: 750;
}
.gradient-text {
  background: var(--cyclio-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 640px;
  margin-top: 24px;
  color: var(--cyclio-muted);
  font-size: 20px;
  line-height: 1.66;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-note {
  margin-top: 22px;
  color: #7c727f;
  font-size: 13px;
}
.hero-note strong { color: var(--cyclio-plum); }

.product-shell {
  position: relative;
  background: rgba(255,253,249,.78);
  border: 1px solid rgba(86,18,105,.12);
  border-radius: 28px;
  box-shadow: var(--cyclio-shadow);
  padding: 18px;
}
.product-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 8px;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d8cdd8; }
.product-top small { color: #817682; font-weight: 650; }
.dashboard {
  border: 1px solid rgba(86,18,105,.10);
  border-radius: 19px;
  overflow: hidden;
  background: #fffdfa;
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 19px 16px;
  border-bottom: 1px solid rgba(86,18,105,.08);
}
.dashboard-head strong { font-size: 15px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #426150;
  background: #edf6ef;
  font-size: 11px;
  font-weight: 750;
}
.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #62a776;
  border-radius: 50%;
}
.dashboard-body {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 410px;
}
.schedule {
  padding: 16px;
  border-right: 1px solid rgba(86,18,105,.08);
}
.schedule-labels {
  display: grid;
  grid-template-columns: 46px repeat(5, 1fr);
  gap: 6px;
  color: #827885;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.schedule-grid {
  position: relative;
  display: grid;
  grid-template-columns: 46px repeat(5, 1fr);
  grid-template-rows: repeat(7, 39px);
  gap: 6px;
}
.time {
  color: #918594;
  font-size: 9px;
  align-self: start;
  padding-top: 3px;
}
.slot {
  min-width: 0;
  border-radius: 8px;
  padding: 6px 6px;
  color: #5c405e;
  background: #f2e2ef;
  border: 1px solid rgba(150,54,124,.08);
  font-size: 8px;
  line-height: 1.2;
  overflow: hidden;
}
.slot.alt { background: #e9e1f5; color: #56416c; }
.slot.soft { background: #f7ece6; color: #755b4f; }
.slot.blank { background: rgba(86,18,105,.025); border-style: dashed; }
.optimizing {
  position: absolute;
  left: 48%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 170px;
  padding: 14px 15px;
  border-radius: 14px;
  color: white;
  background: var(--cyclio-gradient);
  box-shadow: 0 16px 35px rgba(86,18,105,.25);
  text-align: center;
}
.optimizing strong { display: block; font-size: 13px; margin-bottom: 4px; }
.optimizing span { font-size: 9px; opacity: .85; }
.optimizing-bar {
  height: 4px;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.23);
}
.optimizing-bar::after {
  content: "";
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: white;
}
.metrics {
  padding: 17px 16px;
  background: #fffcf8;
}
.metrics h4 {
  margin: 0 0 13px;
  color: #66596b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.metric {
  padding: 12px 0;
  border-bottom: 1px solid rgba(86,18,105,.07);
}
.metric:last-child { border-bottom: 0; }
.metric strong {
  display: block;
  color: var(--cyclio-plum);
  font-size: 24px;
  line-height: 1;
}
.metric span {
  display: block;
  margin-top: 5px;
  color: #817684;
  font-size: 10px;
}

.trust {
  padding: 18px 0 76px;
}
.trust-line {
  text-align: center;
  color: #8d828f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-types {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  color: #6e6271;
  font-size: 14px;
  font-weight: 750;
}

.section { padding: 94px 0; }
.section-white {
  background: rgba(255,253,249,.68);
  border-top: 1px solid rgba(86,18,105,.055);
  border-bottom: 1px solid rgba(86,18,105,.055);
}
.section-intro { max-width: 720px; margin-bottom: 50px; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.2vw, 56px);
}
.section-intro p {
  margin: 18px 0 0;
  color: var(--cyclio-muted);
  font-size: 17px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--cyclio-border);
  border-radius: var(--cyclio-radius);
  background: rgba(255,253,249,.85);
}
.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: white;
  background: var(--cyclio-gradient);
  font-size: 19px;
  font-weight: 900;
}
.value-card h3 {
  margin-top: 24px;
  font-size: 23px;
}
.value-card p {
  margin: 13px 0 0;
  color: var(--cyclio-muted);
  line-height: 1.67;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.problem-list { display: grid; gap: 13px; margin-top: 28px; }
.problem-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}
.check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--cyclio-gradient);
  font-size: 13px;
  font-weight: 900;
}
.problem-item strong { display: block; font-size: 15px; }
.problem-item span { display: block; margin-top: 3px; color: var(--cyclio-muted); font-size: 14px; }

.cycle-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  border: 1px solid var(--cyclio-border);
  background:
    radial-gradient(circle at 50% 50%, rgba(150,54,124,.09), rgba(150,54,124,0) 52%),
    rgba(255,253,249,.88);
}
.cycle-center {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--cyclio-gradient);
  box-shadow: 0 20px 45px rgba(86,18,105,.22);
  text-align: center;
  font-weight: 800;
}
.orbit {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(86,18,105,.26);
  border-radius: 50%;
}
.orbit-label {
  position: absolute;
  width: 124px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--cyclio-border);
  background: #fffdfa;
  box-shadow: 0 10px 24px rgba(63,26,70,.07);
  color: #584e5b;
  text-align: center;
  font-size: 11px;
  font-weight: 750;
}
.ol1 { top: 37px; left: 50%; transform: translateX(-50%); }
.ol2 { right: 24px; top: 50%; transform: translateY(-50%); }
.ol3 { bottom: 36px; left: 50%; transform: translateX(-50%); }
.ol4 { left: 24px; top: 50%; transform: translateY(-50%); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--cyclio-border);
  background: rgba(255,253,249,.82);
}
.audience-card h3 { margin-top: 20px; font-size: 22px; }
.audience-card p { color: var(--cyclio-muted); font-size: 14px; line-height: 1.7; }
.audience-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--cyclio-plum);
  font-weight: 800;
  font-size: 13px;
}

.quote {
  padding: 44px;
  border-radius: 28px;
  color: white;
  background: var(--cyclio-gradient);
  box-shadow: 0 24px 60px rgba(86,18,105,.18);
}
.quote p {
  margin: 0;
  max-width: 880px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.32;
  letter-spacing: -.025em;
  font-weight: 720;
}
.quote small {
  display: block;
  margin-top: 24px;
  opacity: .78;
}

.cta {
  padding: 88px 0 104px;
}
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 62px 56px;
  border-radius: 32px;
  color: white;
  background: #24172a;
}
.cta-box::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,54,124,.65), rgba(150,54,124,0) 68%);
}
.cta-box h2 { max-width: 690px; font-size: clamp(38px, 4.3vw, 58px); position: relative; z-index: 2; }
.cta-box p { max-width: 650px; margin: 18px 0 28px; color: rgba(255,255,255,.72); font-size: 17px; position: relative; z-index: 2; }
.cta-box .button { position: relative; z-index: 2; background: white; color: var(--cyclio-plum); }

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid rgba(86,18,105,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .65fr);
  gap: 40px;
}
.footer-brand img { width: 160px; }
.footer-brand p { max-width: 360px; color: var(--cyclio-muted); font-size: 13px; }
.footer-col strong { display: block; margin-bottom: 13px; color: #554959; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.footer-col a { display: block; margin: 9px 0; color: #756a77; font-size: 13px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(86,18,105,.08);
  color: #8b818d;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--cyclio-plum);
  font-size: 24px;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 18px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    background: #fffdfa;
    box-shadow: var(--cyclio-shadow);
  }
  .mobile-toggle { display: block; }
  .hero { padding-top: 64px; }
  .hero-grid, .problem-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .value-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 28px), var(--cyclio-max)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 148px; }
  .hero { padding: 54px 0 56px; }
  .hero-copy { font-size: 17px; }
  .button { width: 100%; }
  .dashboard-body { grid-template-columns: 1fr; }
  .schedule { border-right: 0; border-bottom: 1px solid rgba(86,18,105,.08); }
  .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .value-grid, .audience-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .cycle-card { min-height: 360px; }
  .orbit { width: 280px; height: 280px; }
  .orbit-label { width: 104px; font-size: 10px; }
  .quote { padding: 32px 26px; }
  .cta-box { padding: 46px 28px; }
  .footer-bottom { flex-direction: column; }
}


/* v0.1.1 brand maturation */
.human-line {
  margin: 30px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--cyclio-berry);
  border-radius: 0 16px 16px 0;
  background: rgba(255,253,249,.58);
  color: #4f4052;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
}
.human-line strong { color: var(--cyclio-plum); font-weight: 600; }

.heart-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}
.heart-section::before {
  content:"";
  position:absolute;
  width:520px; height:520px;
  left:-240px; top:-160px;
  border-radius:50%;
  border:1px dashed rgba(150,54,124,.22);
}
.heart-grid {
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.heart-kicker {
  color:var(--cyclio-berry);
  font-size:12px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.heart-copy h2 {
  margin-top:14px;
  font-size:clamp(42px,5vw,66px);
}
.heart-copy p {
  margin:22px 0 0;
  color:var(--cyclio-muted);
  font-size:18px;
  line-height:1.75;
}
.people-stack {
  display:grid;
  gap:14px;
}
.person-row {
  display:grid;
  grid-template-columns: 52px 1fr auto;
  gap:15px;
  align-items:center;
  padding:16px 18px;
  border:1px solid var(--cyclio-border);
  border-radius:18px;
  background:rgba(255,253,249,.86);
  box-shadow:0 12px 30px rgba(63,26,70,.055);
}
.person-avatar {
  display:grid;
  place-items:center;
  width:52px; height:52px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(86,18,105,.12), rgba(150,54,124,.2));
  color:var(--cyclio-plum);
  font-family:var(--font-display);
  font-size:19px;
  font-weight:700;
}
.person-row strong { display:block; font-size:15px; }
.person-row small { display:block; margin-top:3px; color:var(--cyclio-muted); }
.continuity-tag {
  padding:7px 10px;
  border-radius:999px;
  background:#f7edf4;
  color:var(--cyclio-plum);
  font-size:10px;
  font-weight:800;
}
.quote p { font-family:var(--font-display); font-weight:600; }
.emotional-quote {
  background: linear-gradient(135deg, #4b105d 0%, #96367c 100%);
}
.section-intro h2, .cta-box h2 { font-weight:600; }
.value-card h3, .audience-card h3 { font-weight:600; }
.value-card p, .audience-card p, .problem-item span { font-size:15px; }
.nav { font-size:15px; }
.trust-types { font-size:15px; }
.footer-brand p, .footer-col a { font-size:14px; }

@media (max-width: 980px) {
  .heart-grid { grid-template-columns:1fr; }
}
@media (max-width: 680px) {
  .brand { width:156px; height:54px; }
  .brand img { width:156px; height:54px; }
  .person-row { grid-template-columns:46px 1fr; }
  .continuity-tag { grid-column:2; justify-self:start; }
}


/* v0.1.2: Cyclio visual identity */
.section-path {
  position:absolute;
  pointer-events:none;
  border:2px dashed rgba(150,54,124,.18);
  border-radius:50%;
}
.path-accent {
  position: relative;
}
.path-accent::after {
  content:"";
  position:absolute;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--cyclio-berry);
  right:-4px; top:12%;
  box-shadow:0 0 0 5px rgba(150,54,124,.08);
}
.care-note {
  position:absolute;
  z-index:3;
  max-width:178px;
  padding:11px 13px;
  border:1px solid rgba(150,54,124,.18);
  border-radius:13px;
  background:#fffdfa;
  box-shadow:0 12px 30px rgba(63,26,70,.09);
  color:#5d4b60;
  font-size:10px;
  font-weight:650;
  line-height:1.35;
  transform:rotate(-2deg);
}
.care-note strong { color:var(--cyclio-plum); }
.note-one { right:22px; bottom:-30px; }
.product-shell { margin-bottom:24px; }
.product-shell::before {
  content:"";
  position:absolute;
  width:190px; height:190px;
  right:-76px; top:-68px;
  border:2px dashed rgba(150,54,124,.18);
  border-radius:50%;
  z-index:-1;
}
.heart-section { background:linear-gradient(180deg, rgba(246,237,247,.34), rgba(251,247,239,0)); }
.value-card:nth-child(2) { background:linear-gradient(145deg, rgba(255,253,249,.92), rgba(246,237,247,.55)); }
.audience-card:nth-child(2) { background:linear-gradient(145deg, rgba(255,253,249,.92), rgba(246,237,247,.5)); }
.human-line {
  font-family:var(--font-body);
  font-size:17px;
  font-weight:550;
}
.human-line strong { font-weight:800; }
.quote p { font-family:var(--font-body); font-weight:700; letter-spacing:-.035em; }
.heart-copy h2, .section-intro h2, .cta-box h2 { font-weight:750; }
.value-card h3, .audience-card h3 { font-weight:750; }

@media (max-width:680px) {
  .brand { width:172px; height:54px; }
  .brand img { width:172px; height:54px; }
  .care-note { display:none; }
}


/* v0.1.3: surgical logo correction only */
.brand {
  width: 210px;
  height: 72px;
  overflow: visible;
}
.brand img {
  width: 210px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}
.footer-brand img {
  width: 190px;
  height: auto;
  mix-blend-mode: multiply;
}

@media (max-width:680px) {
  .brand {
    width: 176px;
    height: 62px;
  }
  .brand img {
    width: 176px;
    height: 62px;
  }
}


/* v0.1.4: clearer story, stronger payoff, broader familiar use cases */
.story-head {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}
.story-head .heart-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(150,54,124,.08);
  color: var(--cyclio-plum);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.story-head h2 {
  font-size: clamp(38px, 4.8vw, 60px);
}
.story-head p {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--cyclio-muted);
  font-size: 18px;
  line-height: 1.72;
}
.change-story {
  display: grid;
  grid-template-columns: 1fr 48px 1.25fr 48px 1fr;
  align-items: stretch;
  gap: 10px;
}
.change-step {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--cyclio-border);
  border-radius: 22px;
  background: rgba(255,253,249,.9);
  box-shadow: 0 16px 40px rgba(63,26,70,.055);
}
.change-step-focus {
  background: linear-gradient(145deg, rgba(255,253,249,.96), rgba(246,237,247,.82));
  border-color: rgba(150,54,124,.22);
}
.step-number {
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(86,18,105,.25);
  font-size: 12px;
  font-weight: 800;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--cyclio-plum), var(--cyclio-berry));
  color: white;
  font-size: 20px;
  font-weight: 800;
}
.change-step h3 { font-size: 22px; margin-bottom: 12px; }
.change-step p { color: var(--cyclio-muted); line-height: 1.6; }
.story-arrow {
  display: grid;
  place-items: center;
  color: var(--cyclio-berry);
  font-size: 28px;
  font-weight: 700;
}
.constraint-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.constraint-pills span {
  padding: 7px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(150,54,124,.16);
  color: var(--cyclio-plum);
  font-size: 11px;
  font-weight: 750;
}
.illustrative-note {
  margin: 16px 0 0;
  text-align: center;
  color: #958a95;
  font-size: 11px;
}
.payoff-eyebrow { font-size: 13px; }
.value-grid {
  grid-template-columns: repeat(4, 1fr);
}
.value-card {
  min-height: 245px;
}
.value-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(255,253,249,.92), rgba(246,237,247,.5));
}

.market-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: center;
}
.market-copy h2 {
  margin-top: 14px;
  font-size: clamp(40px, 5vw, 62px);
}
.market-copy p {
  margin: 20px 0;
  color: var(--cyclio-muted);
  font-size: 17px;
  line-height: 1.72;
}
.use-case-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 13px;
  min-height: 330px;
  padding: 44px;
}
.use-case-cloud::before {
  content:"";
  position:absolute;
  width: 310px;
  height: 310px;
  border: 2px dashed rgba(150,54,124,.18);
  border-radius: 50%;
}
.use-case {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  border: 1px solid rgba(150,54,124,.16);
  border-radius: 999px;
  background: rgba(255,253,249,.95);
  box-shadow: 0 10px 26px rgba(63,26,70,.07);
  color: #4f4052;
  font-size: 14px;
  font-weight: 700;
}
.use-case-lg {
  padding: 17px 22px;
  color: var(--cyclio-plum);
  font-size: 16px;
}

.product-story-section {
  background: linear-gradient(180deg, rgba(246,237,247,.28), rgba(251,247,239,0));
}
.product-story {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 72px;
  align-items: center;
}
.product-story-copy h2 {
  margin-top: 14px;
  font-size: clamp(40px, 5vw, 62px);
}
.product-story-copy p {
  margin: 20px 0;
  color: var(--cyclio-muted);
  font-size: 17px;
  line-height: 1.72;
}
.story-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.story-benefits span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(150,54,124,.08);
  color: var(--cyclio-plum);
  font-size: 11px;
  font-weight: 750;
}
.mini-reopt {
  position: relative;
  padding: 26px;
  border: 1px solid var(--cyclio-border);
  border-radius: 24px;
  background: rgba(255,253,249,.96);
  box-shadow: 0 20px 55px rgba(63,26,70,.09);
}
.mini-reopt::after {
  content:"";
  position:absolute;
  width: 190px;
  height: 190px;
  right:-55px;
  bottom:-55px;
  border: 2px dashed rgba(150,54,124,.17);
  border-radius:50%;
  z-index:-1;
}
.mini-reopt-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
  font-size:13px;
  font-weight:800;
}
.status-pill {
  padding:7px 10px;
  border-radius:999px;
  background:#f8edf5;
  color:var(--cyclio-berry);
  font-size:10px;
}
.mini-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:9px;
}
.mini-visit {
  padding:14px 8px;
  border-radius:12px;
  text-align:center;
  font-size:10px;
  line-height:1.55;
}
.mini-visit.stable {
  background:#f5edf7;
  color:#5b4560;
}
.mini-visit.changed {
  background:linear-gradient(135deg,var(--cyclio-plum),var(--cyclio-berry));
  color:white;
  box-shadow:0 10px 25px rgba(86,18,105,.18);
}
.reopt-line {
  display:flex;
  align-items:center;
  gap:10px;
  margin:24px 0 18px;
  color:var(--cyclio-muted);
  font-size:12px;
}
.reopt-dot {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--cyclio-berry);
  box-shadow:0 0 0 5px rgba(150,54,124,.09);
}
.mini-outcome {
  padding:18px;
  border-radius:16px;
  background:#fbf7ef;
}
.mini-outcome strong, .mini-outcome span { display:block; }
.mini-outcome strong { color:var(--cyclio-plum); font-size:15px; }
.mini-outcome span { margin-top:5px; color:var(--cyclio-muted); font-size:12px; }
.mini-reopt small {
  display:block;
  margin-top:12px;
  color:#9b919a;
  font-size:9px;
}

@media (max-width: 980px) {
  .change-story { grid-template-columns:1fr; }
  .story-arrow { transform:rotate(90deg); min-height:32px; }
  .value-grid { grid-template-columns:repeat(2,1fr); }
  .market-layout, .product-story { grid-template-columns:1fr; }
}
@media (max-width: 680px) {
  .value-grid { grid-template-columns:1fr; }
  .use-case-cloud { padding:24px 8px; min-height:280px; }
  .use-case-cloud::before { width:250px; height:250px; }
  .mini-grid { grid-template-columns:repeat(5, minmax(48px,1fr)); overflow-x:auto; }
}


/* v0.1.5: homepage lock-in cleanup */
.care-note { display:none !important; }

/* Keep the hero breadth statement familiar and balanced. */
.trust .wrap {
  max-width: 1080px;
}
.trust-items {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 26px;
}
.trust-items span {
  white-space:nowrap;
}

/* Stronger three-step story without changing the concept. */
.heart-section {
  padding-top: 92px;
  padding-bottom: 92px;
}
.story-head {
  margin-bottom: 34px;
}
.story-head .heart-kicker {
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: .07em;
}
.change-step-focus {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(63,26,70,.09);
}
.story-arrow {
  font-size: 34px;
}

/* Operational payoff is the homepage ROI anchor. */
.section-white#why-cyclio {
  padding-top: 92px;
  padding-bottom: 92px;
}
.value-grid {
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 16px;
}
.value-card {
  min-height: 230px;
  padding: 24px;
}

/* Market section: narrower inner composition and equal use-case hierarchy. */
#solutions .wrap {
  max-width: 1120px;
}
.market-layout {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.use-case-cloud {
  min-height: 300px;
  padding: 34px 24px;
  gap: 12px;
}
.use-case-cloud::before {
  width: 265px;
  height: 265px;
}
.use-case,
.use-case-lg {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 50px;
  padding: 13px 18px;
  color: var(--cyclio-plum);
  font-size: 14px;
  font-weight: 700;
}
.use-case-lg {
  padding: 13px 18px;
  font-size: 14px;
}

/* Make the re-optimization concept immediately legible. */
.mini-visit.changed {
  position:relative;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(86,18,105,.22);
}
.move-origin {
  display:block;
  margin-top:4px;
  font-size:8px;
  opacity:.8;
}
.move-path {
  display:flex;
  align-items:center;
  gap:9px;
  margin: 2px 0 18px 40%;
  color: var(--cyclio-berry);
}
.move-path-line {
  width:42px;
  border-top:2px dashed rgba(150,54,124,.38);
}
.move-path-arrow {
  font-size:18px;
  font-weight:800;
}
.new-fit {
  padding:7px 10px;
  border:1px solid rgba(150,54,124,.18);
  border-radius:999px;
  background:#fffdfa;
  color:var(--cyclio-plum);
  font-size:10px;
  font-weight:800;
}

/* Tighten the lower-page rhythm now that the redundant section is gone. */
#solutions,
.product-story-section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.cta-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

@media (min-width: 1280px) {
  #solutions .wrap { max-width: 1080px; }
  .market-layout { gap: 40px; }
}
@media (max-width: 980px) {
  .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .change-step-focus { transform:none; }
  .market-layout { grid-template-columns:1fr; }
  .market-copy { max-width:700px; }
  .use-case-cloud { max-width:620px; margin:0 auto; }
}
@media (max-width: 680px) {
  .value-grid { grid-template-columns:1fr !important; }
  .trust-items { gap:10px 16px; }
  .market-layout { gap:28px; }
  .move-path { margin-left:10%; }
}


/* v0.1.6: surgical cleanup */
.trust { display:none !important; }

/* Operational Payoff is intentionally four equal cards on desktop. */
#why-cyclio .value-grid {
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:16px !important;
  align-items:stretch;
}
#why-cyclio .value-card {
  display:flex;
  flex-direction:column;
  min-height:250px;
  padding:26px;
}
#why-cyclio .value-card h3 {
  min-height:56px;
}
#why-cyclio .value-card p {
  margin-top:12px;
}

@media (max-width: 980px) {
  #why-cyclio .value-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px) {
  #why-cyclio .value-grid {
    grid-template-columns:1fr !important;
  }
  #why-cyclio .value-card h3 {
    min-height:0;
  }
}


/* v0.2.0 Product page */
.product-page { overflow:hidden; }
.product-hero {
  position:relative;
  padding:110px 0 90px;
  background:
    radial-gradient(circle at 85% 25%, rgba(190,94,150,.12), transparent 24%),
    var(--cyclio-cream);
}
.product-hero::after {
  content:""; position:absolute; width:240px; height:240px; right:-70px; top:90px;
  border:2px dashed rgba(150,54,124,.17); border-radius:50%;
}
.product-hero-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:center; }
.product-hero-copy h1 { margin-top:18px; font-size:clamp(48px,5.5vw,76px); max-width:760px; }
.product-hero-copy h1 span {
  background:linear-gradient(100deg,#561269,#96367c);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.product-lede { max-width:680px; margin:24px 0 30px; color:var(--cyclio-muted); font-size:18px; line-height:1.72; }
.product-window {
  position:relative; padding:24px; border:1px solid var(--cyclio-border); border-radius:26px;
  background:rgba(255,253,249,.96); box-shadow:0 28px 70px rgba(63,26,70,.11);
}
.window-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; font-size:13px; font-weight:800; }
.status-good { color:#3f7155; background:#edf7ef; }
.schedule-columns { display:grid; grid-template-columns:repeat(4,1fr); gap:9px; }
.schedule-day { display:flex; flex-direction:column; gap:8px; }
.schedule-day b { color:#8b808b; font-size:9px; text-align:center; }
.schedule-day span { min-height:45px; padding:9px; border-radius:10px; background:#f4eaf5; color:#69566d; font-size:9px; }
.schedule-day:nth-child(even) span { background:#f8eee9; }
.schedule-day .schedule-change { background:linear-gradient(135deg,#561269,#96367c); color:white; transform:scale(1.04); box-shadow:0 10px 24px rgba(86,18,105,.18); }
.product-processing {
  position:absolute; left:50%; bottom:62px; transform:translateX(-50%); width:250px; padding:18px;
  border-radius:16px; background:linear-gradient(135deg,#561269,#96367c); color:white; text-align:center;
  box-shadow:0 16px 32px rgba(86,18,105,.24);
}
.product-processing strong,.product-processing small { display:block; }
.product-processing strong { font-size:13px; }
.product-processing small { margin-top:7px; opacity:.75; font-size:8px; }
.processing-line { height:4px; margin-top:14px; border-radius:99px; background:rgba(255,255,255,.28); overflow:hidden; }
.processing-line i { display:block; width:68%; height:100%; background:white; border-radius:99px; }
.product-principle { padding:32px 0; background:#27162c; color:white; text-align:center; }
.product-principle p { margin:0; font-size:20px; font-weight:750; letter-spacing:-.02em; }

.product-flow-section { background:#fffdfa; }
.product-intro { max-width:820px; margin:0 auto 72px; text-align:center; }
.product-intro h2 { margin-top:14px; font-size:clamp(42px,5vw,64px); }
.product-intro p { max-width:680px; margin:20px auto 0; color:var(--cyclio-muted); font-size:17px; line-height:1.7; }
.product-flow { position:relative; max-width:1120px; margin:0 auto; }
.product-flow::before {
  content:""; position:absolute; left:35px; top:40px; bottom:40px; border-left:2px dashed rgba(150,54,124,.16);
}
.flow-step {
  position:relative; display:grid; grid-template-columns:70px .95fr 1.05fr; gap:42px; align-items:center;
  min-height:430px; padding:54px 0; border-bottom:1px solid rgba(100,70,100,.10);
}
.flow-step:last-child { border-bottom:0; }
.flow-num {
  position:relative; z-index:2; display:grid; place-items:center; width:70px; height:70px; border-radius:50%;
  background:#fffdfa; border:2px solid rgba(150,54,124,.22); color:var(--cyclio-plum); font-size:13px; font-weight:800;
}
.flow-copy h3 { font-size:clamp(32px,3.4vw,46px); }
.flow-copy > p { margin:16px 0; color:var(--cyclio-muted); font-size:16px; line-height:1.7; }
.constraint-grid { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.constraint-grid span { padding:8px 10px; border-radius:999px; background:#f7edf6; color:var(--cyclio-plum); font-size:10px; font-weight:750; }
.flow-visual {
  min-height:290px; display:grid; place-items:center; padding:32px; border:1px solid var(--cyclio-border);
  border-radius:24px; background:linear-gradient(145deg,#fffdfa,#f9f2f8); box-shadow:0 16px 42px rgba(63,26,70,.055);
}
.constraint-orbit { position:relative; display:grid; place-items:center; width:180px; height:180px; border:2px dashed rgba(150,54,124,.22); border-radius:50%; }
.constraint-orbit strong { display:grid; place-items:center; width:100px; height:100px; border-radius:50%; background:linear-gradient(135deg,#561269,#96367c); color:white; text-align:center; font-size:13px; }
.constraint-orbit i { position:absolute; padding:7px 9px; border:1px solid var(--cyclio-border); border-radius:999px; background:white; color:#6e5d70; font-size:9px; font-style:normal; }
.orbit-a { top:-14px; }.orbit-b { right:-42px; }.orbit-c { bottom:-14px; }.orbit-d { left:-32px; }
.product-checks { list-style:none; margin:20px 0 0; padding:0; }
.product-checks li { position:relative; margin:9px 0; padding-left:25px; color:#655667; font-size:13px; }
.product-checks li::before { content:"✓"; position:absolute; left:0; color:var(--cyclio-berry); font-weight:800; }
.mini-week { width:100%; }
.mini-week-head { display:flex; justify-content:space-between; margin-bottom:15px; font-size:11px; }
.mini-week-head span { color:var(--cyclio-berry); }
.week-row { display:grid; grid-template-columns:42px repeat(4,1fr); gap:7px; margin:7px 0; }
.week-row i { align-self:center; color:#918692; font-size:8px; font-style:normal; }
.week-row b { height:28px; border-radius:7px; background:#eee1f1; }
.week-row:nth-child(even) b:nth-child(3), .week-row:nth-child(odd) b:nth-child(4) { background:#f3dfeb; }
.change-callout { margin-top:20px; padding:14px; border-left:3px solid var(--cyclio-berry); background:#fbf4f9; }
.change-callout span,.change-callout strong { display:block; }
.change-callout span { color:var(--cyclio-berry); font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.change-callout strong { margin-top:4px; font-size:12px; }
.adapt-visual { grid-template-columns:1fr auto 1fr; gap:12px; align-content:center; }
.adapt-before,.adapt-after { padding:18px; border-radius:14px; text-align:center; }
.adapt-before { background:#f5edf6; }.adapt-after { background:#f4e6ef; border:1px solid rgba(150,54,124,.2); }
.adapt-before small,.adapt-after small,.adapt-before span,.adapt-after span { display:block; }
.adapt-before small,.adapt-after small { color:#958896; font-size:8px; text-transform:uppercase; }
.adapt-before span,.adapt-after span { margin-top:5px; color:var(--cyclio-plum); font-weight:800; }
.adapt-path { color:var(--cyclio-berry); font-size:16px; white-space:nowrap; }
.adapt-visual p { grid-column:1/-1; margin:18px 0 0; color:var(--cyclio-muted); text-align:center; font-size:12px; line-height:1.6; }
.adapt-visual p strong { color:var(--cyclio-plum); }
.continuity-line { display:flex; align-items:center; gap:8px; margin-top:22px; font-size:11px; }
.continuity-line span { color:var(--cyclio-muted); }.continuity-line i { flex:1; border-top:2px dashed rgba(150,54,124,.25); }.continuity-line strong { color:var(--cyclio-plum); }
.continuity-visual { position:relative; grid-template-columns:1fr 1fr; }
.person-node { display:grid; place-items:center; width:105px; height:105px; border-radius:50%; background:#f5eaf5; color:var(--cyclio-plum); font-weight:800; z-index:2; }
.provider-node { background:linear-gradient(135deg,#561269,#96367c); color:white; }
.relationship-path { position:absolute; width:42%; border-top:3px dashed rgba(150,54,124,.32); }
.relationship-label { position:absolute; bottom:42px; padding:7px 10px; border-radius:999px; background:white; color:#766477; font-size:8px; }
.impact-visual { grid-template-columns:repeat(3,1fr); gap:10px; }
.impact-visual div { min-height:125px; padding:18px; border-radius:16px; background:white; border:1px solid rgba(150,54,124,.12); }
.impact-visual strong,.impact-visual span { display:block; }
.impact-visual strong { color:var(--cyclio-plum); font-size:14px; }.impact-visual span { margin-top:8px; color:var(--cyclio-muted); font-size:10px; line-height:1.5; }

.product-difference { background:#2a182f; color:white; }
.difference-grid { display:grid; grid-template-columns:1fr .8fr; gap:90px; align-items:center; }
.difference-grid h2 { margin-top:15px; font-size:clamp(38px,4.5vw,58px); }
.difference-copy p { color:rgba(255,255,255,.72); font-size:17px; line-height:1.75; }
.difference-copy p + p { margin-top:20px; }
.difference-copy strong { color:white; }

.product-for-operators { background:#fbf7ef; }
.operator-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:start; }
.operator-copy h2 { margin-top:15px; font-size:clamp(40px,4.8vw,60px); }
.operator-copy p { margin-top:20px; color:var(--cyclio-muted); font-size:17px; line-height:1.7; }
.operator-points > div { display:grid; grid-template-columns:44px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid var(--cyclio-border); }
.operator-points > div:last-child { border-bottom:0; }
.operator-points span { color:var(--cyclio-berry); font-size:11px; font-weight:800; }
.operator-points p { margin:0; color:var(--cyclio-muted); line-height:1.65; }
.operator-points strong { color:#302333; }

@media (max-width:980px) {
  .product-hero-grid,.difference-grid,.operator-grid { grid-template-columns:1fr; }
  .product-hero-visual { max-width:680px; }
  .flow-step { grid-template-columns:60px 1fr; gap:28px; }
  .flow-visual { grid-column:2; }
  .product-flow::before { left:30px; }
}
@media (max-width:680px) {
  .product-hero { padding:72px 0 60px; }
  .product-hero-copy h1 { font-size:44px; }
  .schedule-columns { grid-template-columns:repeat(4,minmax(90px,1fr)); overflow-x:auto; }
  .product-processing { width:210px; bottom:52px; }
  .flow-step { grid-template-columns:1fr; padding:42px 0; }
  .flow-num { width:54px; height:54px; }
  .flow-visual { grid-column:1; }
  .product-flow::before { display:none; }
  .impact-visual { grid-template-columns:1fr; width:100%; }
  .adapt-visual { grid-template-columns:1fr; width:100%; }
  .adapt-path { transform:rotate(90deg); }
  .adapt-visual p { grid-column:1; }
  .continuity-visual { min-height:260px; }
}
