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

:root,
[data-theme="dark"] {
  --color-base: #000000;
  --color-middle: #1a1a1a;
  --color-upper: #2a2a2a;
  --color-surface: #121212;
  --color-border: #333333;
  --color-border-light: #444444;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-text-subtle: #777777;
  --color-button-bg: #e8e8e8;
  --color-button-text: #111111;
  --color-button-secondary-bg: #141414;
  --color-button-secondary-text: #eeeeee;
  --color-glow: rgba(255, 255, 255, 0.12);
  --color-nav-bg: #0b0b0b;
  --color-accent: #ffffff;
}

[data-theme="light"] {
  --color-base: #ffffff;
  --color-middle: #e8e8e8;
  --color-upper: #d4d4d4;
  --color-surface: #f5f5f5;
  --color-border: #cccccc;
  --color-border-light: #b8b8b8;
  --color-text: #000000;
  --color-text-muted: #444444;
  --color-text-subtle: #666666;
  --color-button-bg: #111111;
  --color-button-text: #ffffff;
  --color-button-secondary-bg: #e8e8e8;
  --color-button-secondary-text: #111111;
  --color-glow: rgba(0, 0, 0, 0.08);
  --color-nav-bg: #ffffff;
  --color-accent: #111111;
}

[data-theme="accent"] {
  --color-base: #07060d;
  --color-middle: #151022;
  --color-upper: #221a35;
  --color-surface: #100e18;
  --color-border: #3c2782;
  --color-border-light: #5a3fa8;
  --color-text: #f5f2ff;
  --color-text-muted: #b8aed6;
  --color-text-subtle: #8a7fad;
  --color-button-bg: #3c2782;
  --color-button-text: #ffffff;
  --color-button-secondary-bg: #151022;
  --color-button-secondary-text: #e8e2ff;
  --color-glow: rgba(60, 39, 130, 0.42);
  --color-nav-bg: #0b0912;
  --color-accent: #3c2782;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-base);
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

main {
  flex: 1;
}

/* ── Site header / nav ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo-mark .logo-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-logo-mark .logo-side div {
  width: 18px;
  height: 2px;
  background: var(--color-text-muted);
}

.site-logo-mark .logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.75;
}

.site-logo-mark .logo-center span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  color: var(--color-text);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
  background: var(--color-middle);
  border-color: var(--color-border);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--color-text);
  background: var(--color-middle);
}

/* ── Hero & page sections ── */

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--color-base);
}

.hero.compact {
  min-height: 44vh;
  padding: 64px 24px;
}

.kanasaka-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.kanasaka-logo.small {
  transform: scale(0.72);
  margin-bottom: 12px;
}

.logo-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-side div {
  width: 50px;
  height: 2px;
  background: var(--color-text-muted);
}

.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.8;
}

.logo-center span {
  font-size: 64px;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero p,
.page-intro p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  border-top: 1px solid var(--color-border);
}

.page-section h2 {
  margin: 0 0 32px;
  text-align: center;
  color: var(--color-text-subtle);
  letter-spacing: 0.25em;
  font-size: 14px;
  font-weight: 600;
}

/* ── Cards ── */

.product-card,
.download-card,
.content-card,
.feature-grid article {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.featured-download,
.featured-card {
  border-color: var(--color-border-light);
  background: var(--color-middle);
}

.product-info h3,
.download-info h2,
.content-card h2 {
  margin-top: 0;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.download-kicker,
.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text-subtle);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.product-info p,
.download-info p,
.content-card p,
.download-notes p {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.meta span {
  border: 1px solid var(--color-border);
  background: var(--color-base);
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.actions,
.download-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  flex-shrink: 0;
}

.download-card-wide {
  flex-direction: column;
  align-items: stretch;
}

.download-card-wide .download-actions {
  min-width: 0;
  width: 100%;
  margin-top: 8px;
}

.download-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.download-platform-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
}

.platform-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-subtle);
}

.platform-title {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.platform-detail,
.platform-file {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.platform-file {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
}

.download-platform-card .button {
  margin-top: auto;
  width: 100%;
}

.download-notes-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.download-notes-list li + li {
  margin-top: 10px;
}

.download-notes code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: var(--color-text);
}

.button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 14px 18px;
  border: 1px solid var(--color-border-light);
  background: var(--color-button-bg);
  color: var(--color-button-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button.secondary {
  background: var(--color-button-secondary-bg);
  color: var(--color-button-secondary-text);
}

.button:hover {
  transform: scale(1.045);
  border-color: var(--color-text-muted);
  box-shadow: 0 0 24px var(--color-glow);
}

.button:active {
  transform: scale(0.985);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-grid article {
  flex-direction: column;
  gap: 12px;
}

.feature-grid h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.download-notes {
  display: block;
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.download-notes h3 {
  margin-top: 0;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

/* ── Coming soon ── */

.coming-soon {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}

.coming-soon-box {
  max-width: 520px;
  width: 100%;
  padding: 48px 32px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.coming-soon-box h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 16px;
}

.coming-soon-box p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
}

.coming-soon-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* ── Contact ── */

.contact-details {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.contact-item {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
}

.contact-item dt {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.contact-item dd {
  margin: 0;
  font-size: 18px;
  color: var(--color-text);
}

.contact-item dd + dd {
  margin-top: 8px;
}

.contact-item a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-item a:hover {
  color: var(--color-text-muted);
}

.contact-note {
  font-size: 14px !important;
  color: var(--color-text-muted) !important;
  line-height: 1.6;
}

/* ── Auth ── */

.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-username {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 8px;
}

.auth-link {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  color: var(--color-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.auth-link.secondary {
  background: var(--color-base);
  color: var(--color-text-muted);
}

.auth-link:hover {
  transform: scale(1.04);
  border-color: var(--color-border-light);
  box-shadow: 0 0 20px var(--color-glow);
}

.auth-page {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.auth-card h1 {
  font-size: clamp(28px, 5vw, 40px);
  margin: 0 0 12px;
  letter-spacing: 0.1em;
}

.auth-card p {
  margin: 0 0 28px;
  color: var(--color-text-muted);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.auth-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
  color: var(--color-text);
  font: inherit;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--color-border-light);
}

.auth-error {
  margin: 0 0 8px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  color: var(--color-text);
  font-size: 14px;
}

.auth-error[hidden] {
  display: none;
}

.auth-success {
  margin: 0 0 8px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.auth-success[hidden] {
  display: none;
}

.auth-switch {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.auth-switch a {
  color: var(--color-text);
}

.auth-gate {
  margin-top: 24px;
}

.auth-gate[hidden] {
  display: none;
}

.auth-gate-box {
  padding: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
}

.auth-gate-box h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.auth-gate-box p {
  margin: 0 0 24px;
  color: var(--color-text-muted);
}

.auth-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#contact-details[hidden],
#download-actions[hidden],
#settings-content[hidden],
#settings-gate[hidden] {
  display: none;
}

.settings-page {
  align-items: flex-start;
  padding-top: 48px;
  padding-bottom: 64px;
}

.settings-layout {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
}

.settings-sidebar[hidden] {
  display: none;
}

.settings-layout:has(.settings-sidebar[hidden]) {
  grid-template-columns: 1fr;
}

.settings-sidebar-head h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: 0.08em;
}

.settings-sidebar-head p {
  margin: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.settings-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-nav-item {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.settings-nav-item:hover,
.settings-nav-item.is-active {
  color: var(--color-text);
  border-color: var(--color-border-light);
  transform: scale(1.01);
}

.settings-nav-item.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 18px var(--color-glow);
}

.settings-page .settings-card {
  max-width: none;
  width: 100%;
}

.settings-panel[hidden] {
  display: none;
}

.settings-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.settings-panel-intro {
  margin: 0 0 28px;
  color: var(--color-text-muted);
}

.settings-subsection-title {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.settings-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.settings-avatar {
  width: 112px;
  height: 112px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.settings-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.settings-profile-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.settings-upload-label {
  cursor: pointer;
}

.settings-form {
  margin-top: 8px;
}

.settings-danger-zone {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.settings-danger-copy {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.settings-delete-button {
  background: #5a1a1a;
  color: #ffffff;
}

.settings-delete-button:hover {
  box-shadow: 0 0 20px rgba(180, 40, 40, 0.35);
}

.settings-coming-soon {
  padding: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
}

.settings-coming-soon p {
  margin: 12px 0 0;
  color: var(--color-text-muted);
}

.theme-picker {
  display: grid;
  gap: 12px;
}

.theme-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  background: var(--color-base);
  color: var(--color-text);
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.theme-option:hover,
.theme-option.is-selected {
  transform: scale(1.01);
  border-color: var(--color-accent);
  box-shadow: 0 0 18px var(--color-glow);
}

.theme-option-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-option-preview {
  width: 72px;
  height: 40px;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.theme-preview-dark {
  background: linear-gradient(135deg, #000000 55%, #ffffff 55%);
}

.theme-preview-light {
  background: linear-gradient(135deg, #ffffff 55%, #111111 55%);
}

.theme-preview-accent {
  background: linear-gradient(135deg, #07060d 55%, #3c2782 55%);
}

.header-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.header-user:hover {
  transform: scale(1.02);
  color: var(--color-text);
}

.header-avatar {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: var(--color-middle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text);
  flex-shrink: 0;
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-display-name {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .settings-layout {
    grid-template-columns: 1fr;
  }

  .settings-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-nav-bg);
  padding: 40px 24px;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--color-text-subtle);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

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

/* ── Responsive ── */

@media (max-width: 1024px) {
  .header-auth {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-nav-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 12px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: 1px solid var(--color-border);
    background: var(--color-base);
    display: none;
  }

  .nav-item.expanded .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding-left: 28px;
  }
}

@media (max-width: 768px) {
  .product-card,
  .download-card,
  .content-card {
    flex-direction: column;
    align-items: stretch;
  }

  .actions,
  .download-actions {
    width: 100%;
    min-width: 0;
  }

  .download-platform-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
    padding: 64px 20px;
  }
}
