:root {
  --primary: #123b7a;
  --accent: #1b8f5a;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #172033;
  --muted: #5b6678;
  --border: #dfe5ef;
  --soft: #eef4fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  background: var(--surface);
  font-weight: 700;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px 56px;
}

.home-hero,
.tutorial-hero {
  min-height: 340px;
  display: grid;
  align-items: center;
  border-radius: 8px;
  padding: 56px;
  background:
    linear-gradient(rgba(10, 29, 59, 0.68), rgba(10, 29, 59, 0.58)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
}

.tutorial-hero {
  min-height: 300px;
  background:
    linear-gradient(rgba(10, 29, 59, 0.72), rgba(10, 29, 59, 0.62)),
    url("https://images.unsplash.com/photo-1587614382346-4ec70e388b28?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.teams-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6ff 100%);
  color: var(--text);
  border: 1px solid var(--border);
}

.home-hero h1,
.tutorial-hero h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.04;
}

.home-hero p,
.tutorial-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 13px 16px;
  background: white;
  color: #123b7a;
  font-weight: 900;
  text-decoration: none;
}

.hero-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.tutorial-hero .eyebrow {
  color: #9ee6bd;
}

.back-link {
  width: fit-content;
  margin-bottom: 28px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.section {
  margin-top: 42px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.tutorial-list,
.platform-grid,
.steps {
  display: grid;
  gap: 18px;
}

.tutorial-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tutorial-summary,
.platform-card,
.step,
.tip-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.tutorial-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
}

.tutorial-summary.is-empty {
  opacity: 0.72;
}

.summary-icon,
.app-tile,
.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.tutorial-summary h3,
.platform-card h3,
.step h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.tutorial-summary p,
.platform-card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

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

.platform-card {
  padding: 18px;
}

.platform-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.mock-window {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: var(--soft);
}

.mock-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9aa8bf;
}

.mock-body {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.phone {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 22px;
  border: 8px solid #182033;
  border-radius: 24px;
  background: white;
}

.install-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent);
  color: white;
  font-weight: 800;
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
}

.tip-box {
  margin-top: 42px;
  padding: 28px;
  background: #eef8f2;
}

.tip-box h2 {
  margin: 0 0 12px;
  color: var(--primary);
}

.tip-box ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 36px;
  color: var(--muted);
}

.guide-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.guide-title h1 {
  margin: 0 0 6px;
  color: #07156b;
  text-transform: uppercase;
}

.guide-title p {
  color: #394466;
}

.teams-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #342bb8, #7668ff);
  color: white;
  font-size: 2.3rem;
  font-weight: 900;
  box-shadow: 16px 8px 0 rgba(86, 75, 220, 0.28);
}

.teams-logo::before,
.teams-logo::after {
  content: "";
  position: absolute;
  top: -14px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #7668ff;
}

.teams-logo::before {
  right: 18px;
}

.teams-logo::after {
  right: -12px;
  width: 20px;
  height: 20px;
  background: #4d45c9;
}

.guide-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid #5257d8;
}

.guide-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.guide-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.guide-heading > span,
.process-card h3 span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #342bb8, #5d56db);
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}

.guide-heading h2 {
  margin: 0 0 6px;
  color: #2938b8;
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: uppercase;
}

.guide-heading p {
  margin: 0;
  color: #222a44;
  line-height: 1.55;
}

.guide-grid {
  grid-template-columns: repeat(4, minmax(190px, 1fr));
}

.visual-card,
.process-card {
  min-width: 0;
}

.visual-card h3,
.process-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #11172f;
}

.platform-symbol {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #eef2ff;
  color: #2938b8;
  font-weight: 900;
}

.visual-card ol {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  counter-reset: steps;
  color: #11172f;
  line-height: 1.55;
}

.visual-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
  counter-increment: steps;
}

.visual-card li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4b55c8;
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-grid.five {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.process-grid.four {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.process-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.platform-grid.teams-platform-grid,
.process-grid.five.teams-meeting-grid,
.process-grid.four.teams-share-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.process-card h3 {
  font-size: 1rem;
}

.process-card h3 span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.95rem;
}

.process-card p {
  margin: 12px 0 0;
  color: #11172f;
  line-height: 1.55;
}

.teams-guide-image,
.teams-share-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid #cdd4e8;
  border-radius: 8px;
  background: #17181f;
  box-shadow: 0 10px 24px rgba(30, 42, 110, 0.08);
}

.teams-tip {
  border-color: #dedbff;
  background: #f3f1ff;
}

.canva-icon,
.canva-logo {
  background: linear-gradient(135deg, #00c4cc, #7d2ae8);
}

.canva-hero {
  background: linear-gradient(135deg, #ffffff 0%, #effbfd 52%, #f6efff 100%);
  color: var(--text);
  border: 1px solid var(--border);
}

.canva-logo {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 18px 12px 0 rgba(0, 196, 204, 0.18);
}

.canva-heading > span {
  background: linear-gradient(135deg, #00c4cc, #7d2ae8);
}

.canva-heading h2 {
  color: #5b1da8;
}

.wide-step {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.wide-step h3 {
  margin: 0 0 10px;
  color: #5b1da8;
}

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

.canva-button {
  background: linear-gradient(135deg, #00a9b2, #7d2ae8);
}

.wide-step.canva-wide-step {
  grid-template-columns: 1fr;
}

.canva-guide-image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 13;
  height: auto;
  object-fit: contain;
  border: 1px solid #d9dff0;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(69, 37, 125, 0.1);
}

.process-grid.two.canva-login-grid {
  grid-template-columns: 1fr;
}

.canva-tip {
  border-color: #d9c5f6;
  background: #f7f0ff;
}

.canva-tip ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.onedrive-icon,
.onedrive-logo {
  background: linear-gradient(135deg, #0078d4, #28a8ea);
}

.onedrive-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 54%, #edf3ff 100%);
  color: var(--text);
  border: 1px solid var(--border);
}

.onedrive-logo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 76px;
  border-radius: 28px;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 18px 12px 0 rgba(0, 120, 212, 0.16);
}

.onedrive-heading > span {
  background: linear-gradient(135deg, #0078d4, #28a8ea);
}

.onedrive-heading h2,
.wide-step .onedrive-title {
  color: #07589f;
}

.onedrive-browser,
.onedrive-file-shot,
.onedrive-upload-shot,
.office-save-shot,
.sync-shot,
.share-file-shot,
.permission-shot {
  overflow: hidden;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 86, 150, 0.1);
}

.m365-shot {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 300px;
  background: #f6f9fd;
}

.m365-shot aside,
.office-save-shot aside,
.finder-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #0f1f34;
  color: white;
}

.m365-shot aside span,
.office-save-shot aside span,
.finder-panel span {
  padding: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.m365-shot section {
  padding: 28px;
}

.m365-shot h3 {
  margin: 0 0 18px;
  color: #12233d;
}

.app-launcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-launcher span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e3f1;
  border-radius: 10px;
  background: white;
  color: #31405a;
  font-weight: 900;
}

.app-launcher .active {
  background: linear-gradient(135deg, #0078d4, #28a8ea);
  color: white;
}

.onedrive-file-shot,
.onedrive-upload-shot,
.office-save-shot,
.sync-shot,
.share-file-shot,
.permission-shot {
  min-height: 240px;
}

.file-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid #e2e8f2;
  background: #f8fbff;
}

.file-toolbar button,
.permission-shot button {
  border: 0;
  border-radius: 6px;
  background: #0078d4;
  color: white;
  padding: 10px 12px;
  font-weight: 900;
}

.file-toolbar span {
  margin-left: auto;
  color: var(--muted);
  font-weight: 800;
}

.folder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.folder-grid b {
  min-height: 120px;
  display: grid;
  align-content: end;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(180deg, #dff1ff 0 32%, transparent 32%),
    #ffffff;
  color: #07589f;
}

.onedrive-upload-shot {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.upload-menu {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-right: 1px solid #e2e8f2;
  background: #f8fbff;
}

.upload-menu span {
  padding: 10px;
  border-radius: 6px;
  background: white;
  border: 1px solid #dbe7f5;
}

.drop-zone {
  display: grid;
  place-items: center;
  margin: 18px;
  border: 2px dashed #8fc5ef;
  border-radius: 10px;
  color: #07589f;
  text-align: center;
  font-weight: 900;
}

.office-save-shot {
  display: grid;
  grid-template-columns: 130px 1fr;
}

.office-save-content {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 22px;
}

.office-save-content span {
  padding: 14px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: #f8fbff;
  color: #263149;
  font-weight: 800;
}

.sync-shot {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 270px;
}

.finder-panel .active {
  background: #0078d4;
}

.sync-files {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 24px;
  background: #f7fbff;
}

.sync-files b {
  padding: 16px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: white;
  color: #23324a;
}

.share-file-shot {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 18px;
  background: #f8fbff;
}

.file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: white;
}

.file-row.selected {
  border-color: #0078d4;
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12);
}

.file-row button {
  border: 0;
  border-radius: 6px;
  background: #eef5fc;
  color: #07589f;
  padding: 8px 10px;
  font-weight: 900;
}

.permission-shot {
  display: grid;
  gap: 12px;
  align-content: center;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px;
}

.permission-shot span {
  padding: 14px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: #f8fbff;
  color: #263149;
  font-weight: 800;
}

.onedrive-tip {
  border-color: #cde3f6;
  background: #eff8ff;
}

.notion-onedrive-flow {
  display: grid;
  gap: 26px;
  margin-top: 42px;
}

.notion-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid #cde3f6;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 86, 150, 0.08);
}

.notion-step.extra {
  border-color: #d9c5f6;
  background: linear-gradient(135deg, #ffffff, #f7f0ff);
}

.notion-step.share {
  background: linear-gradient(135deg, #ffffff, #eef8ff);
}

.notion-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0078d4, #28a8ea);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.notion-step.extra .notion-step-number {
  background: linear-gradient(135deg, #00c4cc, #7d2ae8);
}

.notion-step-body {
  min-width: 0;
}

.notion-step-body h2 {
  margin: 0 0 12px;
  color: #07589f;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.notion-step.extra h2 {
  color: #5b1da8;
}

.notion-step-body p {
  margin: 0 0 18px;
  color: #24324a;
  font-size: 1.02rem;
  line-height: 1.75;
}

.notion-step-body p:last-child {
  margin-bottom: 0;
}

.notion-image {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(0, 86, 150, 0.08);
}

.notion-image img {
  display: block;
  width: 100%;
  height: auto;
}

.image-pair,
.notion-gallery {
  display: grid;
  gap: 18px;
}

.image-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notion-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aps-icon,
.aps-logo {
  background: linear-gradient(135deg, #27364a, #0f8b8d);
}

.aps-hero {
  background:
    linear-gradient(135deg, rgba(10, 22, 36, 0.96), rgba(15, 90, 93, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(55, 182, 176, 0.36), transparent 30%),
    linear-gradient(135deg, #101c2c, #0f686a);
  color: white;
  overflow: hidden;
  position: relative;
}

.aps-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.aps-title-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
}

.aps-logo {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 102px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  color: white;
  font-size: 1.85rem;
  font-weight: 900;
  box-shadow:
    18px 12px 0 rgba(55, 182, 176, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.aps-logo::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.aps-hero .guide-title h1 {
  color: white;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
}

.aps-hero .guide-title p {
  color: rgba(255, 255, 255, 0.86);
}

.aps-title-image {
  position: relative;
  min-height: 244px;
}

.aps-title-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  color: #12354a;
}

.aps-title-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #d9e2ec;
  background: #eef4f8;
}

.aps-title-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #92a1b2;
}

.aps-title-window-bar strong {
  margin-left: 8px;
  color: #27364a;
  font-size: 0.82rem;
}

.aps-title-window-body {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.aps-title-folder {
  min-height: 132px;
  display: grid;
  align-content: end;
  padding: 16px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #37b6b0 0 34%, transparent 34%),
    #dff8f6;
  color: #0f686a;
  font-weight: 900;
}

.aps-title-folder span {
  color: #27364a;
  font-size: 0.78rem;
}

.aps-title-folder strong {
  font-size: 1.7rem;
}

.aps-title-status {
  display: grid;
  gap: 10px;
}

.aps-title-status span,
.aps-title-status b {
  display: block;
  padding: 12px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: white;
  font-size: 0.9rem;
}

.aps-title-status span {
  color: #334155;
  font-weight: 800;
}

.aps-title-status b {
  color: #0f686a;
  font-size: 1.05rem;
}

.aps-title-badge,
.aps-title-download {
  position: absolute;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.aps-title-badge {
  right: 16px;
  bottom: 8px;
  min-width: 112px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #0f8b8d;
}

.aps-title-download {
  left: -18px;
  top: 48px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b8f5a, #37b6b0);
  font-size: 2rem;
}

.aps-flow {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.aps-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(16, 28, 44, 0.08);
}

.aps-step.credentials {
  border-color: #b9e4de;
  background: linear-gradient(135deg, #ffffff, #effaf8);
}

.aps-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #27364a, #0f8b8d);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.aps-step-content h2 {
  margin: 0 0 10px;
  color: #12354a;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.aps-step-content p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

.aps-button {
  background: #0f8b8d;
}

.aps-guide-image {
  display: block;
  width: 100%;
  margin-top: 18px;
  aspect-ratio: 21 / 13;
  height: auto;
  object-fit: contain;
  border: 1px solid #d7e3f2;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(16, 28, 44, 0.08);
}

.aps-tip {
  border-color: #b9e4de;
  background: #effaf8;
}

.aps-tip ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.genera-icon,
.genera-logo {
  background: linear-gradient(135deg, #6fc06d, #23b9b0);
}

.genera-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 26, 48, 0.92), rgba(16, 113, 91, 0.84)),
    radial-gradient(circle at 88% 14%, rgba(112, 192, 109, 0.36), transparent 32%),
    linear-gradient(135deg, #eefaf2, #b9d7e1);
  color: white;
}

.genera-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.genera-title-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  gap: 36px;
  align-items: center;
}

.genera-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  color: white;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    18px 12px 0 rgba(35, 185, 176, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.genera-hero .guide-title h1 {
  color: white;
  text-transform: none;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.genera-hero .guide-title p {
  color: rgba(255, 255, 255, 0.9);
}

.genera-hero-phone {
  justify-self: end;
  overflow: hidden;
  width: min(100%, 190px);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: #0a1c2c;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.genera-hero-phone img,
.genera-phone-shot img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.genera-hero-phone img {
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.genera-phone-shot img {
  height: auto;
}

.genera-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid #cbe6df;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #effaf5);
  box-shadow: 0 16px 34px rgba(18, 92, 72, 0.08);
}

.genera-download-panel h2 {
  margin: 0 0 10px;
  color: #0f604f;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.genera-download-panel p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.genera-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.store-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid #d5e8e2;
  border-radius: 8px;
  background: white;
}

.store-card > span {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #e0f4ed;
  color: #0f604f;
  font-size: 0.78rem;
  font-weight: 900;
}

.store-card h3 {
  margin: 0 0 6px;
  color: #0f604f;
}

.store-card p {
  color: var(--muted);
}

.genera-button {
  background: #147a61;
}

.genera-flow {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.genera-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid #d5e8e2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(18, 92, 72, 0.08);
}

.genera-step.important {
  border-color: #b9dfe4;
  background: linear-gradient(135deg, #ffffff, #f0fbff);
}

.genera-step.success {
  border-color: #c8e6ba;
  background: linear-gradient(135deg, #ffffff, #f3fbef);
}

.genera-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #147a61, #23b9b0);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.genera-step-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  gap: 18px 28px;
  align-items: start;
}

.genera-step-content h2 {
  grid-column: 1;
  margin: 0;
  color: #0f604f;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.genera-step-content p {
  grid-column: 1;
  margin: 0;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

.genera-password-tool {
  grid-column: 1;
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid #d5e8e2;
}

.genera-password-tool label {
  color: #0f604f;
  font-weight: 900;
}

.genera-password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.genera-password-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8cbc5;
  border-radius: 8px;
  padding: 10px 12px;
  color: #172033;
  font: inherit;
}

.genera-password-row button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: #147a61;
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.genera-password-result {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 12px;
  background: #e9f8f1;
  color: #0f604f;
  font-weight: 900;
}

.genera-password-result.is-error {
  background: #fff2f2;
  color: #b42318;
}

.genera-phone-shot {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: min(100%, 310px);
  margin: 0;
  padding: 10px;
  border: 1px solid #1f3545;
  border-radius: 30px;
  background: #0a1c2c;
  box-shadow: 0 18px 38px rgba(10, 28, 44, 0.18);
}

.genera-tip {
  border-color: #cbe6df;
  background: #effaf5;
}

.genera-tip ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.correo-icon,
.correo-logo {
  background: linear-gradient(135deg, #0f6cbd, #1b8f5a);
}

.correo-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 54%, #effaf5 100%);
  color: var(--text);
  border: 1px solid var(--border);
}

.correo-title-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: center;
}

.correo-logo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  color: white;
  font-size: 3.4rem;
  font-weight: 900;
  box-shadow:
    18px 12px 0 rgba(27, 143, 90, 0.16),
    0 18px 40px rgba(15, 108, 189, 0.16);
}

.correo-hero .guide-title h1 {
  color: #0a3d72;
  text-transform: none;
}

.correo-hero .guide-title p {
  color: #334155;
}

.correo-hero-preview {
  justify-self: end;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(15, 108, 189, 0.14);
}

.correo-hero-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: left top;
}

.correo-access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid #cde3f6;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
  box-shadow: 0 16px 34px rgba(15, 108, 189, 0.08);
}

.correo-access-panel h2 {
  margin: 0 0 10px;
  color: #0a3d72;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.correo-access-panel p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.correo-button {
  background: #0f6cbd;
}

.correo-flow {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.correo-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid #d7e4f2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(15, 108, 189, 0.08);
}

.correo-step.important {
  border-color: #d4e8dc;
  background: linear-gradient(135deg, #ffffff, #f1fbf6);
}

.correo-step.success {
  border-color: #c8e1f7;
  background: linear-gradient(135deg, #ffffff, #eff7ff);
}

.correo-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f6cbd, #1b8f5a);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.correo-step-content h2 {
  margin: 0 0 10px;
  color: #0a3d72;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.correo-step-content p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

.correo-image {
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid #d7e4f2;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(15, 108, 189, 0.08);
}

.correo-image img {
  display: block;
  width: 100%;
  height: auto;
}

.correo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.correo-gallery .correo-image {
  margin: 0;
}

.correo-tip {
  border-color: #cde3f6;
  background: #f0f8ff;
}

.correo-tip ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.zoom-icon,
.zoom-logo {
  background: linear-gradient(135deg, #0b5cff, #2d8cff);
}

.zoom-hero {
  background:
    linear-gradient(rgba(8, 26, 72, 0.68), rgba(8, 26, 72, 0.58)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: white;
}

.zoom-logo {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 18px 12px 0 rgba(11, 92, 255, 0.24);
}

.zoom-flow {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.zoom-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid #d7e4ff;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(11, 92, 255, 0.08);
}

.zoom-step.success {
  background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.zoom-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b5cff, #2d8cff);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.zoom-step-content h2 {
  margin: 0 0 10px;
  color: #0b3a92;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.zoom-step-content p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.7;
}

.zoom-button {
  background: #0b5cff;
}

.zoom-image {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #d7e4ff;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.08);
}

.zoom-image img {
  display: block;
  width: 100%;
  height: auto;
}

.zoom-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zoom-gallery .zoom-image {
  margin: 0;
}

.zoom-tip {
  border-color: #c9dcff;
  background: #eff6ff;
}

.zoom-tip ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1040px) {
  .guide-grid,
  .process-grid.four,
  .process-grid.three,
  .process-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero,
  .tutorial-hero {
    min-height: 300px;
    padding: 32px 24px;
  }

  .tutorial-list,
  .platform-grid,
  .steps,
  .guide-grid,
  .aps-title-layout,
  .correo-title-layout,
  .correo-access-panel,
  .genera-title-layout,
  .genera-download-panel,
  .genera-downloads,
  .process-grid.five,
  .process-grid.four,
  .process-grid.three,
  .process-grid.two,
  .wide-step,
  .notion-step,
  .aps-step,
  .correo-step,
  .genera-step,
  .zoom-step,
  .image-pair,
  .notion-gallery,
  .correo-gallery,
  .zoom-gallery {
    grid-template-columns: 1fr;
  }

  .platform-grid.teams-platform-grid,
  .process-grid.five.teams-meeting-grid,
  .process-grid.four.teams-share-grid {
    grid-template-columns: 1fr;
  }

  .m365-shot,
  .onedrive-upload-shot,
  .office-save-shot,
  .sync-shot,
  .aps-title-window-body {
    grid-template-columns: 1fr;
  }

  .folder-grid,
  .app-launcher {
    grid-template-columns: 1fr;
  }

  .tutorial-summary,
  .step {
    grid-template-columns: 1fr;
  }

  .guide-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .aps-title-image {
    min-height: 260px;
    width: 100%;
  }

  .genera-hero-phone {
    justify-self: start;
    width: min(100%, 180px);
  }

  .genera-hero-phone img {
    height: 330px;
  }

  .genera-step-content {
    grid-template-columns: 1fr;
  }

  .genera-step-content h2,
  .genera-step-content p,
  .genera-password-tool,
  .genera-phone-shot {
    grid-column: auto;
    grid-row: auto;
  }

  .genera-password-row {
    grid-template-columns: 1fr;
  }

  .genera-phone-shot {
    width: min(100%, 300px);
  }

  .aps-title-download {
    left: auto;
    right: 18px;
    top: -18px;
  }

  .guide-heading {
    flex-direction: column;
  }
}
