* {
  box-sizing: border-box;
}

:root {
  --bg: #05050a;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.38);
  --purple: #7c3aed;
  --pink: #d946ef;
  --blue: #38bdf8;
  --toolbar: #0d0d14;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
}

body {
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.32), rgba(14, 165, 233, 0.14), #05050a 72%);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

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

.is-hidden {
  display: none !important;
}

.view {
  min-height: 100vh;
}

.page-shell,
.browser-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 24px;
}

.glass-panel {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 28px;
  margin-bottom: 32px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  cursor: pointer;
  text-decoration: none;
}

.brand-button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.brand-link:hover .brand-name {
  opacity: 0.92;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.25);
  font-size: 18px;
  font-weight: 700;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-fallback {
  color: #fff;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subname {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

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

.chip {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  transition: 0.25s ease;
  white-space: nowrap;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.chip.active {
  background: #ffffff;
  color: #000000;
}

.hero-shell {
  padding: 24px;
  border-radius: 32px;
  margin-bottom: 24px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 42px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.32), transparent 22%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.35), rgba(30, 41, 59, 0.75), rgba(88, 28, 135, 0.45));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.hero-glow-a {
  width: 240px;
  height: 240px;
  background: rgba(124, 58, 237, 0.48);
  top: -60px;
  right: 120px;
}

.hero-glow-b {
  width: 220px;
  height: 220px;
  background: rgba(56, 189, 248, 0.34);
  top: 10px;
  right: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  font-weight: 700;
}

.hero-mini-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 16px 30px rgba(56, 189, 248, 0.22);
}

.hero-mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
}

.hero-panel p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.continue-section {
  margin-bottom: 40px;
}

.continue-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(90deg, var(--purple), #6366f1, var(--blue));
  box-shadow: 0 24px 44px rgba(56, 189, 248, 0.16);
  transition: transform 0.25s ease;
}

.continue-card:hover {
  transform: translateY(-2px);
}

.continue-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.continue-title {
  margin-top: 8px;
  font-size: 38px;
  font-weight: 700;
}

.continue-arrow {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 36px;
}

.section-block {
  margin-bottom: 40px;
}

.section-title {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: 800;
}

.product-card {
  position: relative;
  width: 100%;
  text-align: left;
  isolation: isolate;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 0.28s ease, transform 0.62s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  filter: saturate(1.08);
}

.product-card:hover::after,
.product-card:focus-visible::after {
  opacity: 1;
  transform: translateX(42%);
}

.product-card:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.78);
  outline-offset: 4px;
}

.featured-card {
  overflow: visible;
  min-height: 248px;
  padding: 0;
  margin-bottom: 28px;
  border-radius: 30px;
  background: none;
}

.featured-card-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
  box-shadow: 0 28px 48px rgba(139, 92, 246, 0.18);
  z-index: 0;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.featured-card-panel::before {
  content: "";
  position: absolute;
  inset: -36%;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.30), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(56, 189, 248, 0.28), transparent 22%);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.28s ease, transform 0.45s ease;
}

.featured-card:hover .featured-card-panel,
.featured-card:focus-visible .featured-card-panel {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 70px rgba(56, 189, 248, 0.24), 0 18px 50px rgba(217, 70, 239, 0.18);
}

.featured-card:hover .featured-card-panel::before,
.featured-card:focus-visible .featured-card-panel::before {
  opacity: 1;
  transform: scale(1);
}

.featured-text {
  position: relative;
  z-index: 2;
  max-width: 54%;
  min-height: 248px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  transition: transform 0.28s ease, background 0.28s ease;
}

.featured-title {
  font-size: 44px;
  font-weight: 800;
}

.featured-subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.featured-image-wrap {
  position: absolute;
  right: -34px;
  bottom: 0;
  z-index: 1;
  width: 34%;
  min-width: 260px;
  height: 248px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.featured-image {
  width: 128%;
  height: 296px;
  object-fit: contain;
  object-position: right bottom;
  transform: translateX(-50px) translateY(0);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.38));
  transition: transform 0.32s ease, filter 0.32s ease;
}

.featured-card:hover .featured-icon,
.featured-card:focus-visible .featured-icon {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-4deg) scale(1.05);
}

.featured-card:hover .featured-image,
.featured-card:focus-visible .featured-image {
  transform: translateX(-62px) translateY(-8px) scale(1.04);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.44));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  margin-top: 22px;
  transform: none;
}

.secondary-card {
  overflow: hidden;
  min-height: 221px;
  border-radius: 28px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
}

.secondary-card-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.secondary-card-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.secondary-card:hover .secondary-card-panel,
.secondary-card:focus-visible .secondary-card-panel {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.secondary-card:hover .secondary-card-panel::before,
.secondary-card:focus-visible .secondary-card-panel::before {
  opacity: 1;
}

.avatar-card {
  transform: none;
}

.secondary-text {
  position: relative;
  z-index: 2;
  min-height: 221px;
  max-width: 52%;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.secondary-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  transition: transform 0.28s ease, background 0.28s ease;
}

.secondary-title {
  font-size: 34px;
  font-weight: 800;
}

.secondary-subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.avatar-image-wrap {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
  width: 44%;
  min-width: 190px;
  height: 221px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.avatar-image {
  width: 100%;
  height: 231px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.32s ease, filter 0.32s ease;
}

.timarsky-card {
  overflow: visible;
}

.timarsky-image-layer {
  position: absolute;
  right: -8px;
  bottom: -2px;
  z-index: 1;
  width: 58%;
  height: 236px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.timarsky-image {
  width: 150%;
  height: 150%;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(6px);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.timarsky-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(0,0,0,0.42), rgba(0,0,0,0.14), transparent 72%);
}

.timarsky-text {
  position: relative;
  z-index: 2;
  max-width: 58%;
}

.secondary-card:hover .secondary-icon,
.secondary-card:focus-visible .secondary-icon {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px) scale(1.06);
}

.avatar-card:hover .avatar-image,
.avatar-card:focus-visible .avatar-image {
  transform: translateX(-8px) translateY(-6px) scale(1.04);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

.timarsky-card:hover .timarsky-image,
.timarsky-card:focus-visible .timarsky-image {
  transform: translateX(-8px) translateY(-3px) scale(1.05);
  filter: drop-shadow(0 16px 24px rgba(56, 189, 248, 0.18));
}

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

.quick-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.quick-card:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

.quick-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
}

.quick-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.quick-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  padding-bottom: 6px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.advisor-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(255, 255, 255, 0.05));
}

.advisor-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.advisor-hero h2 {
  max-width: 820px;
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
}

.advisor-hero p {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.advisor-home-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.advisor-departments {
  display: grid;
  gap: 22px;
  padding-bottom: 32px;
}

.advisor-department {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
}

.advisor-department::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 32px;
  width: 210px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.26);
}

.advisor-department-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.advisor-department-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-4px);
}

.advisor-department h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.advisor-department p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.advisor-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  min-height: 146px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.055);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.advisor-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
}

.advisor-card-body {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
}

.advisor-card.has-image .advisor-card-body {
  padding-right: 112px;
}

.advisor-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.advisor-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.advisor-function {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.advisor-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.advisor-open-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.advisor-open-link.is-disabled {
  cursor: default;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
}

.advisor-image-link {
  position: absolute;
  right: 24px;
  bottom: -8px;
  z-index: 1;
  width: 132px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.advisor-image-link:hover {
  transform: translateY(-4px) scale(1.03);
  opacity: 1;
}

.advisor-image-link.is-disabled {
  cursor: default;
}

.advisor-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.38));
}

.browser-view {
  min-height: 100vh;
  background: #05050a;
}

.browser-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-left {
  display: contents;
}

.browser-brand-wrap {
  grid-column: 1;
  justify-self: start;
}

.browser-header .brand-group {
  flex: 0 0 auto;
}

.browser-header .chip-nav {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.browser-header .chip-nav::-webkit-scrollbar {
  display: none;
}



.browser-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;
}

.browser-icon-actions {
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1;
  transition: 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
}

.btn-light {
  background: #ffffff;
  color: #000000;
}



.frame-shell {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 170px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #08080d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

#productFrame {
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
}

.loading-mask,
.iframe-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.loading-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.loading-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 18px 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.iframe-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: #08080d;
}

.iframe-fallback h3 {
  margin: 0;
  font-size: 30px;
}

.iframe-fallback p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.fallback-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
}



@media (max-width: 1100px) {
  .hero-panel h1 { font-size: 52px; }
  .featured-title { font-size: 38px; }
  .secondary-title { font-size: 28px; }
  .continue-title { font-size: 30px; }
}

@media (max-width: 920px) {
  .page-shell,
  .browser-shell {
    width: calc(100% - 32px);
  }

  .top-header,
  .browser-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .browser-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .browser-left {
    display: contents;
  }

  .browser-brand {
    font-size: 13px;
  }

  .browser-logo {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .browser-chip-nav {
    justify-content: center;
    overflow-x: auto;
  }

  .chip {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .featured-text,
  .secondary-text,
  .timarsky-text {
    position: relative;
    z-index: 2;
    max-width: 58%;
  }

  .advisor-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .advisor-hero h2 {
    font-size: 34px;
  }

  .advisor-list {
    grid-template-columns: 1fr;
  }

  .advisor-card.has-image .advisor-card-body {
    padding-right: 126px;
  }
}

@media (max-width: 680px) {
  .hero-panel {
    padding: 28px 24px;
  }

  .hero-panel h1 {
    font-size: 38px;
  }

  .hero-brand-row {
    font-size: 22px;
  }

  .continue-card {
    padding: 24px;
  }

  .continue-title {
    font-size: 24px;
  }

  .featured-text,
  .secondary-text,
  .timarsky-text {
    position: relative;
    z-index: 2;
    max-width: 58%;
  }

  .advisor-hero {
    padding: 26px 22px;
  }

  .advisor-hero h2 {
    font-size: 28px;
  }

  .advisor-hero p {
    font-size: 15px;
  }

  .advisor-department {
    padding: 20px;
  }

  .advisor-department h3 {
    font-size: 25px;
  }

  .advisor-card {
    display: block;
  }

  .advisor-card.has-image .advisor-card-body {
    padding-right: 72px;
  }

  .advisor-action-row {
    flex-wrap: wrap;
  }

  .advisor-open-link {
    margin-top: 0;
    width: auto;
  }

  .advisor-image-link {
    right: 14px;
    width: 86px;
    height: 108px;
  }

  .advisor-open-link {
    min-width: 86px;
  }
}
