@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&display=swap');

:root {
  --aws-orange: #ff9900;
  --aws-orange-dark: #e47911;
  --aws-blue: #232f3e;
  --aws-blue-light: #37475a;
  --aws-gray: #566573;
  --aws-gray-light: #d5dbdb;
  --aws-gray-lighter: #eaeded;
  --aws-white: #ffffff;

  --background-1: var(--aws-blue);
  --background-1-transparent: rgba(35, 47, 62, 0.9);
  --background-2: var(--aws-blue-light);
  --background-3: #485766;
  --background-4: #5a6c7d;

  --foreground-1: var(--aws-white);
  --foreground-2: var(--aws-gray-light);

  --accent-1: var(--aws-orange);
  --accent-2: var(--aws-orange-dark);
  --accent-3: #ffb84d;
  --gradient: linear-gradient(135deg, var(--aws-orange) 0%, var(--aws-orange-dark) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  background: var(--background-1);
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--foreground-1);
}

h1 {
  font-size: 48px;
  line-height: 150%;
  font-weight: 500;
}

h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  line-height: 28px;
  color: var(--foreground-2);
  font-weight: 500;
}

p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 150%;
}

a {
  color: var(--foreground-1);
  font-weight: medium;
  transition: 120ms ease-out;
  text-decoration: none;
}

a:hover {
  color: var(--accent-3) !important;
}

button {
  font-family: 'IBM Plex Sans', sans-serif;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 10px;
  background: var(--background-2);
  border: none;
  color: var(--foreground-1);
  cursor: pointer;
  position: relative;
  top: 0;
  transition: box-shadow 120ms ease-out, top 120ms ease-out;
  font-weight: 500;
}

button:hover {
  background: var(--background-3);
  top: -2px;
  box-shadow: 0 8px 16px rgb(2 2 3 / 32%);
}

button:active {
  top: 1px;
  box-shadow: 0 8px 16px rgb(2 2 3 / 16%);
}

button.cta {
  background: var(--aws-orange);
  color: var(--aws-white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--aws-orange);
}

button.cta:hover {
  background: var(--aws-orange-dark);
  border-color: var(--aws-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

button {
  display: flex;
  align-items: center;
  gap: 8px;
}

button svg {
  opacity: 0.8;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 10px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 24px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 16px;
}

nav {
  display: flex;
  justify-content: center;
  padding: 16px 16px;
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--background-1-transparent);
  backdrop-filter: blur(20px);
  z-index: 2;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background-1-transparent);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 12px 24px;
  border-bottom: 1px solid var(--background-3);
}

.nav-inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav .left,
nav .right {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav .left .logo {
  width: 48px;
  height: 48px;
  background: var(--background-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .left .name {
  color: var(--foreground-1);
  font-weight: 500;
  font-size: 20px;
}

nav .left a {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav .left a svg {
  opacity: 0.7;
  transition: opacity 120ms ease-out;
}

nav .left a:hover svg {
  opacity: 1;
}

.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Demo Section */
.hero-demo {
  position: relative;
  padding: 120px 24px 80px;
  min-height: 100vh;
  overflow: hidden;
}

.network-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--background-1) 0%, var(--background-2) 100%);
  opacity: 0.8;
}

.network-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 153, 0, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text h1 {
  background: linear-gradient(135deg, var(--aws-orange) 0%, var(--aws-orange-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 24px;
}

.sub-tagline {
  font-size: 20px;
  color: var(--foreground-2);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

.text-link {
  color: var(--aws-orange);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.text-link:hover {
  border-bottom-color: var(--aws-orange);
}

.video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: scale(1.02);
}

.demo-preview {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 153, 0, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.play-overlay:hover {
  background: var(--aws-orange-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

.info-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.info-card {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 153, 0, 0.2);
}

.card-icon {
  color: var(--aws-orange);
  margin-bottom: 16px;
}

.info-card h3 {
  color: var(--foreground-1);
  margin-bottom: 12px;
  font-size: 20px;
}

.info-card p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.5;
}

.hero .header-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  background: linear-gradient(135deg, var(--aws-orange) 0%, var(--aws-orange-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
  line-height: 120%;
}

.features .grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.features .tile {
  width: 100%;
  height: 400px;
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.features .tile:hover {
  border-color: var(--aws-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.features .tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--aws-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features .tile:hover::before {
  opacity: 1;
}

.features .row .tile.small {
  width: 50%;
  flex-direction: column;
}

.features .row {
  display: flex;
  gap: 32px;
}

.features .tile .text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.features .row .tile.small .text {
  flex: revert;
}

.features .row .tile .media {
  background: var(--background-3);
}

.features .grid .tile.large .media {
  width: 600px;
  height: 340px;
  border-top-left-radius: 32px;
  margin-top: auto;
  background: var(--background-3);
}

.features .row .tile.small .media {
  width: calc(100% - 64px);
  flex: 1;
  border-radius: 32px 32px 0 0;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.feature-icon {
  color: var(--aws-orange);
  min-width: 24px;
}

.graph-visualization {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.node {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent-1);
}

.node.primary {
  width: 60px;
  height: 60px;
  background: var(--aws-orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.node.secondary {
  width: 40px;
  height: 40px;
  background: var(--background-4);
  top: 20%;
  right: 20%;
  animation: pulse 2s infinite 0.5s;
}

.node.tertiary {
  width: 35px;
  height: 35px;
  background: var(--background-4);
  bottom: 25%;
  left: 15%;
  animation: pulse 2s infinite 1s;
}

.connection {
  position: absolute;
  width: 2px;
  height: 120px;
  background: var(--aws-orange);
  top: 35%;
  left: 60%;
  transform: rotate(45deg);
  opacity: 0.6;
}

.connection-2 {
  position: absolute;
  width: 2px;
  height: 100px;
  background: var(--aws-orange);
  top: 55%;
  left: 35%;
  transform: rotate(-30deg);
  opacity: 0.6;
}

.demo-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .demo-screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .document-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 20px;
    height: 120px;
    position: relative;
    overflow: hidden;
  }

  .doc-header {
    background: rgba(255, 255, 255, 0.9);
    height: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: 60%;
  }

  .doc-line {
    background: rgba(255, 255, 255, 0.7);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 100%;
  }

  .doc-line.short {
    width: 70%;
  }

/* Call to Action */
.call-to-action {
  width: 100%;
  border-radius: 32px;
  background: var(--background-2);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.call-to-action .callout-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  max-width: 400px;
}

.call-to-action .callout-container .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 400px;
}

.call-to-action .callout-container .buttons button:not(.cta) {
  background: var(--background-3);
}

.call-to-action .callout-container .buttons button:not(.cta):hover {
  background: var(--background-4);
}

footer {
  background: var(--background-2);
  padding: 64px 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

footer .inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer .inner .column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .inner .column .logo {
  width: 48px;
  height: 48px;
  background: var(--background-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .inner .column .name {
  color: var(--foreground-1);
  font-weight: 500;
  font-size: 20px;
}

footer .inner .column a {
  color: var(--foreground-2);
}

footer .column p {
  color: var(--foreground-1);
  font-weight: 500;
}

/* Role Focus Styles */
.role-focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 8px 0 32px 0;
  width: 100%;
}

.role-focus h3 {
  color: var(--foreground-1);
  margin-bottom: 16px;
  text-align: center;
  font-size: 28px;
}

.companion-tagline {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--foreground-1);
  margin: 0 auto 32px;
  max-width: 700px;
  line-height: 1.5;
}

.companion-tagline strong {
  color: var(--aws-orange);
  font-weight: 700;
  font-size: 1.05em;
}

.focused-role-card {
  background: var(--background-2);
  border: 2px solid var(--aws-orange);
  border-radius: 16px;
  padding: 32px;
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.focused-role-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
}

.focused-role-card .role-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.role-content {
  flex: 1;
}

.role-content h4 {
  color: var(--foreground-1);
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.role-content p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ea-capabilities {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--background-3);
  border-radius: 12px;
  border: 1px solid var(--background-4);
  transition: all 0.2s ease;
}

.capability-item:hover {
  border-color: var(--aws-orange);
  background: var(--background-2);
}

.capability-item svg {
  color: var(--aws-orange);
  flex-shrink: 0;
}

.capability-item span {
  font-size: 14px;
  color: var(--foreground-2);
  font-weight: 500;
}

.impact-statement {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  background: rgba(255, 153, 0, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--aws-orange);
}

.coming-soon-badges {
  margin-top: 24px;
}

.coming-soon-badges .persona-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: flex-start;
}

.capability-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  padding: 24px;
  background: var(--background-3);
  border-radius: 16px;
  border: 1px solid var(--background-4);
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--background-2);
  border-radius: 12px;
  border: 1px solid var(--background-3);
  transition: all 0.3s ease;
}

.capability-item:hover {
  border-color: var(--aws-orange);
  background: var(--background-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  border: 2px solid rgba(255, 153, 0, 0.2);
  border-radius: 12px;
  color: var(--aws-orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  border-color: var(--aws-orange);
  transform: scale(1.1);
}

.capability-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.capability-text strong {
  color: var(--foreground-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.capability-text span {
  color: var(--foreground-2);
  font-size: 14px;
  line-height: 1.4;
}

.impact-statement {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0 0 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--aws-orange);
}

.impact-statement svg {
  color: var(--aws-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-statement p {
  margin: 0;
  color: var(--foreground-1);
  font-size: 16px;
  line-height: 1.5;
}

.impact-statement strong {
  color: var(--aws-orange);
  font-weight: 700;
}

.personas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-inactive {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  color: var(--foreground-2);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  border: 2px solid rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.1);
}

.badge-inactive:hover {
  border-color: var(--aws-orange);
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 153, 0, 0.08));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}

.badge-inactive svg {
  color: var(--aws-orange);
}

.coming-soon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--foreground-2);
  font-style: italic;
}

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

  .personas-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .capability-showcase {
    padding: 16px;
    gap: 12px;
  }

  .capability-item {
    padding: 12px;
    gap: 12px;
  }

  .capability-icon {
    width: 40px;
    height: 40px;
  }

  .capability-text strong {
    font-size: 15px;
  }

  .capability-text span {
    font-size: 13px;
  }

  .impact-statement {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .impact-statement p {
    font-size: 15px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Maturity Path Section */
.maturity-path {
  padding: 80px 24px;
  background: var(--background-1);
}

.maturity-path h2 {
  text-align: center;
  color: var(--foreground-1);
  font-size: 36px;
  margin-bottom: 16px;
}

.maturity-path .section-intro {
  text-align: center;
  color: var(--foreground-2);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.maturity-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.maturity-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
  z-index: 0;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.timeline-node {
  background: var(--background-2);
  border: 3px solid var(--aws-orange);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.timeline-node:hover {
  background: var(--aws-orange);
  transform: scale(1.1);
}

.node-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--aws-orange);
  line-height: 1;
}

.timeline-node:hover .node-number {
  color: white;
}

.node-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--foreground-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-node:hover .node-label {
  color: white;
}

.stage-tooltip {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.timeline-item:hover .stage-tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stage-tooltip h4 {
  color: var(--foreground-1);
  font-size: 16px;
  margin-bottom: 8px;
}

.stage-tooltip p {
  color: var(--foreground-2);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.tooltip-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.try-link, .prompt-link {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.try-link {
  background: var(--aws-orange);
  color: white;
}

.try-link:hover:not(.disabled) {
  background: var(--aws-orange-dark);
}

.prompt-link {
  background: transparent;
  color: var(--aws-orange);
  border: 1px solid var(--aws-orange);
}

.prompt-link:hover:not(.disabled) {
  background: var(--aws-orange);
  color: white;
}

.try-link.disabled, .prompt-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Agentic Maturity Journey */
.agentic-journey {
  padding: 48px 16px;
  background: linear-gradient(135deg, var(--background-1) 0%, var(--background-2) 100%);
}

.journey-intro {
  text-align: center;
  font-size: 18px;
  color: var(--foreground-2);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.journey-stage {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.journey-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--aws-orange) 0%, 
    var(--aws-orange-dark) 50%, 
    var(--aws-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.journey-stage:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 153, 0, 0.2);
}

.journey-stage:hover::before {
  transform: scaleX(1);
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.stage-number {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.pattern-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pattern-badge.tool {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

.pattern-badge.workflow {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}

.pattern-badge.graph {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
  border: 1px solid #9C27B0;
}

.pattern-badge.handoff {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid #FF9800;
}

.pattern-badge.swarm {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.pattern-badge.mcp {
  background: rgba(96, 125, 139, 0.2);
  color: #607D8B;
  border: 1px solid #607D8B;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: auto;
}

.status-badge.active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.status-badge.wip {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.status-badge.coming-soon {
  background: rgba(158, 158, 158, 0.2);
  color: #9E9E9E;
}

.stage-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.stage-content h3 {
  color: var(--foreground-1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stage-content p {
  color: var(--foreground-2);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.stage-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.try-agent-btn {
  background: var(--aws-orange);
  color: var(--aws-white);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.try-agent-btn:hover:not(.disabled) {
  background: var(--aws-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.view-prompts-btn {
  background: transparent;
  color: var(--aws-orange);
  border: 1px solid var(--aws-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-prompts-btn:hover:not(.disabled) {
  background: var(--aws-orange);
  color: var(--aws-white);
}

.try-agent-btn.disabled,
.view-prompts-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.journey-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--background-3);
}

.journey-footer p {
  color: var(--foreground-2);
  font-style: italic;
  font-size: 16px;
}

/* Multiplier Effect Section */
.multiplier-effect {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--background-2) 0%, var(--background-3) 100%);
}

.multiplier-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.multiplier-text h2 {
  color: var(--foreground-1);
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.multiplier-text p {
  color: var(--foreground-2);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.value-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  background: var(--background-1);
  border: 1px solid var(--background-3);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--aws-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.pillar-icon {
  color: var(--aws-orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.pillar-card h3 {
  color: var(--foreground-1);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.pillar-card p {
  color: var(--foreground-2);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Value Pillars */
.value-pillars-legacy {
  padding: 24px 16px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.pillar {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.pillar-icon {
  color: var(--aws-orange);
  margin-bottom: 16px;
}

/* Hero Section Role Focus */
.role-focus {
  margin-top: 48px;
  text-align: center;
}

.role-focus h3 {
  color: var(--foreground-1);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.focused-role-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.focused-role-card:hover {
  border-color: var(--aws-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.15);
}

.role-icon {
  flex-shrink: 0;
  color: var(--aws-orange);
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  border: 2px solid rgba(255, 153, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-content h4 {
  color: var(--foreground-1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.role-content p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.role-content p:last-of-type {
  margin-bottom: 24px;
}

.coming-soon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.coming-soon-badges .badge-inactive {
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  color: var(--foreground-2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 2px solid rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
}

.coming-soon-badges .badge-inactive:hover {
  border-color: var(--aws-orange);
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 153, 0, 0.08));
}

.coming-soon-text {
  font-size: 14px;
  color: var(--foreground-3);
  font-style: italic;
  margin-left: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .focused-role-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .coming-soon-badges {
    justify-content: center;
  }

  .coming-soon-text {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Enhanced Enterprise Architect Showcase */
.architect-showcase {
  padding: 80px 16px;
  background: linear-gradient(135deg, var(--background-1) 0%, var(--background-2) 100%);
  border-top: 1px solid var(--background-3);
  position: relative;
}

.architect-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 153, 0, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255, 153, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced Header Section */
.showcase-header {
  margin-bottom: 64px;
  text-align: center;
  position: relative;
}

.header-accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
  margin: 0 auto 32px;
  border-radius: 2px;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
}

.role-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 153, 0, 0.4);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 8px;
}

.headline-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-headline {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.headline-primary {
  color: var(--aws-orange);
  font-size: 1.1em;
  font-weight: 700;
}

.headline-secondary {
  color: var(--foreground-1);
  font-size: 1em;
  font-weight: 500;
}

/* Enhanced Capabilities Section */
.capabilities-section {
  margin-bottom: 64px;
}

.capabilities-intro {
  text-align: center;
  margin-bottom: 48px;
}

.capabilities-tagline {
  font-size: 20px;
  color: var(--foreground-2);
  font-weight: 500;
  margin: 0;
}

.capabilities-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.capability-card {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 153, 0, 0.2);
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-visual {
  margin-bottom: 20px;
}

.capability-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  border: 2px solid rgba(255, 153, 0, 0.2);
  border-radius: 16px;
  color: var(--aws-orange);
  transition: all 0.3s ease;
}

.capability-card:hover .capability-icon-wrapper {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  border-color: var(--aws-orange);
  transform: scale(1.1);
}

.capability-content h4 {
  color: var(--foreground-1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.capability-content p {
  color: var(--foreground-2);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Impact Showcase */
.impact-showcase {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 64px;
  text-align: left;
  transition: all 0.3s ease;
}

.impact-showcase:hover {
  border-color: var(--aws-orange);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.15);
}

.impact-visual {
  flex-shrink: 0;
}

.multiplier-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  border-radius: 50%;
  color: var(--aws-white);
}

.impact-content h3 {
  color: var(--foreground-1);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.impact-content p {
  color: var(--foreground-2);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.impact-content strong {
  color: var(--aws-orange);
  font-weight: 600;
}

/* Enhanced Personas Preview */
.personas-preview {
  text-align: center;
}

.personas-header {
  margin-bottom: 40px;
}

.personas-header h3 {
  color: var(--foreground-1);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.personas-subtitle {
  color: var(--foreground-2);
  font-size: 18px;
  font-style: italic;
  margin: 0;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.persona-card {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.persona-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 153, 0, 0.3), rgba(255, 153, 0, 0.1));
  border-radius: 16px 16px 0 0;
}

.persona-card:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.persona-card:hover::before {
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
}

.persona-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05));
  border: 2px solid rgba(255, 153, 0, 0.2);
  border-radius: 14px;
  color: var(--aws-orange);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.persona-card:hover .persona-icon {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  border-color: var(--aws-orange);
}

.persona-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.persona-title {
  color: var(--foreground-1);
  font-size: 18px;
  font-weight: 600;
}

.persona-focus {
  color: var(--foreground-2);
  font-size: 14px;
  font-style: italic;
}

.personas-footer {
  background: rgba(255, 153, 0, 0.05);
  border: 1px solid rgba(255, 153, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.value-proposition {
  color: var(--foreground-1);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .showcase-headline {
    font-size: 24px;
    gap: 12px;
  }

  .capabilities-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-showcase {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .personas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .role-badge {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Use Cases - Enterprise Architect Focus */
.use-cases {
  padding: 48px 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--foreground-2);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.primary-use-case {
  margin-bottom: 48px;
}

.use-case-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.use-case-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aws-orange), var(--aws-orange-dark));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge .badge-text {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content h3 {
  color: var(--foreground-1);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.hero-content p {
  color: var(--foreground-2);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--foreground-2);
  font-size: 16px;
}

.feature-icon {
  color: var(--aws-orange);
  min-width: 20px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-breakdown {
  margin-top: 64px;
}

.workflow-breakdown h3 {
  text-align: center;
  color: var(--foreground-1);
  font-size: 28px;
  margin-bottom: 48px;
}

.workflow-steps {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.multiplier-callout {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #e8f4fd 0%, #fff3e0 100%);
  border: 1px solid #ff9900;
  border-radius: 12px;
}

.multiplier-callout p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground-1);
}

.workflow-step {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  border-color: var(--aws-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.step-number {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--foreground-1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal[aria-hidden="false"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--background-1);
  border: 1px solid var(--background-3);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--foreground-2);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--background-2);
  color: var(--foreground-1);
}

/* Inspire Section */
.inspire {
  padding: 24px 16px;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.demo-video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.demo-video video {
  width: 100%;
  height: auto;
  display: block;
}

.demo-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* AI Advisory Section Styles */
.ai-advisory {
  padding: 32px 24px;
}

/* Section Separator */
.section-separator {
  position: relative;
  margin-top: 64px;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--aws-gray-light), transparent);
  opacity: 0.3;
}

/* SME Badge */
.sme-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.badge-text {
  background: linear-gradient(135deg, var(--aws-orange), var(--aws-orange-dark));
  color: var(--aws-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.advisor-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Expertise Pillars */
.expertise-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.pillar-item {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.pillar-item:hover {
  border-color: var(--aws-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.pillar-icon {
  color: var(--aws-orange);
  min-width: 48px;
  height: 48px;
  background: var(--background-3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.pillar-content h4 {
  color: var(--foreground-1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pillar-content p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.advisory-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.advisor-content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.6;
}

.advisor-content strong {
  color: var(--aws-orange);
  font-weight: 600;
}

.service-item {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--aws-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
}

.service-icon {
  color: var(--aws-orange);
  min-width: 48px;
  height: 48px;
  background: var(--background-3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.service-content h4 {
  color: var(--foreground-1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-content p {
  color: var(--foreground-2);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.advisor-closing {
  background: var(--background-2);
  border: 1px solid var(--background-3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.advisor-closing p {
  margin: 0;
  font-size: 18px;
}

.advisor-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .journey-timeline {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
  }

  .journey-stage {
    padding: 20px;
  }

  .stage-header {
    gap: 8px;
    margin-bottom: 12px;
  }

  .stage-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .pattern-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .stage-content h3 {
    font-size: 18px;
  }

  .stage-content p {
    font-size: 13px;
  }

  .stage-actions {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .try-agent-btn,
  .view-prompts-btn {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .journey-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    width: 100% !important;
    margin: 0 !important;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-case-card {
    padding: 24px;
  }

  .card-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .focused-role-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }

  .focused-role-card .role-icon {
    width: 64px;
    height: 64px;
  }

  .coming-soon-badges {
    justify-content: center;
    margin-top: 16px;
  }

  .use-case-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .hero-content h3 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-step {
    padding: 24px;
  }

  .carousel {
    padding: 16px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .advisory-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .expertise-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-item {
    padding: 20px;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .service-content p {
    font-size: 14px;
  }

  .advisor-content p {
    font-size: 16px;
  }

  .advisor-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .badge-text {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* Reduced spacing in main and section elements */