@charset "UTF-8";
:root {
  --ink:#171312;
  --muted:#706968;
  --paper:#fffaf7;
  --pink:#ea1953;
  --coral:#f34b39;
  --orange:#f48b4f;
  --blush:#f3e6ea;
  --line:#eadfda;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, "Noto Sans Thai", sans-serif;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee7e3;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.logo b {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #5d5755;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta span {
  margin-left: 8px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.92fr 1.15fr;
  gap: 58px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 76px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1, .section h2, .statement h2, .channel-section h2, .results-section h2, .final-cta h2, .workflow-copy h2, .resend-copy h2 {
  font-size: 56px;
  line-height: 1.13;
  letter-spacing: -0.055em;
  margin: 20px 0 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 540px;
}

.channel-row {
  display: flex;
  gap: 18px;
  margin: 27px 0;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.channel-item > span, .channel-card > span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: white;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

.channel-item small {
  font-size: 11px;
  color: #5f5856;
}

.fb {
  background: #1877f2;
}

.line {
  background: #06c755;
}

.ig {
  background: linear-gradient(135deg, #7b37d8, #f04a53, #ffb336);
}

.tk {
  background: #151515;
}

.wa {
  background: #25d366;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.zwiz-btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.zwiz-btn.primary {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: white;
  box-shadow: 0 12px 30px rgba(234, 25, 83, 0.2235294118);
}

.zwiz-btn.secondary {
  border: 1px solid #d9ceca;
  background: white;
}

.micro-proof {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  font-size: 11px;
  color: #77706e;
}

.micro-proof span::first-letter {
  color: var(--pink);
}

.broadcast-stage {
  position: relative;
  padding: 30px 0 40px;
}

.app-window {
  background: white;
  border: 1px solid #e7ddda;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(90, 42, 29, 0.1098039216);
  display: flex;
  overflow: hidden;
  transform: rotate(1deg);
}

.app-sidebar {
  width: 58px;
  background: #241b1b;
  color: #9b8e8b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 17px 0;
}

.app-sidebar .app-logo {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-weight: 900;
  border-radius: 10px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.app-sidebar span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.app-sidebar span.active {
  color: white;
  background: #ea1953;
}

.app-body {
  flex: 1;
  padding: 22px;
  background: #fdfaf9;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}

.app-top small, .builder-form label {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #9c8e89;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.app-top h3 {
  font-size: 17px;
  margin: 3px 0;
}

.status {
  font-size: 8px;
  color: #289963;
  background: #e8f8ef;
  padding: 5px 8px;
  border-radius: 20px;
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr;
  gap: 12px;
}

.builder-form, .phone-preview {
  background: white;
  border: 1px solid #eee4e0;
  border-radius: 13px;
  padding: 14px;
}

.mini-channels {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.mini-channels span {
  width: 24px;
  height: 24px;
  border: 1px solid #e5dad7;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: bold;
}

.mini-channels .picked {
  background: #1877f2;
  color: white;
}

.select-box {
  border: 1px solid #e9dfdb;
  padding: 9px 10px;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 14px;
}

.message-editor {
  border: 1px solid #e9dfdb;
  padding: 12px;
  border-radius: 8px;
  font-size: 9px;
  min-height: 116px;
}

.message-editor p {
  color: #756d6a;
}

.message-editor div {
  display: flex;
  gap: 5px;
}

.message-editor div span {
  border: 1px solid #eadeda;
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--pink);
  font-weight: bold;
}

.phone-preview {
  padding: 9px;
  background: #f2f4f7;
}

.phone-head {
  background: white;
  margin: -9px -9px 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
}

.shop-avatar {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: white;
  display: grid;
  place-items: center;
}

.promo-card {
  background: white;
  padding: 8px;
  border-radius: 8px;
  font-size: 7px;
}

.promo-art {
  height: 80px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d90f4b, #fa784c);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promo-art i {
  font-size: 26px;
  font-weight: 900;
}

.promo-card b {
  display: block;
  margin-top: 7px;
}

.promo-card p {
  color: #716867;
}

.promo-card button {
  width: 100%;
  border: 0;
  background: #ea1953;
  color: white;
  padding: 5px;
  margin-top: 4px;
  border-radius: 4px;
  font-size: 7px;
}

.promo-card button.ghost {
  background: white;
  border: 1px solid #ecdeda;
  color: #d5184c;
}

.app-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  font-size: 8px;
}

.app-actions button {
  border: 0;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: white;
  border-radius: 7px;
  padding: 8px 11px;
  font-size: 8px;
}

.float-chip {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1px solid #eee1dc;
  box-shadow: 0 15px 35px rgba(81, 36, 21, 0.1215686275);
  border-radius: 13px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.float-chip > span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.float-chip small, .float-chip b {
  display: block;
}

.float-chip small {
  font-size: 8px;
  color: #867b77;
}

.float-chip b {
  font-size: 11px;
  margin-top: 2px;
}

.chip-reach {
  left: -27px;
  bottom: 5px;
}

.chip-reach > span {
  color: #18a56f;
  background: #e9f9f2;
}

.chip-time {
  right: -25px;
  top: 5px;
}

.chip-time > span {
  color: #e65b2f;
  background: #fff0e9;
}

.statement {
  background: #201817;
  color: white;
  padding: 90px 0 36px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
}

.eyebrow.light {
  color: #ff6c75;
}

.statement h2, .channel-section h2, .results-section h2, .final-cta h2 {
  font-size: 47px;
}

.statement p {
  font-size: 16px;
  line-height: 1.9;
  color: #c9c0bd;
}

.statement a {
  font-size: 13px;
  color: #ff747e;
  font-weight: bold;
}

.use-strip {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #493b38;
}

.use-strip div {
  padding: 27px 18px;
  border-right: 1px solid #493b38;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.use-strip div:last-child {
  border: 0;
}

.use-strip b {
  font-size: 10px;
  color: #ff6570;
}

.use-strip span {
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 55px;
}

.section-head h2 {
  font-size: 45px;
  margin-bottom: 0;
}

.section-head > p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.segment-board {
  background: #f9f3f0;
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.segment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid transparent;
  padding: 18px;
  border-radius: 15px;
}

.segment-card.selected {
  border-color: #ea1953;
  box-shadow: 0 10px 30px rgba(163, 74, 48, 0.1294117647);
}

.segment-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.segment-icon.coral {
  background: #fff0e9;
  color: #ee6337;
}

.segment-icon.pink {
  background: #fde9ef;
  color: var(--pink);
}

.segment-icon.purple {
  background: #f1eafa;
  color: #7950bd;
}

.segment-card small {
  font-size: 7px;
  letter-spacing: 0.15em;
  color: #a1938e;
}

.segment-card h3 {
  font-size: 15px;
  margin: 5px 0;
}

.segment-card p {
  font-size: 11px;
  color: #817672;
  margin: 0;
}

.segment-card > b {
  font-size: 10px;
  color: #8c817d;
}

.campaign-card {
  background: #211817;
  color: white;
  border-radius: 18px;
  padding: 23px;
}

.campaign-top {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: #a99a96;
}

.campaign-top i {
  font-style: normal;
  background: #153d30;
  color: #76e0b2;
  padding: 5px 8px;
  border-radius: 15px;
}

.campaign-art {
  height: 150px;
  margin: 16px 0;
  background: linear-gradient(135deg, #d4164e, #f36c45);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.campaign-art small {
  letter-spacing: 0.25em;
}

.campaign-art strong {
  font-size: 53px;
}

.campaign-art b {
  font-size: 10px;
}

.campaign-card h3 {
  font-size: 16px;
}

.campaign-card > p {
  font-size: 10px;
  color: #c4b9b5;
  line-height: 1.7;
}

.campaign-card button {
  border: 0;
  background: white;
  padding: 9px;
  width: 100%;
  border-radius: 7px;
  font-size: 9px;
  font-weight: bold;
  margin: 5px 0 14px;
}

.campaign-meta {
  border-top: 1px solid #4c3c39;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #968985;
}

.campaign-meta b {
  color: white;
  display: block;
  margin-top: 4px;
}

.center-claim {
  text-align: center;
  color: #766c69;
  margin-top: 35px;
  font-size: 14px;
}

.center-claim b {
  color: var(--ink);
}

.channel-section {
  background: #241a19;
  color: white;
  padding: 110px 0;
}

.light-head p {
  color: #c5bab7;
}

.channel-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.channel-card {
  min-height: 260px;
  padding: 24px 19px;
  border-radius: 16px;
  background: #332725;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.channel-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.13;
  right: -60px;
  top: -50px;
  background: white;
}

.channel-card > span {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.channel-card small {
  font-size: 7px;
  letter-spacing: 0.13em;
  color: #8d7f7b;
}

.channel-card h3 {
  font-size: 18px;
  margin: 9px 0;
}

.channel-card p {
  font-size: 10px;
  line-height: 1.6;
  color: #bdb1ad;
  min-height: 50px;
}

.channel-card > b {
  font-size: 15px;
  color: #847672;
}

.channel-card:hover {
  transform: translateY(-5px);
  transition: 0.25s;
  background: #3c2d2b;
}

.platform-note {
  text-align: right;
  color: #827572;
  font-size: 9px;
  margin-top: 18px;
}

.journey-line {
  height: 1px;
  background: #ddd0cb;
  margin: 0 16.5% -17px;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.journey-cards article {
  background: #fffaf8;
  border: 1px solid #eee2dd;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.journey-no {
  width: 34px;
  height: 34px;
  background: white;
  border: 1px solid #ddd0cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}

.journey-tag {
  font-size: 7px;
  letter-spacing: 0.15em;
  padding: 5px 8px;
  border-radius: 15px;
}

.journey-tag.sale {
  background: #feeaf0;
  color: #da154c;
}

.journey-tag.care {
  background: #eaf2ff;
  color: #2f69c8;
}

.journey-tag.chat {
  background: #e9f8f1;
  color: #20825c;
}

.journey-cards h3 {
  font-size: 18px;
}

.journey-cards p {
  font-size: 12px;
  line-height: 1.7;
  color: #796f6b;
  min-height: 62px;
}

.journey-cards ul {
  list-style: none;
  padding: 13px 0 0;
  border-top: 1px solid #e9deda;
}

.journey-cards li {
  font-size: 11px;
  margin: 10px 0;
}

.journey-cards li::before {
  content: "✓";
  color: var(--pink);
  margin-right: 8px;
}

.workflow-section {
  background: #faf3ef;
  padding: 105px 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: center;
}

.workflow-copy h2, .resend-copy h2 {
  font-size: 42px;
}

.workflow-copy > p, .resend-copy > p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.workflow-points {
  margin-top: 30px;
}

.workflow-points > div {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #ddcfca;
}

.workflow-points > div > b {
  color: var(--pink);
  font-size: 9px;
}

.workflow-points span > * {
  display: block;
}

.workflow-points strong {
  font-size: 13px;
}

.workflow-points small {
  color: #817773;
  margin-top: 5px;
}

.calendar-card {
  background: white;
  border: 1px solid #e6d9d4;
  border-radius: 22px;
  padding: 27px;
  box-shadow: 0 20px 50px rgba(108, 60, 41, 0.0705882353);
}

.calendar-head {
  display: flex;
  align-items: center;
}

.calendar-head div {
  margin-right: auto;
}

.calendar-head small {
  font-size: 9px;
  color: #9c8e89;
}

.calendar-head h3 {
  font-size: 20px;
  margin: 5px 0;
}

.calendar-head > span {
  width: 30px;
  height: 30px;
  border: 1px solid #e3d7d2;
  display: grid;
  place-items: center;
  margin-left: 5px;
  border-radius: 8px;
}

.week, .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.week {
  border-bottom: 1px solid #eee3df;
  margin-top: 16px;
}

.week b {
  font-size: 8px;
  color: #9b8f8a;
  padding: 10px;
}

.days span {
  font-size: 10px;
  padding: 11px;
  position: relative;
}

.days .muted {
  color: #c8bfbc;
}

.days .event {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: white;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  padding: 9px;
  margin: auto;
}

.schedule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  background: #fff4f5;
  padding: 13px;
  border-radius: 10px;
  margin-top: 13px;
}

.schedule > span {
  font-size: 9px;
  color: #de2452;
}

.schedule b, .schedule small {
  display: block;
}

.schedule b {
  font-size: 10px;
}

.schedule small {
  font-size: 8px;
  color: #887d79;
  margin-top: 4px;
}

.schedule i {
  font-size: 7px;
  color: #178655;
  background: #ddf7e9;
  border-radius: 12px;
  padding: 5px;
  font-style: normal;
}

.resend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.resend-visual {
  background: #241a19;
  border-radius: 26px;
  padding: 45px;
  color: white;
  text-align: center;
}

.send-ring {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  border: 13px solid #554542;
  border-top-color: var(--pink);
  border-right-color: var(--coral);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.send-ring span {
  font-size: 32px;
  font-weight: 800;
}

.send-ring small {
  font-size: 9px;
  color: #a99a96;
}

.delivery-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  margin: 27px 0;
}

.delivery-row b, .delivery-row small {
  display: block;
}

.delivery-row b {
  font-size: 17px;
}

.delivery-row small {
  font-size: 8px;
  color: #a49793;
}

.missed b {
  color: #ff7f85;
}

.gap-line {
  height: 1px;
  background: #5d4d49;
}

.gap-line span {
  display: block;
  width: 94%;
  height: 100%;
  background: #34ba84;
}

.resend-visual button {
  background: white;
  border: 0;
  border-radius: 9px;
  width: 100%;
  padding: 12px;
  font-size: 10px;
  font-weight: bold;
}

.resend-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  margin-top: 25px;
}

.resend-benefits span::first-letter {
  color: var(--pink);
}

.results-section {
  background: #201817;
  color: white;
  padding: 110px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.results-grid > div:first-child > p {
  color: #bfb3b0;
  line-height: 1.8;
  font-size: 14px;
}

.metric-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 28px;
}

.metric-list span {
  font-size: 10px;
  padding: 10px;
  border: 1px solid #4a3a37;
  border-radius: 8px;
}

.metric-list span::before {
  content: "✓";
  color: #ff6e78;
  margin-right: 7px;
}

.analytics-card {
  background: white;
  color: var(--ink);
  border-radius: 20px;
  padding: 24px;
}

.analytics-head {
  display: flex;
  justify-content: space-between;
}

.analytics-head small {
  font-size: 7px;
  letter-spacing: 0.13em;
  color: #a19490;
}

.analytics-head h3 {
  font-size: 16px;
  margin: 5px 0;
}

.analytics-head select {
  border: 1px solid #e4d9d5;
  background: white;
  border-radius: 8px;
  padding: 7px;
  font-size: 8px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.kpis > div {
  background: #faf5f3;
  border-radius: 10px;
  padding: 13px;
}

.kpis small, .kpis b, .kpis i {
  display: block;
}

.kpis small {
  font-size: 8px;
  color: #8d817d;
}

.kpis b {
  font-size: 22px;
  margin: 7px 0;
}

.kpis i {
  font-size: 8px;
  color: #159060;
  font-style: normal;
}

.chart {
  height: 180px;
  display: flex;
  margin-top: 25px;
}

.chart-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ad9f9a;
  font-size: 7px;
  padding-bottom: 20px;
}

.chart-bars {
  display: flex;
  align-items: end;
  flex: 1;
  border-bottom: 1px solid #e5d9d5;
  margin-left: 12px;
  gap: 12px;
  background: repeating-linear-gradient(to bottom, #eee3df 0 1px, transparent 1px 40px);
}

.chart-bars > div {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.chart-bars span {
  display: block;
  width: 60%;
  background: linear-gradient(#f04b65, #f36f4f);
  border-radius: 5px 5px 0 0;
}

.chart-bars small {
  font-size: 7px;
  color: #958985;
  margin-top: 6px;
  white-space: nowrap;
}

.admin-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.admin-card {
  border: 1px solid #e9ddd8;
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.55fr;
  gap: 38px;
  align-items: center;
}

.admin-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 17px;
}

.admin-icon {
  width: 52px;
  height: 52px;
  background: #feeaf0;
  color: var(--pink);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.admin-card small {
  font-size: 7px;
  letter-spacing: 0.15em;
  color: #a0928e;
}

.admin-card h2 {
  font-size: 19px;
  line-height: 1.4;
  margin: 6px 0;
}

.admin-card > p {
  font-size: 11px;
  line-height: 1.7;
  color: #786e6b;
}

.toggle-demo {
  background: #faf5f3;
  border-radius: 12px;
  padding: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-demo span > * {
  display: block;
}

.toggle-demo b {
  font-size: 9px;
}

.toggle-demo small {
  font-size: 7px;
  margin-top: 4px;
}

.toggle-demo > i {
  width: 38px;
  height: 21px;
  border-radius: 20px;
  background: #dbd0cc;
  padding: 3px;
}

.toggle-demo > i b {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  display: block;
}

.final-cta {
  background: linear-gradient(135deg, #d81850, #f05243);
  border-radius: 28px;
  color: white;
  text-align: center;
  padding: 85px 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}

.final-cta > *:not(.cta-orb) {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: 48px;
}

.final-cta > p {
  font-size: 15px;
  color: #ffe1e2;
}

.hero-actions.center {
  justify-content: center;
}

.zwiz-btn.white {
  background: white;
  color: #c81748;
}

.zwiz-btn.outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4666666667);
  color: white;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1450980392);
}

.orb-one {
  width: 500px;
  height: 500px;
  left: -240px;
  top: -260px;
}

.orb-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -240px;
}

.footer {
  border-top: 1px solid #eee3df;
  min-height: 115px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
}

.footer p, .footer small, .footer div {
  font-size: 10px;
  color: #817671;
}

.footer div {
  display: flex;
  gap: 22px;
}

.footer a:hover {
  color: var(--pink);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-copy {
    text-align: center;
  }
  .eyebrow, .channel-row, .hero-actions, .micro-proof {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .statement-grid, .section-head, .workflow-grid, .results-grid, .resend {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .use-strip {
    grid-template-columns: 1fr 1fr;
  }
  .channel-cards {
    grid-template-columns: 1fr 1fr;
  }
  .segment-board {
    grid-template-columns: 1fr;
  }
  .journey-cards {
    grid-template-columns: 1fr;
  }
  .journey-line {
    display: none;
  }
  .admin-card {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
  }
  .hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    height: 68px;
  }
  .nav-cta {
    padding: 10px 13px;
    font-size: 11px;
  }
  .hero {
    padding-top: 50px;
    min-height: auto;
  }
  .hero h1, .section h2, .statement h2, .channel-section h2, .results-section h2, .final-cta h2, .workflow-copy h2, .resend-copy h2 {
    font-size: 36px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .channel-row {
    flex-wrap: wrap;
  }
  .micro-proof {
    flex-wrap: wrap;
  }
  .app-window {
    transform: none;
  }
  .float-chip {
    display: none;
  }
  .app-sidebar {
    width: 42px;
  }
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .phone-preview {
    display: none;
  }
  .statement {
    padding-top: 70px;
  }
  .statement-grid {
    gap: 20px;
  }
  .use-strip {
    grid-template-columns: 1fr;
  }
  .use-strip div {
    border-right: 0;
    border-bottom: 1px solid #493b38;
    flex-direction: row;
  }
  .section, .channel-section, .results-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-head {
    gap: 16px;
    margin-bottom: 35px;
  }
  .segment-board {
    padding: 16px;
  }
  .segment-card {
    grid-template-columns: auto 1fr;
  }
  .segment-card > b {
    grid-column: 2;
  }
  .channel-cards {
    grid-template-columns: 1fr;
  }
  .channel-card {
    min-height: 190px;
  }
  .journey-cards article {
    padding: 22px;
  }
  .workflow-section {
    padding: 80px 0;
  }
  .calendar-card {
    padding: 15px;
  }
  .days span {
    padding: 8px 4px;
  }
  .resend {
    gap: 45px;
  }
  .resend-visual {
    padding: 28px 20px;
  }
  .results-grid {
    gap: 45px;
  }
  .kpis b {
    font-size: 17px;
  }
  .chart-bars {
    gap: 4px;
  }
  .admin-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .final-cta {
    border-radius: 20px;
    padding: 65px 20px;
  }
  .final-cta .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer div {
    flex-wrap: wrap;
  }
}
/* ZWIZ Chatbot landing visual language */
:root {
  --ink:#0b0807;
  --muted:#6c757d;
  --paper:#fff;
  --pink:#ea1953;
  --coral:#f34b39;
  --orange:#f48b4f;
  --blush:#f3e6ea;
  --line:#f0dfe5;
}

body {
  background: #fff;
  font-family: "Kanit", "Noto Sans Thai", "Arial", sans-serif;
  color: var(--ink);
}

.shell {
  width: min(1240px, 100% - 56px);
}

.nav {
  height: 84px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.8509803922);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}

.logo {
  font-size: 30px;
  letter-spacing: -2px;
}

.logo span {
  color: #0b0807;
}

.logo b {
  color: var(--pink);
}

.nav-cta {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  box-shadow: 0 10px 26px rgba(234, 25, 83, 0.168627451);
}

.hero {
  min-height: 760px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 68px;
  padding-top: 64px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 610px;
  height: 610px;
  right: -180px;
  top: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd8e9 0, #fff1e3 48%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.hero h1, .section h2, .statement h2, .channel-section h2, .results-section h2, .final-cta h2, .workflow-copy h2, .resend-copy h2 {
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.14;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #5d4f50;
}

.eyebrow {
  letter-spacing: 0.12em;
}

.zwiz-btn, .nav-cta {
  border-radius: 14px;
}

.zwiz-btn.primary {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  box-shadow: 0 13px 30px rgba(234, 25, 83, 0.231372549);
}

.zwiz-btn.secondary {
  border: 1.5px solid var(--pink);
  color: var(--pink);
}

.channel-item {
  background: white;
  border: 1px solid #f0e5e9;
  border-radius: 12px;
  padding: 7px 10px;
  box-shadow: 0 8px 24px rgba(64, 19, 29, 0.0392156863);
}

.broadcast-stage {
  animation: stageIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-window {
  border-radius: 28px;
  border: 1px solid #f2dfe6;
  box-shadow: 0 28px 80px rgba(155, 44, 76, 0.1098039216);
  transform: none;
}

.app-sidebar {
  background: #fff;
  color: #b8a9ae;
  border-right: 1px solid #f1e6e9;
}

.app-sidebar span.active {
  background: #fde8ee;
  color: var(--pink);
}

.app-body {
  background: #fff9fb;
}

.float-chip {
  border-color: #f1e2e7;
  box-shadow: 0 16px 42px rgba(155, 44, 76, 0.0941176471);
  animation: softFloat 4s ease-in-out infinite;
}

.chip-time {
  animation-delay: 1s;
}

.statement, .channel-section, .results-section {
  background: linear-gradient(180deg, #fff7fa 0, #fff 100%);
  color: var(--ink);
}

.statement {
  border-top: 1px solid #f7e7ec;
  border-bottom: 1px solid #f7e7ec;
}

.statement p, .channel-section .light-head p, .results-grid > div:first-child > p {
  color: #6c5f62;
}

.statement a {
  color: var(--pink);
}

.eyebrow.light {
  color: var(--pink);
}

.use-strip {
  border-top: 1px solid #f0dfe5;
}

.use-strip div {
  border-right: 1px solid #f0dfe5;
}

.use-strip b {
  color: var(--pink);
}

.segment-board, .workflow-section {
  background: linear-gradient(135deg, #fff7fa, #fff3ea);
}

.segment-board {
  border: 1px solid #f7e2e8;
}

.segment-card, .calendar-card, .journey-cards article, .admin-card {
  box-shadow: 0 14px 38px rgba(132, 39, 66, 0.0431372549);
}

.campaign-card, .resend-visual {
  background: linear-gradient(145deg, #ea1953, #f34b39 60%, #f48b4f);
  box-shadow: 0 22px 50px rgba(234, 25, 83, 0.1725490196);
}

.campaign-card button, .resend-visual button {
  color: var(--pink);
}

.channel-cards {
  gap: 16px;
}

.channel-card {
  background: white;
  border: 1px solid #f0dfe5;
  box-shadow: 0 12px 36px rgba(132, 39, 66, 0.0431372549);
  color: var(--ink);
}

.channel-card p {
  color: #6c5f62;
}

.channel-card small, .channel-card > b {
  color: #a28f95;
}

.channel-card:hover {
  background: #fff8fa;
  border-color: #f0a5b5;
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(234, 25, 83, 0.0941176471);
}

.platform-note {
  color: #9b888e;
}

.journey-line {
  background: #f0cbd6;
}

.journey-cards article {
  background: #fff;
}

.workflow-section {
  border-top: 1px solid #f5e2e7;
  border-bottom: 1px solid #f5e2e7;
}

.schedule {
  background: #fff0f4;
}

.results-section {
  border-top: 1px solid #f6e3e9;
}

.metric-list span {
  border-color: #f0dfe5;
  background: white;
}

.analytics-card {
  border: 1px solid #f0dfe5;
  box-shadow: 0 22px 60px rgba(132, 39, 66, 0.0705882353);
}

.final-cta {
  background: linear-gradient(135deg, #ea1953 0, #f34b39 58%, #f48b4f 100%);
  box-shadow: 0 25px 70px rgba(234, 25, 83, 0.1803921569);
}

.footer {
  border-color: #f0e3e7;
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .broadcast-stage, .float-chip {
    animation: none !important;
  }
}
@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 1240px);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero::before {
    right: -320px;
  }
  .hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1240px);
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .channel-item {
    padding: 6px 8px;
  }
  .statement, .channel-section, .results-section {
    background: #fff9fb;
  }
}
/* Hero typography matched to the ZWIZ Chatbot landing */
.hero h1 {
  font-size: clamp(52px, 4.7vw, 75px);
  line-height: 1.14;
  letter-spacing: -2.2px;
  font-weight: 600;
  max-width: 680px;
}

.hero-lead {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.eyebrow {
  font-size: 13px;
}

.zwiz-btn {
  font-size: 16px;
  font-weight: 500;
}

.micro-proof {
  font-size: 13px;
}

.channel-row {
  gap: 12px;
  margin: 30px 0;
  align-items: center;
}

.channel-item {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.channel-item img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.channel-item.wa img {
  width: 34px;
  height: 34px;
}

.channel-item > span {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.channel-item > span svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.channel-item > span svg path, .channel-item > span svg rect, .channel-item > span svg circle {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-item > span.fb svg path, .channel-item > span.tk svg path {
  fill: #fff;
  stroke: none;
}

.channel-item > span.ig .solid-dot {
  fill: #fff;
  stroke: none;
}

.channel-item > span.line svg path {
  fill: #fff;
  stroke: none;
}

.channel-item > span.line svg text {
  font-size: 5.2px;
  font-weight: 900;
  fill: #06c755;
}

.channel-item > span.wa svg > path:first-child {
  fill: none;
  stroke: #fff;
}

.channel-item > span.wa svg > path:last-child {
  fill: #fff;
  stroke: none;
}

.channel-item small {
  display: none;
}

.app-top small, .builder-form label {
  font-size: 11px;
}

.app-top h3 {
  font-size: 21px;
}

.status {
  font-size: 11px;
}

.mini-channels span {
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.select-box {
  font-size: 13px;
  padding: 12px 13px;
}

.channel-select {
  background: #fff;
  margin-bottom: 14px;
}

.message-editor {
  font-size: 13px;
  line-height: 1.55;
  min-height: 132px;
  padding: 14px;
}

.phone-head {
  font-size: 12px;
}

.shop-avatar {
  width: 24px;
  height: 24px;
}

.promo-card {
  font-size: 11px;
  padding: 10px;
}

.promo-card p {
  font-size: 11px;
  line-height: 1.45;
}

.promo-card button {
  font-size: 11px;
  padding: 7px;
}

.app-actions, .app-actions button {
  font-size: 12px;
}

.float-chip small {
  font-size: 11px;
}

.float-chip b {
  font-size: 14px;
}

.micro-proof span::first-letter {
  color: inherit;
}

.micro-proof span::before {
  content: "✓";
  color: var(--pink);
  font-weight: 900;
  margin-right: 6px;
}

.nav-spacer {
  flex: 1;
}

.hero-only-page {
  min-height: 100vh;
  overflow: hidden;
}

.hero-only-page .hero {
  padding-bottom: 72px;
}

/* Core feature 1 — channel-aware message types */
.lifecycle-section {
  position: relative;
  padding: 96px 0 104px;
  background: linear-gradient(135deg, #fff8fa 0%, #fff 58%, #fff8f1 100%);
  border-top: 1px solid #f7e5eb;
  overflow: hidden;
}

.lifecycle-section .shell {
  width: min(1060px, 100% - 112px);
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 76px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lifecycle-copy h2 {
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0 17px;
}

.lifecycle-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.lifecycle-copy > h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 9px;
  font-weight: 500;
}

.lifecycle-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #65585b;
  max-width: 540px;
  margin: 0;
}

.lifecycle-lead strong {
  font-weight: 500;
  color: #33292c;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.feature-points > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-points i {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 50%;
}

.feature-points p, .feature-points b, .feature-points span {
  display: block;
  margin: 0;
}

.feature-points b {
  font-size: 15px;
  font-weight: 500;
}

.feature-points span {
  font-size: 13px;
  line-height: 1.55;
  color: #75686b;
  margin-top: 3px;
  font-weight: 300;
}

.lifecycle-visual {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  background: #fff;
  border: 1px solid #f1dfe5;
  border-radius: 24px;
  padding: 23px;
  box-shadow: 0 22px 58px rgba(155, 44, 76, 0.0705882353);
  position: relative;
}

.demo-heading span, .demo-heading b {
  display: block;
}

.demo-heading span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.demo-heading b {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 500;
}

.channel-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 18px 0 16px;
}

.channel-tabs button {
  min-width: 0;
  border: 1px solid #efe5e8;
  background: #fff;
  border-radius: 9px;
  padding: 7px 3px 6px;
  color: #75696c;
  cursor: pointer;
  transition: 0.25s ease;
}

.channel-tabs button i, .channel-tabs button span {
  display: block;
  font-style: normal;
}

.channel-tabs button i {
  height: 19px;
  font-size: 12px;
  font-weight: 700;
}

.channel-tabs button span {
  font-size: 7px;
  white-space: nowrap;
}

.channel-tabs button.active {
  border-color: #f09aaf;
  background: #fff3f6;
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(155, 44, 76, 0.062745098);
}

.channel-tabs button.line-demo.active {
  border-color: #93dfad;
  background: #f1fcf5;
  color: #06a947;
}

.channel-tabs button.whatsapp.active {
  border-color: #91dfac;
  background: #f1fcf5;
  color: #12a84a;
}

.channel-tabs button.facebook.active {
  border-color: #9bc2fa;
  background: #f3f7ff;
  color: #1877f2;
}

.channel-tabs button.tiktok.active {
  border-color: #b5afb1;
  background: #f7f6f6;
  color: #111;
}

.demo-panel {
  background: #fffafb;
  border: 1px solid #f1e5e8;
  border-radius: 16px;
  padding: 18px;
  animation: demoSwitch 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  min-height: 245px;
}

.demo-panel label {
  display: block;
  font-size: 10px;
  color: #8f8084;
  margin: 0 0 7px;
  font-weight: 400;
}

.demo-select {
  height: 42px;
  border: 1px solid #e9dfe2;
  background: #fff;
  border-radius: 9px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 13px;
}

.demo-select > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.demo-select i {
  font-style: normal;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  background: #1877f2;
}

.demo-select i.instagram {
  background: linear-gradient(135deg, #7b37d8, #f04a53, #ffb336);
}

.demo-select i.line-demo, .demo-select i.whatsapp {
  background: #06c755;
}

.demo-select i.tiktok {
  background: #111;
}

.message-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-types > div {
  min-height: 39px;
  border: 1px solid #eee4e7;
  background: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: #776a6e;
}

.message-types > div.selected {
  border-color: #ef9ab1;
  background: #fff3f6;
  color: var(--pink);
}

.message-types.facebook > div.selected {
  border-color: #9bc2fa;
  background: #f3f7ff;
  color: #1877f2;
}

.message-types.line-demo > div.selected, .message-types.whatsapp > div.selected {
  border-color: #91dfac;
  background: #f1fcf5;
  color: #09a343;
}

.message-types.tiktok > div.selected {
  border-color: #c9c3c5;
  background: #f7f6f6;
  color: #111;
}

.message-types span {
  font-size: 12px;
}

.message-types p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.demo-progress {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}

.demo-progress i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #e5d9dc;
  transition: 0.3s;
}

.demo-progress i.active {
  width: 22px;
  background: var(--pink);
}

@keyframes demoSwitch {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 52px;
    max-width: none;
  }
}
@media (max-width: 900px) {
  .lifecycle-section {
    padding: 84px 0;
  }
  .lifecycle-section .shell {
    width: min(100% - 80px, 760px);
  }
  .lifecycle-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .lifecycle-visual {
    justify-self: center;
  }
  .lifecycle-copy {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(38px, 11.5vw, 47px);
    line-height: 1.16;
    letter-spacing: -1.25px;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }
  .eyebrow {
    font-size: 11px;
  }
  .zwiz-btn {
    font-size: 15px;
  }
  .micro-proof {
    font-size: 11px;
  }
  .channel-item small {
    font-size: 11px;
  }
  .lifecycle-section {
    padding: 68px 0 76px;
  }
  .lifecycle-section .shell {
    width: min(100% - 38px, 560px);
  }
  .lifecycle-copy h2 {
    font-size: 34px;
  }
  .lifecycle-copy > h3 {
    font-size: 16px;
  }
  .lifecycle-lead {
    font-size: 14px;
  }
  .feature-points span {
    font-size: 12px;
  }
  .lifecycle-visual {
    padding: 17px 13px;
    border-radius: 20px;
  }
  .channel-tabs {
    gap: 3px;
  }
  .channel-tabs button span {
    font-size: 6.5px;
  }
  .demo-panel {
    padding: 14px;
  }
  .demo-heading b {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .demo-panel {
    animation: none;
  }
  .channel-tabs button {
    transition: none;
  }
}
/* Core feature 1 — production UI fidelity and stable channel switching */
.lifecycle-copy h2 {
  font-size: 56px;
}

.lifecycle-copy > h3 {
  font-size: 23px;
}

.lifecycle-lead {
  font-size: 17px;
}

.feature-points b, .feature-points span {
  font-size: 15px;
}

.channel-tabs button img, .channel-tabs button span {
  display: block;
}

.channel-tabs button img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.channel-tabs button span {
  font-size: 7px;
  white-space: nowrap;
}

.demo-panel {
  height: 365px;
  min-height: 365px;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.broadcast-tabs {
  height: 49px;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  border-bottom: 1px solid #ddd4d7;
  text-align: center;
  align-items: end;
}

.broadcast-tabs > * {
  padding: 0 6px 12px;
  font-size: 11px;
  color: #777;
  font-weight: 500;
}

.broadcast-tabs b {
  color: #252124;
  border-bottom: 2px solid #ff2d72;
}

.channel-form {
  padding: 15px 16px;
  color: #858085;
}

.channel-form label {
  display: block;
  font-size: 10px;
  color: #928c90;
  margin: 0 0 6px;
  font-weight: 400;
}

.real-select {
  height: 39px;
  border: 1px solid #e3dde0;
  border-radius: 22px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #33485e;
  font-size: 12px;
}

.real-select b {
  color: #aaa;
  font-size: 11px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 28px;
  margin: -2px 0 14px;
  flex-wrap: wrap;
}

.message-radio {
  gap: 12px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  white-space: nowrap;
}

.radio-option > i {
  width: 16px;
  height: 16px;
  border: 2px solid #929292;
  border-radius: 50%;
  position: relative;
  flex: none;
}

.radio-option > i.checked {
  border-color: #ff2c78;
}

.radio-option > i.checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #ff2c78;
  border-radius: 50%;
}

.info-strip {
  background: #fff5f8;
  color: #171417;
  font-size: 9px;
  font-weight: 600;
  padding: 8px 9px;
  border-radius: 7px;
  margin: -7px 0 18px;
}

.ui-note {
  font-size: 9px;
  line-height: 1.55;
  color: #999;
  margin: -3px 0 16px;
}

.ui-note.compact {
  margin-top: -9px;
}

.tiktok-note {
  font-size: 10px;
  color: #929094;
  margin: 9px 0 20px;
}

.tiktok-note b {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff2c78;
  color: #fff;
  font-size: 8px;
}

@media (max-width: 600px) {
  .lifecycle-copy h2 {
    font-size: 38px;
  }
  .lifecycle-copy > h3 {
    font-size: 19px;
  }
  .lifecycle-lead {
    font-size: 15px;
  }
  .feature-points b, .feature-points span {
    font-size: 15px;
  }
  .demo-panel {
    height: 390px;
    min-height: 390px;
  }
  .message-radio {
    gap: 8px;
  }
  .radio-option {
    font-size: 9px;
  }
}
/* Core feature 2 — live audience segmentation */
.segmentation-section {
  padding: 104px 0 112px;
  background: #fff;
  position: relative;
  border-top: 1px solid #f7e7ec;
}

.segmentation-section .shell {
  width: min(1060px, 100% - 112px);
}

.segmentation-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.segmentation-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0;
}

.segmentation-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.segmentation-copy > h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 0 0 9px;
  font-weight: 500;
}

.segmentation-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #65585b;
  margin: 0;
  max-width: 520px;
}

.segment-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.segment-points > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: center;
}

.segment-points i {
  width: 7px;
  height: 7px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 50%;
}

.segment-points span {
  font-size: 15px;
  font-weight: 300;
  color: #4f4447;
}

.segment-demo {
  width: 100%;
  max-width: 450px;
  min-height: 590px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(155, 44, 76, 0.0784313725);
  position: relative;
  overflow: hidden;
}

.segment-topline span, .segment-topline b {
  display: block;
}

.segment-topline span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.segment-topline b {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 500;
}

.segment-context {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9px;
  margin-top: 17px;
}

.segment-context > div {
  background: #fffafb;
  border: 1px solid #efe4e7;
  border-radius: 10px;
  padding: 9px 10px;
}

.segment-context small {
  display: block;
  font-size: 9px;
  color: #988b8f;
  margin-bottom: 5px;
}

.segment-context span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #433a3d;
}

.segment-context img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.segment-context span > b {
  margin-left: auto;
  color: #aaa;
}

.segment-context span > i {
  width: 12px;
  height: 12px;
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.target-mode {
  margin-top: 15px;
}

.target-mode > small {
  display: block;
  font-size: 10px;
  color: #8f8387;
  margin-bottom: 7px;
}

.target-mode > div {
  display: flex;
  gap: 17px;
}

.target-mode .radio-option {
  font-size: 10px;
}

.filter-panel {
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  background: #fff8fa;
  border: 1px solid transparent;
  border-radius: 13px;
  margin-top: 10px;
  padding: 0 12px;
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-panel.shown {
  height: 181px;
  opacity: 1;
  transform: none;
  border-color: #f0dfe5;
  padding: 11px 12px;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.filter-title b {
  font-size: 11px;
}

.filter-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
  opacity: 0.52;
  transition: 0.35s;
}

.filter-row.active {
  opacity: 1;
}

.filter-row label {
  font-size: 9px;
  color: #74686c;
}

.filter-row span {
  height: 34px;
  border: 1px solid #e9dde1;
  border-radius: 8px;
  background: white;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #84787c;
}

.filter-row.active span {
  border-color: #ef9bb1;
  color: #332a2d;
  box-shadow: 0 5px 15px rgba(234, 25, 83, 0.0431372549);
}

.filter-row span b {
  color: #aaa;
}

.audience-result {
  margin-top: 13px;
  background: #fff;
  border: 1px solid #f0e2e6;
  border-radius: 14px;
  padding: 12px;
  min-height: 76px;
}

.audience-count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-count small {
  margin-right: auto;
  font-size: 11px;
  font-weight: 700;
  color: #20191b;
}

.audience-count strong {
  font-size: 27px;
  line-height: 1;
  color: var(--pink);
  animation: countPop 0.38s ease;
}

.filter-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  min-height: 22px;
  margin-top: 9px;
}

.filter-chips span {
  font-size: 8px;
  color: #d5194d;
  background: #fff0f4;
  border: 1px solid #f4c6d2;
  border-radius: 99px;
  padding: 4px 7px;
  animation: chipIn 0.35s ease;
}

.filter-chips b {
  margin-left: 3px;
}

.segment-message {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 51px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 13px;
  padding: 11px 13px;
  opacity: 0;
  transform: translateY(13px);
  pointer-events: none;
  transition: 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 30px rgba(132, 39, 66, 0.0745098039);
}

.segment-message.shown {
  opacity: 1;
  transform: none;
}

.segment-message small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #51464a;
  margin-bottom: 7px;
}

.typing-box {
  min-height: 54px;
  border: 1px solid #eadde1;
  border-radius: 9px;
  background: #fffafb;
  padding: 9px 10px;
  font-size: 10px;
  line-height: 1.55;
  color: #443a3d;
}

.typing-placeholder {
  color: #b5a8ac;
}

.typing-cursor {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  margin-left: 2px;
  vertical-align: -2px;
  animation: cursorBlink 0.7s steps(1) infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}
.segment-use {
  position: absolute;
  right: 22px;
  bottom: 17px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: #fff;
  font-size: 9px;
  padding: 9px 12px;
  cursor: pointer;
}

.segment-progress {
  position: absolute;
  left: 22px;
  bottom: 27px;
  display: flex;
  gap: 4px;
}

.segment-progress i {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #e7dade;
  transition: 0.3s;
}

.segment-progress i.active {
  width: 18px;
  background: var(--pink);
}

@keyframes countPop {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .segmentation-section {
    padding: 84px 0;
  }
  .segmentation-section .shell {
    width: min(100% - 80px, 760px);
  }
  .segmentation-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .segment-demo {
    justify-self: center;
    order: 2;
  }
  .segmentation-copy {
    order: 1;
  }
}
@media (max-width: 600px) {
  .segmentation-section {
    padding: 70px 0 78px;
  }
  .segmentation-section .shell {
    width: min(100% - 38px, 560px);
  }
  .segmentation-copy h2 {
    font-size: 38px;
  }
  .segmentation-copy > h3 {
    font-size: 19px;
  }
  .segmentation-lead {
    font-size: 15px;
  }
  .segment-points span {
    font-size: 15px;
  }
  .segment-demo {
    min-height: 600px;
    padding: 17px 13px;
  }
  .segment-context {
    grid-template-columns: 1fr;
  }
  .filter-panel.shown {
    height: 181px;
  }
  .segment-message {
    left: 13px;
    right: 13px;
  }
  .segment-use {
    right: 13px;
  }
  .segment-progress {
    left: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .filter-panel, .filter-row, .avatar-grid i, .segment-message {
    transition: none;
  }
  .audience-count strong, .filter-chips span {
    animation: none;
  }
}
/* Core feature 3 — guided broadcast composer */
.composer-section {
  padding: 104px 0 112px;
  background: linear-gradient(135deg, #fff8fa 0%, #fff 58%, #fff8f1 100%);
  border-top: 1px solid #f7e5eb;
  position: relative;
}

.composer-section .shell {
  width: min(1060px, 100% - 112px);
}

.composer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.composer-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0;
}

.composer-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.composer-copy > h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.composer-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.composer-points > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: center;
}

.composer-points i {
  width: 7px;
  height: 7px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 50%;
}

.composer-points span {
  font-size: 15px;
  font-weight: 300;
  color: #4f4447;
}

.composer-demo {
  width: 100%;
  max-width: 470px;
  height: 690px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(155, 44, 76, 0.0784313725);
  position: relative;
  overflow: hidden;
  justify-self: end;
}

.composer-topline span, .composer-topline b {
  display: block;
}

.composer-topline span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.composer-topline b {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 500;
}

.composer-scroll {
  position: relative;
  margin-top: 15px;
  padding-bottom: 8px;
}

.composer-scroll > label {
  display: block;
  font-size: 9px;
  color: #807478;
  margin: 11px 0 5px;
  font-weight: 500;
}

.composer-input, .composer-select {
  height: 36px;
  border: 1px solid #e9dde1;
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #3f3538;
  transition: 0.25s;
}

.composer-input.focus, .composer-select.focus {
  border-color: #ef8caa;
  box-shadow: 0 0 0 3px #ffedf3;
}

.composer-select {
  justify-content: space-between;
}

.composer-select span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.composer-select img, .composer-dropdown img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.composer-select > b {
  color: #aaa;
}

.composer-dropdown {
  position: absolute;
  z-index: 4;
  top: 129px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #efcad5;
  border-radius: 9px;
  padding: 5px;
  box-shadow: 0 12px 30px rgba(132, 39, 66, 0.0941176471);
  animation: menuIn 0.3s ease;
}

.composer-dropdown span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 9px;
}

.composer-dropdown span:first-child {
  background: #fff0f4;
  color: var(--pink);
}

.composer-radio-row {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 25px;
}

.composer-radio-row .radio-option {
  font-size: 9px;
}

.composer-radio-row .radio-option > i {
  width: 14px;
  height: 14px;
}

.composer-radio-row .radio-option > i.checked::after {
  inset: 2px;
}

.composer-tools {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border: 1px solid #f2a2b9;
  border-radius: 8px;
}

.composer-tools::-webkit-scrollbar {
  display: none;
}

.composer-tools button {
  flex: 0 0 25%;
  scroll-snap-align: start;
  min-width: 64px;
  height: 49px;
  border: 0;
  border-right: 1px solid #f2a2b9;
  background: #fff;
  color: #ef2862;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.composer-tools button:last-child {
  border-right: 0;
}

.composer-tools button span {
  display: block;
  font-size: 7px;
  margin-top: 3px;
}

.composer-tools button.active {
  background: #fff0f5;
  border: 2px solid #ff4f84;
  z-index: 1;
}

.composer-message {
  height: 0;
  opacity: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fffafb;
  padding: 0 10px;
  font-size: 9px;
  line-height: 1.5;
  color: #41373a;
  transition: 0.35s;
  margin-top: 0;
}

.composer-message.shown {
  height: 57px;
  opacity: 1;
  border-color: #eadde1;
  padding: 8px 10px;
  margin-top: 7px;
}

.composer-message > span {
  color: #aaa;
}

.composer-audience, .composer-schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee1e5;
  margin-top: 10px;
  padding-top: 10px;
}

.composer-audience > div b, .composer-audience > div span, .composer-schedule > div b, .composer-schedule > div span {
  display: block;
}

.composer-audience b, .composer-schedule b {
  font-size: 10px;
}

.composer-audience span, .composer-schedule span {
  font-size: 9px;
  color: #716569;
  margin-top: 3px;
}

.composer-audience strong {
  font-size: 19px;
  color: var(--pink);
  animation: countReveal 0.55s ease;
}

.composer-audience button {
  border: 1px solid #ff4f84;
  background: #fff;
  color: #ef2862;
  border-radius: 99px;
  padding: 6px 15px;
  font-size: 8px;
}

.composer-audience button.active {
  background: #fff0f5;
  box-shadow: 0 0 0 3px #ffedf3;
}

.composer-schedule > button {
  width: 36px;
  height: 32px;
  border: 0;
  border-radius: 7px;
  background: #eee;
  color: #777;
  font-size: 16px;
}

.composer-schedule > button.active {
  background: #ffe6ee;
  color: var(--pink);
  box-shadow: 0 0 0 3px #ffedf3;
}

.calendar-pop {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 8px;
  width: 210px;
  background: #fff;
  border: 1px solid #efcad5;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(132, 39, 66, 0.1137254902);
  animation: menuIn 0.3s ease;
}

.calendar-pop > b {
  font-size: 10px;
}

.calendar-week, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-top: 8px;
  text-align: center;
}

.calendar-week span {
  font-size: 7px;
  color: #999;
}

.calendar-days span {
  font-size: 8px;
  padding: 5px 0;
  border-radius: 6px;
}

.calendar-days span.selected {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: white;
}

.calendar-time {
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 8px;
  color: #777;
}

.calendar-time b {
  float: right;
  color: #222;
}

.composer-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 29px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #eee1e5;
  padding-top: 11px;
}

.composer-footer button {
  border-radius: 9px;
  padding: 8px 13px;
  font-size: 9px;
}

.composer-footer .draft {
  border: 1px solid #ccc;
  background: #fff;
  color: #999;
}

.composer-footer .send {
  border: 0;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: #fff;
  min-width: 72px;
}

.composer-footer .send.active {
  animation: sendPulse 0.7s ease infinite alternate;
}

.composer-progress {
  position: absolute;
  left: 22px;
  bottom: 14px;
  display: flex;
  gap: 3px;
}

.composer-progress i {
  width: 4px;
  height: 4px;
  border-radius: 9px;
  background: #eadde1;
}

.composer-progress i.active {
  width: 15px;
  background: var(--pink);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes countReveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes sendPulse {
  to {
    transform: scale(1.04);
    box-shadow: 0 7px 18px rgba(234, 25, 83, 0.2666666667);
  }
}
@media (max-width: 900px) {
  .composer-section {
    padding: 84px 0;
  }
  .composer-section .shell {
    width: min(100% - 80px, 760px);
  }
  .composer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .composer-demo {
    justify-self: center;
  }
  .composer-copy h2 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .composer-section {
    padding: 70px 0 78px;
  }
  .composer-section .shell {
    width: min(100% - 38px, 560px);
  }
  .composer-copy h2 {
    font-size: 38px;
  }
  .composer-copy > h3 {
    font-size: 19px;
  }
  .composer-points span {
    font-size: 15px;
  }
  .composer-demo {
    height: 700px;
    padding: 17px 13px;
  }
  .composer-footer {
    left: 13px;
    right: 13px;
  }
  .composer-progress {
    left: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .composer-dropdown, .calendar-pop, .composer-audience strong, .composer-footer .send {
    animation: none;
  }
  .composer-message {
    transition: none;
  }
}
/* Core feature 3 refinement: larger UI, fixed message frame, sequential scheduling */
.composer-demo {
  max-width: 520px;
  height: 660px;
}

.composer-topline b {
  font-size: 17px;
}

.composer-scroll > label {
  font-size: 13px;
  margin: 10px 0 5px;
}

.composer-input, .composer-select {
  height: 38px;
  font-size: 14px;
}

.composer-dropdown {
  top: 139px;
}

.composer-dropdown span {
  font-size: 13px;
}

.composer-radio-row {
  min-height: 28px;
}

.composer-radio-row .radio-option {
  font-size: 11px;
}

.composer-radio-row.message-types {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.composer-message-slot {
  height: 64px;
}

.composer-tools {
  height: 64px;
}

.composer-tools button {
  height: 64px;
  font-size: inherit;
}

.composer-tools button span {
  font-size: 11px;
  margin-top: 2px;
}

.composer-tool-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #ef2862;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.composer-message, .composer-message.shown {
  height: 64px;
  opacity: 1;
  border-color: #eadde1;
  padding: 9px 11px;
  margin-top: 0;
  font-size: 12px;
  animation: menuIn 0.3s ease;
}

.composer-audience, .composer-schedule {
  border-top: 0;
  margin-top: 10px;
  padding-top: 4px;
}

.composer-audience b, .composer-schedule b {
  font-size: 13px;
}

.composer-audience span, .composer-schedule span {
  font-size: 12px;
}

.composer-audience button, .composer-schedule > button {
  width: auto;
  height: 34px;
  border: 1px solid #ff4f84;
  background: #fff;
  color: #ef2862;
  border-radius: 99px;
  padding: 0 17px;
  font-size: 11px;
}

.composer-schedule {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

.composer-schedule.visible {
  opacity: 1;
  pointer-events: auto;
}

.composer-schedule > button.active {
  background: #fff0f5;
  color: #ef2862;
  box-shadow: 0 0 0 3px #ffedf3;
}

.composer-footer button {
  font-size: 12px;
  font-weight: 500;
}

.calendar-pop {
  bottom: 3px;
}

@media (max-width: 600px) {
  .composer-demo {
    height: 680px;
  }
  .composer-scroll > label {
    font-size: 12px;
  }
  .composer-input, .composer-select {
    font-size: 13px;
  }
  .composer-radio-row .radio-option {
    font-size: 10px;
  }
  .composer-radio-row.message-types {
    gap: 7px;
  }
  .composer-footer button {
    font-size: 11px;
  }
}
/* Shared animation type scale — aligned with Core feature 3 */
.broadcast-tabs > * {
  font-size: 13px;
}

.channel-form label {
  font-size: 13px;
}

.real-select {
  font-size: 14px;
}

.radio-option {
  font-size: 11px;
}

.info-strip, .ui-note {
  font-size: 11px;
}

.tiktok-note {
  font-size: 12px;
}

.segment-topline b {
  font-size: 17px;
}

.segment-context small, .target-mode > small {
  font-size: 13px;
}

.segment-context span {
  font-size: 14px;
}

.target-mode .radio-option {
  font-size: 11px;
}

.filter-title b {
  font-size: 13px;
}

.filter-row label {
  font-size: 12px;
}

.filter-row span {
  font-size: 12px;
}

.audience-count small {
  font-size: 13px;
}

.filter-chips span {
  font-size: 10px;
}

.segment-message small {
  font-size: 13px;
}

.typing-box {
  font-size: 12px;
}

.segment-use {
  font-size: 11px;
}

.segment-demo {
  min-height: 650px;
}

@media (max-width: 600px) {
  .segment-demo {
    min-height: 650px;
  }
}
/* Core feature 4 — resend only to unreached recipients */
.resend-section {
  padding: 104px 0 112px;
  background: #fff;
  border-top: 1px solid #f7e5eb;
  position: relative;
}

.resend-section .shell {
  width: min(1060px, 100% - 112px);
}

.resend-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.resend-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0;
}

.resend-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.resend-copy > h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 0 0 9px;
  font-weight: 500;
}

.resend-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #65585b;
  margin: 0;
  max-width: 520px;
}

.resend-demo {
  width: 100%;
  max-width: 520px;
  height: 570px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(155, 44, 76, 0.0784313725);
  position: relative;
  overflow: hidden;
}

.resend-topline span, .resend-topline b {
  display: block;
}

.resend-topline span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.resend-topline b {
  font-size: 17px;
  margin-top: 5px;
  font-weight: 500;
}

.resend-tabs {
  height: 54px;
  display: grid;
  grid-template-columns: 0.9fr 1.65fr;
  margin: 18px -22px 0;
  border-bottom: 1px solid #e9dde1;
  align-items: end;
}

.resend-tabs button {
  height: 54px;
  padding: 0 8px 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: #fff;
  color: #777;
  font-size: 13px;
  font-weight: 500;
  transition: 0.35s;
}

.resend-tabs button.active {
  border-bottom-color: var(--pink);
  color: #252124;
  font-weight: 500;
  background: #fff;
}

.resend-body {
  position: relative;
  padding-top: 18px;
}

.resend-body > label {
  display: block;
  font-size: 13px;
  color: #807478;
  margin: 0 0 6px;
  font-weight: 500;
}

.resend-body > label:nth-of-type(2) {
  margin-top: 18px;
}

.resend-select {
  height: 42px;
  border: 1px solid #e9dde1;
  border-radius: 9px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #443a3d;
  transition: 0.3s;
}

.resend-select.focus {
  border-color: #ef8caa;
  box-shadow: 0 0 0 3px #ffedf3;
}

.resend-select b {
  color: #aaa;
}

.resend-dropdown {
  position: absolute;
  z-index: 5;
  top: 83px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #efcad5;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 14px 32px rgba(132, 39, 66, 0.1137254902);
  animation: menuIn 0.3s ease;
}

.resend-dropdown button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 7px;
  font-size: 13px;
  color: #403639;
  text-align: left;
}

.resend-dropdown button:first-child {
  background: #fff0f4;
  color: #d91e54;
}

.resend-dropdown small {
  font-size: 11px;
  color: #9b8e92;
}

.resend-campaign-summary {
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.resend-campaign-summary.shown {
  height: 62px;
  opacity: 1;
  margin-top: 10px;
  padding: 9px 11px;
  border-color: #f0dfe5;
  background: #fff8fa;
}

.resend-campaign-summary small, .resend-campaign-summary b {
  display: block;
}

.resend-campaign-summary small {
  font-size: 10px;
  color: #918488;
}

.resend-campaign-summary b {
  font-size: 13px;
  margin-top: 3px;
}

.resend-campaign-summary > span {
  font-size: 10px;
  color: #d91e54;
  background: #ffeaf0;
  border-radius: 99px;
  padding: 6px 8px;
}

.resend-message {
  height: 84px;
  border: 1px solid #eadde1;
  border-radius: 9px;
  background: #fffafb;
  padding: 12px;
  font-size: 12px;
  line-height: 1.65;
  color: #aaa;
  transition: 0.35s;
}

.resend-message.shown {
  color: #41373a;
  border-color: #efb4c5;
  box-shadow: 0 0 0 3px #fff1f5;
}

.resend-footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee1e5;
  padding-top: 13px;
}

.resend-footer p {
  margin: 0;
  font-size: 11px;
  color: #776b6f;
}

.resend-footer p i {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  border-radius: 50%;
  background: #fff0f4;
  color: var(--pink);
  font-style: normal;
}

.resend-footer button {
  min-width: 78px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: #fff;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 500;
}

.resend-footer button.active {
  animation: sendPulse 0.7s ease infinite alternate;
}

.resend-progress {
  position: absolute;
  left: 22px;
  bottom: 14px;
  display: flex;
  gap: 3px;
}

.resend-progress i {
  width: 4px;
  height: 4px;
  border-radius: 9px;
  background: #eadde1;
  transition: 0.3s;
}

.resend-progress i.active {
  width: 15px;
  background: var(--pink);
}

@media (max-width: 900px) {
  .resend-section {
    padding: 84px 0;
  }
  .resend-section .shell {
    width: min(100% - 80px, 760px);
  }
  .resend-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .resend-demo {
    justify-self: center;
    order: 2;
  }
  .resend-copy {
    order: 1;
  }
  .resend-copy h2 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .resend-section {
    padding: 70px 0 78px;
  }
  .resend-section .shell {
    width: min(100% - 38px, 560px);
  }
  .resend-copy h2 {
    font-size: 38px;
  }
  .resend-copy > h3 {
    font-size: 19px;
  }
  .resend-lead {
    font-size: 15px;
  }
  .resend-demo {
    height: 590px;
    padding: 17px 13px;
  }
  .resend-tabs {
    margin-left: -13px;
    margin-right: -13px;
  }
  .resend-tabs button {
    font-size: 13px;
  }
  .resend-footer {
    left: 13px;
    right: 13px;
    gap: 8px;
  }
  .resend-footer p {
    font-size: 9px;
  }
  .resend-progress {
    left: 13px;
  }
  .resend-campaign-summary > span {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .resend-tabs button, .resend-campaign-summary, .resend-message {
    transition: none;
  }
  .resend-dropdown, .resend-footer button {
    animation: none;
  }
}
/* Core feature 6 — broadcast reporting */
.priority-section {
  padding: 104px 0 112px;
  background: linear-gradient(135deg, #fff8fa 0%, #fff 62%, #fff8f1 100%);
  border-top: 1px solid #f7e5eb;
  position: relative;
}

.priority-section .shell {
  width: min(1060px, 100% - 112px);
}

.priority-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.priority-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0;
}

.priority-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.priority-copy > h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 0 0 9px;
  font-weight: 500;
}

.priority-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #65585b;
  margin: 0;
  max-width: 520px;
}

.priority-points {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.priority-points > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
}

.priority-points > div > i {
  width: 7px;
  height: 7px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 50%;
  margin-top: 8px;
}

.priority-points p {
  margin: 0;
}

.priority-points b, .priority-points span {
  display: block;
}

.priority-points b {
  font-size: 15px;
}

.priority-points span {
  font-size: 15px;
  font-weight: 300;
  color: #5d5154;
  margin-top: 2px;
}

.priority-copy blockquote {
  margin: 22px 0 0;
  padding: 12px 15px;
  border-left: 3px solid var(--pink);
  background: #fff3f6;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #4e4145;
  font-weight: 500;
}

.priority-demo {
  width: 100%;
  max-width: 520px;
  min-height: 330px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(155, 44, 76, 0.0784313725);
  position: relative;
  overflow: hidden;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.priority-topline span, .priority-topline b {
  display: block;
}

.priority-topline span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.priority-topline b {
  font-size: 17px;
  margin-top: 5px;
  font-weight: 500;
}

.priority-setting {
  margin-top: 24px;
  border: 1px solid #eee1e5;
  border-radius: 14px;
  padding: 18px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: 0.3s;
}

.priority-setting.focus {
  border-color: #f0a2b8;
  box-shadow: 0 0 0 3px #fff0f4;
}

.priority-setting small, .priority-setting b {
  display: block;
}

.priority-setting small {
  font-size: 14px;
  color: #8a7e82;
}

.priority-setting b {
  font-size: 16px;
  margin-top: 5px;
}

.priority-setting button {
  width: 56px;
  height: 31px;
  flex: 0 0 56px;
  border: 0;
  border-radius: 99px;
  background: #d9d4d6;
  padding: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.priority-setting button i {
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(73, 50, 59, 0.1490196078);
  transition: 0.3s;
}

.priority-setting button.on {
  background: var(--pink);
}

.priority-setting button.on i {
  transform: translateX(25px);
}

.priority-state {
  margin-top: 15px;
  border-radius: 12px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  line-height: 1.45;
  transition: 0.3s;
}

.priority-state i {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  border-radius: 99px;
  padding: 7px 12px;
  flex: 0 0 auto;
}

.priority-state span {
  font-weight: 500;
}

.priority-state.on {
  background: #fff1f5;
  color: #8f2344;
}

.priority-state.on i {
  background: linear-gradient(90deg, #ff841c, #dc005a);
  color: #fff;
}

.priority-state.off {
  background: #f5f4f4;
  color: #51494b;
}

.priority-state.off i {
  background: #666;
  color: #fff;
}

.priority-hint {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #918589;
}

.priority-inbox {
  margin-top: 11px;
  border: 1px solid #ece1e5;
  border-radius: 12px;
  overflow: hidden;
}

.priority-inbox-head {
  height: 57px;
  padding: 9px 11px;
  background: #fffafb;
  border-bottom: 1px solid #eee4e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.priority-inbox-head b, .priority-inbox-head small {
  display: block;
}

.priority-inbox-head b {
  font-size: 15px;
}

.priority-inbox-head small {
  font-size: 9px;
  color: #958a8d;
  margin-top: 2px;
}

.priority-inbox-head > span {
  font-size: 9px;
  color: #188a57;
  background: #eaf8f1;
  padding: 5px 7px;
  border-radius: 99px;
}

.priority-chat-list {
  height: 258px;
  background: #fff;
}

.priority-chat {
  height: 64px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid #f2eaed;
  animation: priorityMove 0.55s ease;
}

.priority-chat > i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2e8eb;
  color: #5d4f54;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
}

.priority-chat.broadcast > i {
  background: #ffe6ee;
  color: var(--pink);
}

.priority-chat b, .priority-chat span {
  display: block;
}

.priority-chat b {
  font-size: 12px;
}

.priority-chat b em {
  font-style: normal;
  font-size: 8px;
  color: #fff;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 99px;
  padding: 2px 5px;
  margin-left: 5px;
}

.priority-chat span {
  font-size: 10px;
  color: #83777b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 245px;
  margin-top: 3px;
}

.priority-chat > small {
  font-size: 9px;
  color: #a4999c;
}

.priority-chat.urgent {
  background: #fff;
}

.priority-result {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 37px;
  background: #fff;
  border: 1px solid #efbdcb;
  border-radius: 11px;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(132, 39, 66, 0.0941176471);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
}

.priority-result.shown {
  opacity: 1;
  transform: none;
}

.priority-result b, .priority-result span {
  display: block;
}

.priority-result b {
  font-size: 12px;
  color: var(--pink);
}

.priority-result span {
  font-size: 10px;
  color: #74686c;
  margin-top: 3px;
}

.priority-progress {
  position: absolute;
  left: 22px;
  bottom: 17px;
  display: flex;
  gap: 3px;
}

.priority-progress i {
  width: 4px;
  height: 4px;
  border-radius: 9px;
  background: #eadde1;
  transition: 0.3s;
}

.priority-progress i.active {
  width: 15px;
  background: var(--pink);
}

@keyframes priorityMove {
  from {
    opacity: 0.55;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .priority-section {
    padding: 84px 0;
  }
  .priority-section .shell {
    width: min(100% - 80px, 760px);
  }
  .priority-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .priority-demo {
    justify-self: center;
  }
  .priority-copy h2 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .priority-section {
    padding: 70px 0 78px;
  }
  .priority-section .shell {
    width: min(100% - 38px, 560px);
  }
  .priority-copy h2 {
    font-size: 38px;
  }
  .priority-copy > h3 {
    font-size: 19px;
  }
  .priority-lead {
    font-size: 15px;
  }
  .priority-demo {
    min-height: 330px;
    padding: 22px 16px;
  }
  .priority-setting {
    padding: 15px 13px;
  }
  .priority-setting small {
    font-size: 12px;
  }
  .priority-setting b {
    font-size: 14px;
  }
  .priority-state {
    font-size: 14px;
    padding: 15px 13px;
  }
  .priority-result {
    left: 13px;
    right: 13px;
  }
  .priority-progress {
    left: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .priority-setting, .priority-setting button, .priority-setting button i, .priority-state, .priority-result {
    transition: none;
  }
  .priority-chat {
    animation: none;
  }
}
/* Core feature 6 — broadcast reporting */
.report-section {
  padding: 104px 0 112px;
  background: #fff;
  border-top: 1px solid #f7e5eb;
  position: relative;
}

.report-section .shell {
  width: min(1060px, 100% - 112px);
}

.report-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.report-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0;
}

.report-copy h2 em {
  font-style: normal;
  color: var(--pink);
}

.report-copy > h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 0 0 9px;
  font-weight: 500;
}

.report-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #65585b;
  margin: 0;
  max-width: 520px;
}

.report-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 25px;
}

.report-points > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: center;
}

.report-points i {
  width: 7px;
  height: 7px;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 50%;
}

.report-points span {
  font-size: 15px;
  font-weight: 300;
  color: #4f4447;
}

.report-demo {
  width: 100%;
  max-width: 520px;
  height: 650px;
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 64px rgba(155, 44, 76, 0.0784313725);
  position: relative;
  overflow: hidden;
  justify-self: end;
}

.report-topline span, .report-topline b {
  display: block;
}

.report-topline span {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--pink);
  font-weight: 600;
}

.report-topline b {
  font-size: 17px;
  margin-top: 5px;
  font-weight: 500;
}

.report-campaign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff8fa;
  border: 1px solid #f0dfe5;
  border-radius: 11px;
  padding: 11px 12px;
  margin-top: 16px;
}

.report-campaign small, .report-campaign b {
  display: block;
}

.report-campaign small {
  font-size: 11px;
  color: #93868a;
}

.report-campaign b {
  font-size: 15px;
  margin-top: 3px;
}

.report-status {
  font-size: 11px;
  color: #188a57;
  background: #eaf8f1;
  border-radius: 99px;
  padding: 6px 9px;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.report-metrics > div {
  height: 84px;
  border: 1px solid #eee2e6;
  border-radius: 11px;
  padding: 9px 10px;
  opacity: 0.45;
  transition: 0.4s;
}

.report-metrics > div.shown {
  opacity: 1;
  border-color: #f2b6c7;
  background: #fffafb;
}

.report-metrics small {
  display: block;
  font-size: 11px;
  color: #7f7377;
}

.report-metrics strong {
  font-size: 24px;
  color: #231d1f;
  line-height: 1.3;
}

.report-metrics span {
  font-size: 10px;
  color: var(--pink);
  margin-left: 5px;
}

.report-bars {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.report-bars > div {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  gap: 8px;
  align-items: center;
}

.report-bars span, .report-bars em {
  font-size: 10px;
  color: #766a6e;
  font-style: normal;
}

.report-bars em {
  text-align: right;
}

.report-bars i {
  height: 7px;
  background: #f2eaed;
  border-radius: 99px;
  overflow: hidden;
}

.report-bars i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 99px;
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.report-details {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 9px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.45s;
}

.report-details.shown {
  opacity: 1;
  transform: none;
}

.report-details > div {
  border: 1px solid #eee2e6;
  border-radius: 9px;
  padding: 8px 9px;
  background: #fff;
}

.report-details .wide {
  grid-column: 1/-1;
}

.report-details small {
  display: block;
  font-size: 9px;
  color: #918589;
  margin-bottom: 4px;
}

.report-details b {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
}

.report-details img {
  width: 15px;
  height: 15px;
}

.report-details p {
  font-size: 10px;
  line-height: 1.45;
  margin: 0;
  color: #4d4246;
}

.report-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-time small {
  margin: 0;
}

.report-compare {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 40px;
  background: #fff;
  border: 1px solid #efbdcb;
  border-radius: 13px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(132, 39, 66, 0.0941176471);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: 0.45s;
}

.report-compare.shown {
  opacity: 1;
  transform: none;
}

.compare-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.compare-head b {
  font-size: 12px;
}

.compare-head span {
  font-size: 10px;
  color: #8a7c81;
}

.report-compare > div:not(.compare-head) {
  display: grid;
  grid-template-columns: 145px 1fr 30px;
  gap: 8px;
  align-items: center;
  margin-top: 7px;
}

.report-compare > div > span {
  font-size: 10px;
}

.report-compare i {
  height: 7px;
  background: #f3eaed;
  border-radius: 99px;
  overflow: hidden;
}

.report-compare i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff841c, #dc005a);
  border-radius: 99px;
  animation: barGrow 0.8s ease;
}

.report-compare strong {
  font-size: 11px;
  color: var(--pink);
  text-align: right;
}

.report-compare p {
  margin: 10px 0 0;
  background: #fff2f6;
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 10px;
  color: #5a4d51;
}

.report-progress {
  position: absolute;
  left: 22px;
  bottom: 17px;
  display: flex;
  gap: 3px;
}

.report-progress i {
  width: 4px;
  height: 4px;
  border-radius: 9px;
  background: #eadde1;
  transition: 0.3s;
}

.report-progress i.active {
  width: 15px;
  background: var(--pink);
}

@keyframes barGrow {
  from {
    width: 0;
  }
}
@media (max-width: 900px) {
  .report-section {
    padding: 84px 0;
  }
  .report-section .shell {
    width: min(100% - 80px, 760px);
  }
  .report-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .report-demo {
    justify-self: center;
  }
  .report-copy h2 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .report-section {
    padding: 70px 0 78px;
  }
  .report-section .shell {
    width: min(100% - 38px, 560px);
  }
  .report-copy h2 {
    font-size: 38px;
  }
  .report-copy > h3 {
    font-size: 19px;
  }
  .report-lead {
    font-size: 15px;
  }
  .report-points {
    grid-template-columns: 1fr;
  }
  .report-demo {
    height: 660px;
    padding: 17px 13px;
  }
  .report-compare {
    left: 13px;
    right: 13px;
  }
  .report-compare > div:not(.compare-head) {
    grid-template-columns: 125px 1fr 28px;
  }
  .report-progress {
    left: 13px;
  }
}
/* Requested refinements */
.channel-tabs button {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.channel-tabs button img {
  width: 34px;
  height: 34px;
  margin: 0;
  object-fit: contain;
}

.segment-context {
  grid-template-columns: 1fr;
  align-items: end;
  gap: 10px;
}

.segment-context > div {
  min-width: 0;
}

.segment-context > div:first-child, .segment-context > div:last-child {
  background: transparent;
  border: 0;
  padding: 0;
}

.segment-context .segment-select {
  height: 40px;
  border: 1px solid #eadde1;
  border-radius: 9px;
  padding: 0 11px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-start;
}

.segment-context .segment-select b {
  margin-left: auto;
  color: #aaa;
}

.segment-type-row {
  min-height: 34px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  overflow: visible;
}

.segment-type-row .radio-option {
  font-size: 11px;
  color: #777;
  gap: 7px;
}

.segment-type-row .radio-option i {
  width: 18px;
  height: 18px;
  border-width: 2px;
  flex: 0 0 18px;
}

.segment-type-row .radio-option i:not(.checked) {
  border-color: #929292;
  background: #fff;
  box-shadow: none;
}

.segment-type-row .radio-option i.checked {
  border-color: var(--pink);
  box-shadow: inset 0 0 0 4px #fff;
  background: var(--pink);
}

.target-mode-options {
  display: flex;
  gap: 18px;
}

.segment-output-card {
  border: 1px solid #eadde1;
  border-radius: 11px;
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(109, 32, 53, 0.0392156863);
}

.segment-output-card .audience-result {
  margin-top: 0;
  border: 0;
  padding: 0 0 8px;
}

.segment-output-card .segment-message {
  position: static;
  inset: auto;
  margin-top: 0;
  border: 0;
  border-top: 1px solid #f0e3e7;
  border-radius: 0;
  padding: 8px 0 0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  box-shadow: none;
}

.segment-use {
  position: static;
  display: block;
  margin: 12px 0 18px auto;
  padding: 10px 15px;
}

.resend-body > label:nth-of-type(2) {
  margin-top: 24px;
}

.resend-message {
  opacity: 1;
}

.priority-setting button {
  cursor: pointer;
  transition: background 0.8s ease;
}

.priority-setting button i {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.priority-chat-list {
  height: 210px;
}

.priority-chat {
  height: 70px;
  animation-duration: 1.15s;
}

.priority-state span b {
  font-weight: 600;
}

.report-details {
  margin-top: 14px;
}

.report-demo {
  height: 455px;
}

.report-metrics > div {
  height: 94px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.report-metrics small {
  width: 100%;
}

.report-metrics strong {
  font-size: 28px;
}

.closing-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #211517 0%, #3a1722 58%, #6c1835 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.closing-cta:before, .closing-cta:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  background: rgba(234, 25, 83, 0.1882352941);
}

.closing-cta:before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -220px;
}

.closing-cta:after {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -170px;
}

.closing-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
}

.closing-card .eyebrow {
  justify-content: center;
  color: #ff88aa;
}

.closing-card h2 {
  font-size: 58px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
}

.closing-card h2 em {
  font-style: normal;
  color: #ff6b95;
}

.closing-card p {
  max-width: 700px;
  margin: 0 auto;
  color: #f3dfe5;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.closing-card .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.closing-card .zwiz-btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.0509803922);
}

.broadcast-guide-section {
  padding: 104px 0 112px;
  background: linear-gradient(135deg, #fff8fa 0%, #fff 62%, #fff8f1 100%);
  border-top: 1px solid #f7e5eb;
}

.broadcast-guide-wrap {
  width: min(960px, 100% - 112px);
  text-align: center;
}

.broadcast-guide-wrap .eyebrow {
  justify-content: center;
}

.broadcast-guide-wrap h2 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 17px 0 10px;
}

.broadcast-guide-wrap h2 em {
  font-style: normal;
  color: var(--pink);
}

.broadcast-guide-wrap > p {
  font-size: 17px;
  font-weight: 300;
  color: #65585b;
  line-height: 1.7;
  margin: 0 auto 30px;
}

.broadcast-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #160f11;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(155, 44, 76, 0.1098039216);
}

.broadcast-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.broadcast-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--pink);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f3a7bc;
  padding-bottom: 4px;
  transition: 0.25s;
}

.broadcast-guide-link:hover {
  color: #bc123f;
  border-bottom-color: #bc123f;
}

.broadcast-guide-link span {
  transition: transform 0.25s;
}

.broadcast-guide-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .segment-context {
    grid-template-columns: 1fr;
  }
  .segment-type-row {
    gap: 8px;
    white-space: normal;
    align-items: flex-start;
  }
  .segment-type-row .radio-option {
    font-size: 9px;
  }
  .segment-type-row .radio-option i {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
  .closing-cta {
    padding: 78px 0;
  }
  .closing-card h2 {
    font-size: 39px;
  }
  .closing-card p {
    font-size: 15px;
  }
  .report-demo {
    height: 475px;
  }
}
@media (max-width: 700px) {
  .broadcast-guide-section {
    padding: 72px 0 78px;
  }
  .broadcast-guide-wrap {
    width: min(100% - 38px, 560px);
  }
  .broadcast-guide-wrap h2 {
    font-size: 38px;
  }
  .broadcast-guide-wrap > p {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .broadcast-video {
    border-radius: 15px;
  }
  .broadcast-guide-link {
    font-size: 15px;
    margin-top: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .report-metrics > div, .report-bars i b, .report-details, .report-compare {
    transition: none;
  }
  .report-compare i b {
    animation: none;
  }
}
/* Core feature 6 — requested report type scale */
.report-campaign small, .report-metrics small, .report-details small {
  font-size: 13px;
}

.report-details b {
  font-size: 11px;
}

.report-details p {
  font-size: 11px;
}

.report-message p {
  font-size: 11px;
  font-weight: 500;
}

/* Core feature 5 — compact visual type scale */
.priority-topline b {
  font-size: 16px;
}

.priority-setting small {
  font-size: 12px;
}

.priority-setting b {
  font-size: 14px;
}

.priority-state {
  font-size: 14px;
  padding: 15px 16px;
}

.priority-state i {
  font-size: 12px;
  padding: 6px 11px;
}

.priority-hint {
  font-size: 12px;
}
