/* Postomat – paleta izvedena iz logoa (teal #235056 na kremu #f8f3e0) */
:root {
  --teal-900: #10292c;
  --teal-800: #1b4045;
  --teal-700: #235056;
  --teal-600: #2f6b72;
  --sage-300: #8db3b0;
  --sage-200: #a9c4c1;
  --sage-100: #dce8e5;
  --cream-50: #fffcf3;
  --cream-100: #f8f3e0;
  --cream-200: #efe9d2;
  --cream-300: #e6dfc8;
  --cream-400: #d9d1b8;
  --ink: #1c2b2d;
  --muted: #6f695b;

  --radius: 20px;
  --shadow: 0 30px 80px rgba(16, 41, 44, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Dugmad ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--lg {
  padding: 15px 30px;
  font-size: 18px;
}

.btn--primary {
  background: var(--teal-700);
  color: var(--cream-50);
}

.btn--primary:hover {
  background: var(--teal-600);
}

.btn--secondary {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}

.btn--secondary:hover {
  background: var(--sage-100);
}

.btn--ghost {
  color: var(--teal-700);
  border-color: var(--cream-400);
  background: var(--cream-50);
}

.btn--ghost:hover {
  border-color: var(--teal-700);
}

.btn--light {
  background: var(--cream-100);
  color: var(--teal-800);
}

.btn--light:hover {
  background: #fff;
}

/* ---------- Zaglavlje ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 243, 224, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-300);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--teal-700);
}

.brand__mark {
  height: 34px;
  width: 30px;
}

.brand__text {
  font-family: 'Barlow Semi Condensed', 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand--light {
  color: var(--cream-100);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}

.nav a:hover {
  color: var(--teal-600);
}

.header__actions {
  display: flex;
  gap: 10px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(900px 420px at 50% -80px, var(--sage-100), transparent 70%),
    var(--cream-100);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--teal-700);
  font-size: 15px;
  font-weight: 600;
}

.hero h1 {
  margin-top: 24px;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  color: var(--teal-900);
}

.hero__accent {
  color: var(--teal-600);
  white-space: nowrap;
}

.hero__lead {
  margin-top: 24px;
  max-width: 640px;
  font-size: 21px;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- Prikaz aplikacije ---------- */
.showcase {
  margin-top: 72px;
  padding: 44px 44px 0;
  border-radius: 32px;
  background: linear-gradient(160deg, var(--teal-700) 0%, var(--teal-600) 55%, var(--sage-300) 130%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase__title {
  margin-bottom: 36px;
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream-50);
}

.app {
  display: flex;
  height: 430px;
  border: 8px solid var(--teal-900);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: var(--cream-50);
  overflow: hidden;
  text-align: left;
}

.app__side {
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 8px;
  background: var(--teal-900);
}

.app__logo img {
  width: 30px;
  height: 34px;
  margin-bottom: 14px;
}

.app__nav {
  width: 100%;
  padding: 9px 4px;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-200);
}

.app__nav.is-active {
  background: var(--cream-100);
  color: var(--teal-800);
}

.app__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app__bar {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--cream-300);
  font-size: 20px;
}

.app__range {
  font-size: 14px;
  color: var(--muted);
}

.app__body {
  flex: 1;
  display: flex;
  gap: 18px;
  padding: 18px 22px 0;
  min-height: 0;
}

.app__channels {
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app__label {
  font-size: 14px;
  color: var(--muted);
}

.app__btn {
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.app__btn--primary {
  background: var(--teal-700);
  color: var(--cream-50);
}

.channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 500;
}

.channel img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--cream-300);
}

.cal {
  flex: 1;
  min-width: 0;
}

.cal__head,
.cal__grid {
  display: grid;
  grid-template-columns: 52px repeat(5, 1fr);
  gap: 6px;
}

.cal__head {
  padding-left: 58px;
  grid-template-columns: repeat(5, 1fr);
}

.cal__head span {
  padding: 6px 4px;
  border-radius: 10px;
  background: var(--cream-100);
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: var(--muted);
}

.cal__head b {
  font-size: 14px;
  color: var(--ink);
}

.cal__head b.is-today {
  color: var(--teal-600);
}

.cal__grid {
  margin-top: 6px;
  grid-auto-rows: 88px;
}

.cal__time {
  padding-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.cal__cell {
  border-radius: 10px;
  background: var(--cream-100);
  padding: 4px;
}

.post {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
}

.post img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

.post--teal {
  background: var(--teal-700);
  color: var(--cream-50);
}

.post--sage {
  background: var(--sage-100);
  color: var(--teal-800);
}

.post--dark {
  background: var(--teal-900);
  color: var(--cream-100);
}

.post--draft {
  background: var(--cream-50);
  color: var(--muted);
  border: 1.5px dashed var(--cream-400);
}

/* ---------- Sekcije ---------- */
.section {
  padding: 104px 0;
}

.section--tinted {
  background: var(--cream-200);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--teal-900);
}

.section__head p {
  margin-top: 14px;
  font-size: 20px;
  color: var(--muted);
}

/* Funkcije */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28, 43, 45, 0.09);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--teal-700);
}

.card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--cream-50);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--teal-900);
}

.card p {
  margin-top: 10px;
  font-size: 17px;
  color: var(--muted);
}

/* Koraci */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  padding: 8px 8px 0;
}

.step__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid var(--teal-700);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-700);
}

.step h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-900);
}

.step p {
  margin-top: 10px;
  color: var(--muted);
}

/* Kanali */
.channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.channels li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  font-size: 16px;
  font-weight: 500;
}

.channels img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* Završni poziv */
.cta {
  padding: 0 0 104px;
}

.cta__inner {
  padding-top: 72px;
  padding-bottom: 72px;
  border-radius: 32px;
  background: linear-gradient(160deg, var(--teal-800), var(--teal-700));
  text-align: center;
  max-width: 1132px;
}

.cta h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--cream-50);
}

.cta p {
  margin: 14px 0 32px;
  font-size: 20px;
  color: var(--sage-200);
}

/* ---------- Podnožje ---------- */
.footer {
  padding: 64px 0 0;
  background: var(--teal-900);
  color: var(--sage-200);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 40px;
}

.footer__about p {
  margin-top: 16px;
  max-width: 260px;
  font-size: 15px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h3 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-100);
}

.footer__col a {
  font-size: 15px;
  text-decoration: none;
  color: var(--sage-200);
}

.footer__col a:hover {
  color: var(--cream-50);
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(169, 196, 193, 0.2);
  font-size: 14px;
}

/* ---------- Manji ekrani ---------- */
@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .features,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .app__channels {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .container {
    padding: 0 16px;
  }

  .header__inner {
    height: 64px;
  }

  .brand__text {
    font-size: 24px;
  }

  .brand__mark {
    height: 28px;
    width: 25px;
  }

  .header__actions .btn--ghost {
    display: none;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .showcase {
    margin-top: 48px;
    padding: 24px 16px 0;
    border-radius: 24px;
  }

  .showcase__title {
    margin-bottom: 24px;
  }

  .app {
    height: 360px;
    border-width: 5px;
  }

  .app__side {
    display: none;
  }

  .app__body {
    padding: 12px 10px 0;
  }

  .app__bar {
    padding: 12px 12px;
    font-size: 17px;
  }

  .app__range {
    font-size: 12px;
  }

  .cal__head,
  .cal__grid {
    grid-template-columns: 36px repeat(3, 1fr);
    gap: 4px;
  }

  .cal__head {
    padding-left: 40px;
    grid-template-columns: repeat(3, 1fr);
  }

  .cal__head span:nth-child(n + 4),
  .cal__grid > :nth-child(6n + 5),
  .cal__grid > :nth-child(6n + 6) {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta {
    padding-bottom: 72px;
  }

  .cta__inner {
    padding-top: 48px;
    padding-bottom: 48px;
    border-radius: 24px;
  }
}

/* ---------- Landing: prijava za rani pristup ---------- */
.hero__note {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
}

.signup {
  padding: 0 0 104px;
}

.signup__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
  max-width: 1132px;
  padding: 64px;
  border-radius: 32px;
  background: linear-gradient(160deg, var(--teal-800), var(--teal-700));
  box-shadow: var(--shadow);
}

.pill--dark {
  background: rgba(248, 243, 224, 0.14);
  color: var(--cream-100);
}

.signup h2 {
  margin-top: 20px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--cream-50);
}

.signup__pitch > p {
  margin-top: 16px;
  font-size: 20px;
  color: var(--sage-200);
}

.perks {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--cream-100);
  font-weight: 500;
}

.perks li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.perks svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--cream-100);
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup__box {
  padding: 40px;
  border-radius: 24px;
  background: var(--cream-50);
  text-align: center;
}

.signup__price {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
}

.signup__price span {
  display: block;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal-700);
}

.signup__fine {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* Email formular */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 36px auto 0;
}

.notify__input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-400);
  background: var(--cream-50);
  font: inherit;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.notify__input:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 4px var(--sage-100);
}

.notify.is-error .notify__input {
  border-color: #b3443a;
}

.notify__btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.notify__msg {
  flex-basis: 100%;
  min-height: 0;
  font-size: 15px;
  font-weight: 600;
}

.notify.is-error .notify__msg {
  color: #b3443a;
}

.notify.is-done .notify__input,
.notify.is-done .notify__btn {
  display: none;
}

.notify.is-done .notify__msg {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--sage-100);
  color: var(--teal-800);
  font-size: 17px;
}

.notify--stack {
  flex-direction: column;
  margin-top: 0;
}

.notify--stack .notify__input {
  flex: none;
  width: 100%;
  background: #fff;
}

@media (max-width: 960px) {
  .signup__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .signup {
    padding-bottom: 72px;
  }

  .signup__inner {
    padding: 36px 16px 16px;
    border-radius: 24px;
  }

  .signup__pitch {
    padding: 0 8px;
  }

  .signup__box {
    padding: 28px 20px;
  }

  .signup__price span {
    font-size: 72px;
  }

  .notify__btn {
    width: 100%;
  }
}

/* ---------- Česta pitanja ---------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-radius: 16px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
}

.faq__item summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-900);
  list-style: none;
  cursor: pointer;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 500;
  color: var(--teal-600);
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* Skriveno polje za botove */
.notify__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq__item summary {
    font-size: 17px;
  }
}

/* ---------- Slajder u prikazu aplikacije ---------- */
.showcase__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.showcase__tab {
  position: relative;
  overflow: hidden;
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: rgba(248, 243, 224, 0.14);
  color: var(--cream-100);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.showcase__tab:hover {
  background: rgba(248, 243, 224, 0.24);
}

.showcase__tab.is-active {
  background: var(--cream-100);
  color: var(--teal-800);
}

/* traka napretka dok slajd traje */
.showcase__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--sage-300);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}

.showcase.is-stopped .showcase__tab.is-active::after {
  display: none;
}

/* omotač koji daje prostor za skrolovanje kroz slajdove */
.showcase-pin {
  margin-top: 72px;
}

.showcase-pin .showcase {
  margin-top: 0;
}

.showcase-pin.is-pinned .showcase-sticky {
  position: sticky;
}

.showcase__viewport {
  overflow: hidden;
  margin: 0 -44px;
  touch-action: pan-y;
}

.showcase__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 44px;
}

@media (prefers-reduced-motion: reduce) {
  .showcase__track {
    transition: none;
  }
}

/* --- AI agent (čet) --- */
.chat {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 22px;
  background: var(--cream-100);
}

.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
}

.msg--me {
  align-self: flex-end;
  background: var(--teal-700);
  color: var(--cream-50);
  border-bottom-right-radius: 4px;
}

.msg--agent {
  align-self: flex-start;
  max-width: 88%;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-bottom-left-radius: 4px;
}

.msg__who {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
}

.msg__who img {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 6px;
  background: var(--teal-700);
}

.plan {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.plan__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--cream-100);
  font-size: 12px;
}

.plan__row img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.plan__row b {
  flex: 0 0 auto;
  color: var(--teal-900);
}

.plan__row span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--muted);
}

.plan__row em {
  flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--teal-700);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.chat__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  font-size: 13px;
  color: var(--muted);
}

.chat__send {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--cream-50);
  font-weight: 700;
}

/* --- AI sadržaj --- */
.gen {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 18px 22px 0;
}

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

.gen__prompt {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--teal-600);
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 0 0 4px var(--sage-100);
}

.gen__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gen__chips span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--cream-400);
  background: var(--cream-100);
  font-size: 12px;
  font-weight: 500;
}

.gen__form .app__btn {
  align-self: flex-start;
  padding: 10px 18px;
}

.ig {
  display: flex;
  flex-direction: column;
  border-radius: 14px 14px 0 0;
  border: 1px solid var(--cream-300);
  border-bottom: 0;
  background: #fff;
  overflow: hidden;
}

.ig__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
}

.ig__head img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.ig__img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  background:
    radial-gradient(circle at 25% 30%, rgba(248, 243, 224, 0.35) 0 18%, transparent 19%),
    radial-gradient(circle at 80% 75%, rgba(141, 179, 176, 0.5) 0 22%, transparent 23%),
    linear-gradient(135deg, var(--teal-700), var(--teal-600) 55%, #c9a66b);
  color: var(--cream-50);
}

.ig__img span {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.ig__img small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig__text {
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
}

.ig__text b {
  color: var(--teal-600);
}

.ig__cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--teal-700);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --- Više mreža odjednom --- */
.compose {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 22px;
  padding: 18px 22px 0;
}

.compose__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nets {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 4px;
}

.net {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 0.35;
  filter: grayscale(1);
}

.net img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cream-300);
}

.net.is-on {
  opacity: 1;
  filter: none;
}

.net.is-on img {
  box-shadow: 0 0 0 2px var(--cream-50), 0 0 0 4px var(--teal-600);
}

.net.is-on::after {
  content: "\2713";
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--cream-50);
  font-size: 10px;
  font-weight: 700;
}

.compose__text {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--cream-300);
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.compose__media {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.compose__media span {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-700), #c9a66b);
}

.compose__media span + span {
  background: linear-gradient(135deg, var(--sage-300), var(--teal-600));
}

.compose__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.compose__when {
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--cream-100);
  font-size: 13px;
  font-weight: 600;
}

.compose__foot .app__btn {
  padding: 10px 18px;
}

.compose__targets {
  flex: 0 0 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.target {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--cream-100);
  font-size: 14px;
  font-weight: 500;
}

.target img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.target span {
  flex: 1;
}

.target em {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--cream-50);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 960px) {
  .compose__targets {
    display: none;
  }
}

@media (max-width: 640px) {
  .showcase-pin {
    margin-top: 48px;
  }

  .showcase__tabs {
    gap: 6px;
    margin-bottom: 20px;
  }

  .showcase__tab {
    padding: 8px 12px;
    font-size: 13px;
  }

  .showcase__viewport {
    margin: 0 -16px;
  }

  .slide {
    padding: 0 16px;
  }

  .chat {
    padding: 12px;
  }

  .msg {
    max-width: 92%;
  }

  .msg--agent {
    max-width: 100%;
  }

  .plan__row:nth-child(n + 3) {
    display: none;
  }

  .gen {
    grid-template-columns: 1fr;
    padding: 12px 10px 0;
  }

  .gen__chips,
  .gen__form .app__btn,
  .gen__form .app__label {
    display: none;
  }

  .ig__img {
    height: 110px;
  }

  .compose {
    padding: 12px 10px 0;
  }

  .compose__text {
    font-size: 13px;
  }

  .compose__when {
    display: none;
  }
}
