.ug-shell,
.ug-article-shell {
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.08), transparent 26%),
    linear-gradient(180deg, #f7fbfd 0%, #f8fafc 100%);
  color: #0f172a;
}

.ug-shell a,
.ug-article-shell a {
  color: inherit;
}

.ug-container,
.ug-article-container {
  width: min(100% - 1.5rem, 1440px);
  margin: 0 auto;
}

.ug-section {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: 2rem 0 2.1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.ug-section--last {
  padding-bottom: 4.5rem;
  border-bottom: 0;
}

.ug-feature-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0.4rem;
  padding: 2.8rem 0 2.9rem;
  background: linear-gradient(180deg, #02050d 0%, #04101d 42%, #02050d 100%);
}

.ug-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.2;
  pointer-events: none;
}

.ug-feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), transparent 28%),
    radial-gradient(circle at right center, rgba(34, 211, 238, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(2, 5, 13, 0.05), rgba(2, 5, 13, 0.2));
  pointer-events: none;
}

.ug-feature-band .ug-container {
  position: relative;
  z-index: 1;
}

.ug-section--feature-dark {
  padding: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.ug-section--feature-dark .ug-section-heading h2 {
  color: #f8fafc;
}

.ug-section--feature-dark .ug-section-heading p {
  color: #94a3b8;
}

.ug-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ug-section-label__index {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.2);
}

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

.ug-section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ug-section-heading p {
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 1rem;
}

.ug-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 9999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f9f9f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ug-hero {
  min-height: 82vh;
  padding-top: 5.35rem;
  padding-bottom: 1.1rem;
  align-items: center;
}

.ug-hero__copy,
.ug-hero__visual,
.ug-feature-card,
.ug-popular-card,
.ug-journey-step,
.ug-article-card,
.ug-related-card {
  min-width: 0;
}

.ug-hero__copy h1 {
  margin-top: 1rem;
  max-width: 12ch;
  font-size: clamp(2.55rem, 5vw, 4.3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.ug-hero__copy p {
  margin-top: 1rem;
  max-width: 35rem;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.72;
}

.ug-search {
  position: relative;
  margin-top: 1.5rem;
  max-width: 32rem;
}

.ug-search__box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.7rem;
  padding: 0 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ug-search__box i {
  color: #0ea5a4;
  font-size: 1rem;
}

.ug-search__box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #0f172a;
  font-size: 1rem;
}

.ug-search__box input::placeholder {
  color: #94a3b8;
}

.ug-search__results {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.45rem;
  padding: 0.7rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  z-index: 4;
}

.ug-search__results[hidden],
.ug-search__empty[hidden] {
  display: none !important;
}

.ug-search__result,
.ug-search__empty {
  padding: 0.78rem 0.9rem;
  border-radius: 0.8rem;
}

.ug-search__result:hover {
  background: rgba(20, 184, 166, 0.08);
}

.ug-search__result-title {
  display: block;
  font-weight: 800;
  line-height: 1.25;
}

.ug-search__result-meta,
.ug-search__empty {
  display: block;
  margin-top: 0.28rem;
  color: #64748b;
  font-size: 0.88rem;
}

.ug-popular-shortcuts {
  margin-top: 1.7rem;
}

.ug-popular-shortcuts__label {
  color: #0f172a;
  font-weight: 800;
}

.ug-popular-shortcuts__grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.ug-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.ug-chip i,
.ug-feature-card__icon i,
.ug-popular-card__icon i,
.ug-journey-step__icon i,
.ug-related-card__icon i {
  color: #0ea5a4;
}

.ug-hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.ug-window {
  position: relative;
  width: 100%;
  padding: 1rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 32px 80px rgba(14, 165, 164, 0.12), 0 20px 40px rgba(15, 23, 42, 0.08);
}

.ug-window__chrome {
  display: flex;
  gap: 0.42rem;
  margin-bottom: 0.8rem;
}

.ug-window__chrome span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 9999px;
  background: #cbd5e1;
}

.ug-window__chrome span:nth-child(1) {
  background: #fb7185;
}

.ug-window__chrome span:nth-child(2) {
  background: #fbbf24;
}

.ug-window__chrome span:nth-child(3) {
  background: #34d399;
}

.ug-window__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 0.9rem;
  color: #64748b;
  font-size: 0.82rem;
}

.ug-window__toolbar-group,
.ug-window__toolbar-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ug-window__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #eef2ff;
  aspect-ratio: 16 / 9;
}

.ug-window__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ug-window__badge {
  position: absolute;
  z-index: 2;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.ug-window__badge--assistant {
  right: 1.35rem;
  top: 5.4rem;
  width: min(42%, 13rem);
  padding: 0.9rem;
}

.ug-window__badge--status {
  left: 1.35rem;
  bottom: 1.35rem;
  display: grid;
  gap: 0.4rem;
  min-width: 8rem;
  padding: 0.78rem 0.9rem;
}

.ug-window__badge-title {
  font-weight: 800;
}

.ug-window__badge-copy {
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.45;
}

.ug-feature-carousel,
.ug-popular-grid {
  display: grid;
  gap: 1rem;
}

.ug-feature-card,
.ug-popular-card,
.ug-article-card,
.ug-related-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.ug-feature-card {
  display: grid;
  row-gap: 0.72rem;
  align-items: start;
  width: min(21rem, 82vw);
  min-height: 21.5rem;
  flex: 0 0 auto;
  padding: 1.18rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 164, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.ug-feature-card__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.ug-feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0.28rem;
  background: linear-gradient(90deg, #1677ff, #00c2ff);
  opacity: 0.85;
}

.ug-feature-carousel {
  grid-column: 2 / -1;
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0 0.8rem;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.ug-section--feature-dark .ug-feature-carousel {
  padding: 0.3rem 0 0.9rem;
}

.ug-feature-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
}

.ug-feature-carousel__controls {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
}

.ug-feature-carousel__button {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ug-feature-carousel__button:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.2);
  color: #1677ff;
  box-shadow: 0 14px 34px rgba(22, 119, 255, 0.1);
}

.ug-section--feature-dark .ug-feature-card {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.94));
  box-shadow: 0 22px 64px rgba(2, 6, 23, 0.3);
}

.ug-section--feature-dark .ug-feature-card__icon {
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.2), rgba(0, 194, 255, 0.16));
  color: #dbeafe;
}

.ug-section--feature-dark .ug-feature-card[data-section="pdf-editing"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.24);
}

.ug-section--feature-dark .ug-feature-card[data-section="convert-pdf"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.24);
}

.ug-section--feature-dark .ug-feature-card[data-section="ai-workspace"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.24);
}

.ug-section--feature-dark .ug-feature-card[data-section="pdf-forms"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #22c55e, #34d399);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.24);
}

.ug-section--feature-dark .ug-feature-card[data-section="security"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.24);
}

.ug-section--feature-dark .ug-feature-card[data-section="account-cloud"] .ug-feature-card__icon {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.24);
}

.ug-section--feature-dark .ug-feature-card .ug-feature-card__icon i {
  color: #ffffff;
}

.ug-section--feature-dark .ug-feature-card h3 {
  color: #f8fafc;
}

.ug-section--feature-dark .ug-feature-card p,
.ug-section--feature-dark .ug-feature-card__links a {
  color: #cbd5e1;
}

.ug-section--feature-dark .ug-feature-card__cta {
  color: #67e8f9;
}

.ug-section--feature-dark .ug-feature-carousel__button {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.88);
  color: #e2e8f0;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.34);
}

.ug-section--feature-dark .ug-feature-carousel__button:hover {
  border-color: rgba(103, 232, 249, 0.32);
  color: #67e8f9;
  box-shadow: 0 18px 42px rgba(0, 194, 255, 0.12);
}

.ug-feature-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(0, 194, 255, 0.1));
  font-size: 1.25rem;
  color: #1677ff;
}

.ug-feature-card h3 {
  margin-top: 0;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  min-width: 0;
}

.ug-feature-card p {
  margin-top: 0.1rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.56;
}

.ug-feature-card__links {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.64rem;
}

.ug-feature-card__links a,
.ug-feature-card__cta {
  color: #334155;
  text-decoration: none;
  font-weight: 700;
}

.ug-feature-card__cta {
  margin-top: 0.15rem;
  padding-top: 0.8rem;
  color: #1677ff;
}

.ug-journey-wrap {
  grid-column: 2 / -1;
}

.ug-journey {
  display: grid;
  gap: 1rem;
}

.ug-journey-step {
  position: relative;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ug-journey-step__icon-link {
  display: inline-flex;
  text-decoration: none;
}

.ug-journey-step__icon {
  width: 4.1rem;
  height: 4.1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #f5fbfb 0%, #edf7f7 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035);
  font-size: 1.48rem;
}

.ug-journey-step__meta {
  margin-top: 0.78rem;
}

.ug-journey-step__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ug-journey-step__number {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #0ea5a4;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

.ug-journey-step h3 {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.ug-journey-step p {
  margin-top: 0.14rem;
  color: #64748b;
  font-size: 0.88rem;
  white-space: nowrap;
}

.ug-journey-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.ug-journey-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  min-width: 18rem;
  padding: 0 1.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(90deg, #1677ff 0%, #00c2ff 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(22, 119, 255, 0.2);
}

.ug-journey-button:hover,
.ug-journey-button:focus-visible,
.ug-journey-button:visited {
  color: #ffffff;
  filter: brightness(1.02);
}

.ug-journey-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.58);
  font-size: 1rem;
}

.ug-popular-card,
.ug-related-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  text-decoration: none;
}

.ug-popular-card__icon,
.ug-related-card__icon {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(14, 165, 164, 0.1);
  font-size: 1rem;
}

.ug-popular-card__body h3,
.ug-related-card__body h3 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ug-popular-card__meta,
.ug-related-card__body p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.82rem;
}

.ug-popular-card__arrow,
.ug-related-card__arrow {
  color: #10b981;
}

.ug-popular-showcase {
  grid-column: 2 / -1;
  display: grid;
  gap: 1.5rem;
}

.ug-popular-showcase__copy h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ug-popular-showcase__copy p {
  margin-top: 0.8rem;
  max-width: 30rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
}

.ug-popular-showcase__button {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 0.85rem;
  background: linear-gradient(90deg, #1677ff 0%, #00c2ff 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(22, 119, 255, 0.18);
}

.ug-popular-showcase__button:hover,
.ug-popular-showcase__button:focus-visible,
.ug-popular-showcase__button:visited {
  color: #ffffff;
  filter: brightness(1.02);
}

.ug-popular-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  min-height: 25.75rem;
  max-height: 25.75rem;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 10%, black 90%, transparent 100%);
}

.ug-popular-column {
  position: relative;
  overflow: hidden;
}

.ug-popular-column:nth-child(1) {
  margin-top: 1.1rem;
}

.ug-popular-column:nth-child(2) {
  margin-top: -1.4rem;
}

.ug-popular-column:nth-child(3) {
  margin-top: 0.7rem;
}

.ug-popular-column__track {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  will-change: transform;
  animation: ug-popular-scroll-up 18s linear infinite;
}

.ug-popular-column--down .ug-popular-column__track {
  animation-name: ug-popular-scroll-down;
  animation-duration: 20s;
}

.ug-popular-column:nth-child(1) .ug-popular-column__track {
  animation-duration: 18.5s;
}

.ug-popular-column:nth-child(3) .ug-popular-column__track {
  animation-duration: 17.2s;
}

.ug-popular-column__set {
  display: grid;
  gap: 0.78rem;
}

.ug-popular-tile {
  min-height: 7.2rem;
  display: grid;
  gap: 0.72rem;
  align-content: start;
  padding: 0.82rem 0.82rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  text-decoration: none;
}

.ug-popular-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.ug-popular-tile__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: rgba(14, 165, 164, 0.1);
  font-size: 0.92rem;
}

.ug-popular-tile__body h3 {
  font-size: 0.93rem;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ug-popular-tile__body p {
  margin-top: 0.32rem;
  color: #64748b;
  font-size: 0.78rem;
}

.ug-popular-tile__body span {
  display: inline-block;
  margin-top: 0.36rem;
  color: #0f9f9f;
  font-size: 0.74rem;
  font-weight: 700;
}

@keyframes ug-popular-scroll-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 0.45rem));
  }
}

@keyframes ug-popular-scroll-down {
  from {
    transform: translateY(calc(-50% - 0.45rem));
  }

  to {
    transform: translateY(0);
  }
}

.ug-article-shell {
  padding: 8.25rem 0 4.8rem;
}

.ug-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: #64748b;
  font-size: 0.92rem;
}

.ug-breadcrumb a {
  text-decoration: none;
}

.ug-breadcrumb a:hover {
  color: #0f9f9f;
}

.ug-article-hero {
  margin-top: 1.35rem;
}

.ug-article-hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.ug-article-hero__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 600;
}

.ug-article-hero p {
  margin-top: 1rem;
  max-width: 46rem;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.72;
}

.ug-article-layout {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.ug-article-card {
  padding: 1.35rem;
}

.ug-article-card__label {
  color: #0f9f9f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ug-article-card p {
  margin-top: 0.8rem;
  color: #334155;
  line-height: 1.8;
}

.ug-article-list {
  margin-top: 0.85rem;
  padding-left: 1.15rem;
  color: #334155;
  line-height: 1.8;
}

.ug-article-list li + li {
  margin-top: 0.42rem;
}

.ug-article-step-list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.ug-article-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.ug-article-step__index {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  color: #ffffff;
  font-weight: 800;
}

.ug-article-step__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.ug-article-step__topline h2 {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ug-article-step__topline span {
  color: #0f9f9f;
  font-size: 0.88rem;
  font-weight: 700;
}

.ug-article-step__body p {
  margin-top: 0.45rem;
}

.ug-article-toc {
  display: none;
}

.ug-article-toc a {
  display: block;
  margin-top: 0.75rem;
  color: #475569;
  text-decoration: none;
}

.ug-article-toc a:hover {
  color: #0f9f9f;
}

.ug-related-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

[data-section="pdf-basics"] i,
[data-section="pdf-editing"] i,
[data-section="edit-and-annotate"] i {
  color: #0ea5e9;
}

[data-section="convert-pdf"] i {
  color: #3b82f6;
}

[data-section="ai-workspace"] i {
  color: #8b5cf6;
}

[data-section="forms"] i,
[data-section="pdf-forms"] i {
  color: #22c55e;
}

[data-section="security"] i {
  color: #f59e0b;
}

[data-section="account-cloud"] i,
[data-section="cloud"] i,
[data-section="account"] i,
[data-section="getting-started"] i {
  color: #06b6d4;
}

@media (min-width: 768px) {
  .ug-container,
  .ug-article-container {
    width: min(100% - 2rem, 1440px);
  }

  .ug-feature-band {
    padding: 3.1rem 0 3.2rem;
  }

  .ug-popular-shortcuts__grid,
  .ug-popular-grid,
  .ug-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ug-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ug-popular-showcase {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .ug-section {
    grid-template-columns: 7.2rem minmax(0, 1fr);
    gap: 1.5rem 1.8rem;
    align-items: start;
  }

  .ug-section-label {
    align-self: start;
    position: sticky;
    top: 6.8rem;
  }

  .ug-hero {
    min-height: 76vh;
    grid-template-columns: minmax(34rem, 0.88fr) minmax(40rem, 1.12fr);
    gap: 1rem 2.25rem;
  }

  .ug-hero__copy {
    max-width: 40rem;
    justify-self: start;
    align-self: center;
  }

  .ug-hero__copy h1 {
    max-width: none;
    white-space: nowrap;
  }

  .ug-hero__visual {
    align-self: stretch;
    justify-self: end;
  }

  .ug-feature-band {
    padding: 3.5rem 0 3.65rem;
  }

  .ug-journey {
    grid-template-columns:
      minmax(7.2rem, 1fr) auto
      minmax(7.2rem, 1fr) auto
      minmax(7.2rem, 1fr) auto
      minmax(7.2rem, 1fr) auto
      minmax(7.9rem, 1fr) auto
      minmax(8.2rem, 1fr);
    gap: 0.45rem;
    align-items: center;
  }

  .ug-journey-step {
    grid-column: span 1;
  }

  .ug-journey-arrow {
    display: flex;
  }

  .ug-popular-grid {
    grid-column: 2 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ug-popular-showcase {
    grid-template-columns: minmax(21rem, 0.78fr) minmax(32rem, 1.22fr);
    align-items: center;
    gap: 2.6rem;
  }

  .ug-popular-showcase__copy {
    max-width: 27rem;
  }

  .ug-popular-wall {
    min-height: 28.2rem;
    max-height: 28.2rem;
  }

  .ug-section-heading {
    grid-column: 2 / -1;
  }

  .ug-article-layout {
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 1.2rem;
  }

  .ug-article-toc {
    display: block;
    position: sticky;
    top: 6.8rem;
    align-self: start;
  }
}


@media (min-width: 1280px) {
  .ug-feature-card {
    width: 19.2rem;
  }

  .ug-popular-shortcuts__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
