@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap";

:root {
  --app-bg: #f6f7fb;
  --app-surface: #ffffff;
  --app-surface-2: #fbfcfe;
  --app-border: rgba(15, 23, 42, 0.10);
  --app-text: #0f172a;
  --app-muted: rgba(15, 23, 42, 0.65);
  --app-primary: #0d6efd;
  --app-primary-strong: #0b5ed7;
  --app-primary-soft: rgba(13, 110, 253, 0.10);
  --app-success: #16a34a;
  --app-danger: #b42318;
  --app-display-font: "Plus Jakarta Sans", "Poppins", sans-serif;
  --app-radius: 16px;
  --app-radius-sm: 12px;
  --app-focus-ring: 0 0 0 0.25rem rgba(13, 110, 253, 0.18);
  --app-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --app-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
  --app-shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(760px 360px at 15% 0%, rgba(13, 110, 253, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--app-bg) 45%, #eef2f7 100%);
  color: var(--app-text);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select {
  font: inherit;
}

a {
  color: var(--app-primary);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  color: var(--app-primary-strong);
}

.support-page {
  width: calc(100% - 32px);
  max-width: 1120px;
  min-height: 100dvh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  align-content: center;
  column-gap: 1.25rem;
  row-gap: 1.5rem;
  padding: 2rem 0;
}

.support-card,
.steps-panel {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--app-shadow);
  backdrop-filter: saturate(130%) blur(12px);
}

.support-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.support-page[data-active-tab="support"] .support-card {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  justify-self: center;
}

.support-page[data-active-tab="internet"] .support-card,
.support-page[data-active-tab="internet"] .ip-info-panel {
  align-self: stretch;
}

.steps-panel {
  padding: 1.25rem;
}

.brand-row {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
}

.language-control {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--app-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.35rem 0.45rem 0.35rem 0.75rem;
  box-shadow: var(--app-shadow-sm);
}

.language-control label {
  color: var(--app-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-control select {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--app-surface);
  color: var(--app-text);
  padding: 0.25rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.language-control select:focus-visible {
  box-shadow: var(--app-focus-ring);
}

.eyebrow {
  margin: 0 0 0.25rem;
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--app-text);
  font-family: var(--app-display-font);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(1.85rem, 2vw + 1rem, 2.75rem);
  line-height: 1.05;
  font-weight: 800;
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.tool-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--app-border);
  background: transparent;
  padding: 0;
}

.tool-tab {
  position: relative;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--app-muted);
  padding: 0 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: color 0.16s ease;
}

.tool-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tool-tab::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -1px;
  left: 12%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--app-primary);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.tool-tab:hover {
  color: var(--app-text);
}

.tool-tab.is-selected {
  color: var(--app-text);
}

.tool-tab span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tool-tab.is-selected::after {
  opacity: 1;
  transform: scaleX(1);
}

.tool-tab:focus-visible {
  outline: none;
  box-shadow: inset var(--app-focus-ring);
}

.tool-panel {
  display: grid;
  gap: 1rem;
}

.tool-panel[hidden],
.steps-panel[hidden] {
  display: none;
}

.session-form {
  display: grid;
  gap: 1rem;
}

.session-form[hidden] {
  display: none;
}

.platform-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface-2);
  padding: 0.35rem;
  margin-bottom: 0.85rem;
}

.platform-option {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--app-muted);
  padding: 0.45rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.platform-icon {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.platform-option[data-platform="desktop"] .platform-icon {
  fill: currentColor;
  stroke: none;
}

.platform-option:hover {
  color: var(--app-text);
}

.platform-option.is-selected {
  background: #fff;
  color: var(--app-text);
  box-shadow: var(--app-shadow-sm);
}

.platform-option.is-selected .platform-icon {
  color: var(--app-primary);
}

.platform-option:focus-visible {
  outline: none;
  box-shadow: var(--app-focus-ring);
}

.mobile-app-panel {
  display: grid;
  gap: 1rem;
}

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

.mobile-app-panel p {
  margin: 0;
  color: var(--app-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.app-download-button {
  text-decoration: none;
}

.app-download-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
  pointer-events: none;
  transform: none;
}

.app-download-button.is-disabled:hover {
  background: var(--app-primary);
  box-shadow: none;
  transform: none;
}

.mobile-session-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem;
  align-items: center;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: #f3f4f6;
  padding: 0.85rem 0.95rem;
}

.mobile-session-note[hidden] {
  display: none;
}

.mobile-session-note span {
  grid-column: 1 / -1;
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-session-note strong {
  color: var(--app-text);
  font-family: var(--app-display-font);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.copy-session-button {
  min-height: 34px;
  border: 1px solid rgba(13, 110, 253, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--app-primary);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.copy-session-button:focus-visible {
  outline: none;
  box-shadow: var(--app-focus-ring);
}

.contact-panel {
  gap: 1rem;
}

.ticket-gate {
  display: grid;
  gap: 1rem;
}

.ticket-form {
  display: grid;
  gap: 0.9rem;
}

.ticket-form h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.ticket-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ticket-form label {
  font-size: 0.86rem;
}

.ticket-form input,
.ticket-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface);
  color: var(--app-text);
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  outline: none;
  box-shadow: var(--app-shadow-sm);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.ticket-form textarea {
  min-height: 112px;
  resize: vertical;
}

.ticket-form input:focus,
.ticket-form textarea:focus {
  border-color: rgba(13, 110, 253, 0.72);
  box-shadow: var(--app-focus-ring);
}

.ticket-submit-button {
  justify-self: stretch;
}

.ticket-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-divider::before,
.ticket-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: var(--app-border);
}

.ticket-lookup-button {
  justify-self: stretch;
  border-radius: var(--app-radius-sm);
}

.form-status {
  min-height: 1.2em;
  margin: -0.25rem 0 0;
  color: var(--app-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: var(--app-danger);
}

.ticket-confirmation {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: var(--app-radius-sm);
  background: rgba(22, 163, 74, 0.08);
  padding: 0.95rem 1rem;
  text-align: center;
}

.ticket-confirmation span {
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-confirmation strong {
  color: var(--app-success);
  font-family: var(--app-display-font);
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-options {
  display: grid;
  gap: 0.75rem;
}

.ticket-gate[hidden],
.ticket-confirmation[hidden],
.contact-options[hidden] {
  display: none;
}

.contact-action {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface);
  padding: 0.95rem 1rem;
  text-align: center;
  box-shadow: var(--app-shadow-sm);
}

.contact-link {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  color: inherit;
}

.contact-action span {
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action strong {
  color: var(--app-text);
  font-family: var(--app-display-font);
  font-size: 1.1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-action:hover {
  border-color: rgba(13, 110, 253, 0.32);
  background: rgba(13, 110, 253, 0.05);
}

.contact-link:focus-visible,
.contact-action:focus-within {
  outline: none;
  box-shadow: var(--app-focus-ring);
}

.contact-copy-button {
  min-width: 118px;
  margin-top: 0.35rem;
}

.ip-panel,
.speed-panel {
  gap: 1rem;
}

.ip-info-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--app-shadow-sm);
}

.support-page[data-active-tab="internet"] .ip-info-panel {
  min-height: 100%;
}

.ip-info-panel .steps-heading {
  padding-bottom: 0.8rem;
}

.ip-info-panel h2 {
  font-size: 1.05rem;
}

.ip-summary {
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: var(--app-radius-sm);
  background: rgba(13, 110, 253, 0.08);
  padding: 1rem;
  text-align: center;
}

.ip-label {
  display: block;
  color: var(--app-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ip-address {
  display: block;
  margin-top: 0.35rem;
  color: var(--app-text);
  font-family: var(--app-display-font);
  font-size: clamp(1.55rem, 2vw + 0.8rem, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.ip-status {
  display: block;
  margin-top: 0.25rem;
  color: var(--app-muted);
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.speed-results {
  margin-top: 0.1rem;
}

#speed-test-button {
  width: 108px;
  height: 108px;
  min-height: 108px;
  justify-self: center;
  border-radius: 50%;
  padding: 0.8rem;
  line-height: 1.15;
  text-align: center;
}

.secondary-button {
  min-height: 40px;
  border: 1px solid rgba(13, 110, 253, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--app-primary);
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.secondary-button:hover {
  border-color: rgba(13, 110, 253, 0.42);
  color: var(--app-primary-strong);
}

.secondary-button:focus-visible {
  outline: none;
  box-shadow: var(--app-focus-ring);
}

.ip-detail-list {
  display: grid;
}

.ip-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.75rem;
  align-items: center;
  border-bottom: 1px solid var(--app-border);
  padding: 0.78rem 0;
}

.ip-row:last-child {
  border-bottom: 0;
}

.ip-row span {
  color: var(--app-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.ip-row strong {
  min-width: 0;
  color: var(--app-text);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.ip-info-panel .ip-row {
  grid-template-columns: 1fr;
  gap: 0.22rem;
  align-items: start;
  padding: 0.68rem 0;
}

.ip-info-panel .ip-row strong {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.session-form .field-group {
  text-align: center;
}

label {
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface);
  color: var(--app-text);
  padding: 0.7rem 0.9rem;
  font-size: clamp(1.35rem, 1.3vw + 1rem, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  box-shadow: var(--app-shadow-sm);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

input::placeholder {
  color: rgba(15, 23, 42, 0.28);
}

input:focus {
  border-color: rgba(13, 110, 253, 0.45);
  box-shadow: var(--app-focus-ring);
}

input[aria-invalid="true"] {
  border-color: rgba(180, 35, 24, 0.55);
}

#customer-name {
  text-align: center;
  letter-spacing: 0;
}

.field-help,
.field-error,
.download-status p {
  margin: 0;
  color: var(--app-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.field-error {
  min-height: 1.45em;
  color: var(--app-danger);
  font-weight: 600;
}

.download-button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  background: var(--app-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.22);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.download-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--app-primary-strong);
  color: #fff;
  box-shadow: 0 14px 35px rgba(13, 110, 253, 0.26);
}

.download-button:visited {
  color: #fff;
}

.download-button:focus-visible {
  outline: none;
  color: #fff;
  box-shadow: var(--app-focus-ring), 0 10px 25px rgba(13, 110, 253, 0.22);
}

.download-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.download-glyph {
  position: relative;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.download-glyph::before,
.download-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.download-glyph::before {
  top: -0.45rem;
  width: 2px;
  height: 0.8rem;
  background: currentColor;
  border-radius: 999px;
}

.download-glyph::after {
  top: 0.06rem;
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.download-status {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  width: min(calc(100vw - 2rem), 390px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.9rem;
  box-shadow: var(--app-shadow-lg);
  backdrop-filter: saturate(130%) blur(14px);
}

.download-status[hidden] {
  display: none;
}

.toast-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--app-primary-soft);
  color: var(--app-primary);
}

.toast-icon::before {
  content: "";
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.toast-icon::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.toast-copy {
  min-width: 0;
}

.toast-copy strong {
  display: block;
  color: var(--app-text);
  font-family: var(--app-display-font);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.toast-copy p {
  margin: 0.25rem 0 0;
  color: var(--app-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.download-status a {
  font-weight: 800;
  white-space: nowrap;
}

.toast-next-step {
  padding-top: 0.25rem;
}

.steps-heading {
  padding: 0.2rem 0.35rem 1rem;
  border-bottom: 1px solid var(--app-border);
}

.steps-note {
  margin: 0.85rem 0 0;
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: var(--app-radius-sm);
  background: rgba(13, 110, 253, 0.08);
  color: var(--app-muted);
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.steps-note[hidden] {
  display: none;
}

.steps-note a {
  white-space: nowrap;
}

.steps-list {
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.steps-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  border-radius: var(--app-radius-sm);
  padding: 0.55rem;
  color: var(--app-muted);
  transition: background-color 0.16s ease, color 0.16s ease;
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.72);
  font-family: var(--app-display-font);
  font-weight: 800;
}

.step-text {
  min-width: 0;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.step-text strong {
  color: var(--app-text);
  font-weight: 800;
}

.steps-list li.is-active {
  background: var(--app-primary-soft);
  color: var(--app-text);
}

.steps-list li.is-active .step-number {
  background: var(--app-primary);
  color: #fff;
}

.steps-list li.is-complete {
  color: var(--app-text);
}

.steps-list li.is-complete .step-number {
  background: rgba(22, 163, 74, 0.14);
  color: var(--app-success);
}

@media (max-width: 820px) {
  html {
    font-size: 14.5px;
  }

  .support-page {
    width: calc(100% - 24px);
    max-width: 620px;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    align-content: start;
    padding: 1rem 0;
  }

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

  .language-control {
    justify-self: center;
  }

  .brand-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  h1 {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
    line-height: 1.12;
  }

  input {
    font-size: 1.28rem;
  }
}

@media (max-width: 430px) {
  .support-card,
  .steps-panel {
    padding: 1.15rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

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

  .language-control {
    width: 100%;
    justify-content: space-between;
  }

  .mobile-session-note {
    grid-template-columns: 1fr;
  }

  .ticket-field-grid {
    grid-template-columns: 1fr;
  }

  .ip-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .ip-row strong {
    text-align: left;
  }

  h1 {
    font-size: 1.52rem;
    max-width: 12ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
