:root {
  --midnight: #071a2f;
  --deep-teal: #0b3a3f;
  --teal: #10605d;
  --ivory: #fffaf0;
  --paper: #f8f3e8;
  --ink: #102027;
  --muted: #596d70;
  --gold: #dca95f;
  --green: #17b26a;
  --amber: #f79009;
  --red: #d92d20;
  --line: rgba(16, 32, 39, 0.12);
  --shadow: 0 22px 70px rgba(7, 26, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma,
    Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  background:
    radial-gradient(circle at 18% 8%, rgba(220, 169, 95, 0.22), transparent 28%),
    linear-gradient(135deg, var(--midnight), var(--deep-teal) 60%, #08242b);
  color: var(--ivory);
}

.light-header {
  background: var(--midnight);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  color: rgba(255, 250, 240, 0.86);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.96rem;
  line-height: 1.45;
}

.nav-links a:hover,
.site-footer a:hover {
  background: rgba(255, 250, 240, 0.1);
  color: var(--ivory);
}

.hero {
  min-height: 680px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding: 68px max(24px, calc((100vw - 1120px) / 2)) 92px;
  background:
    radial-gradient(circle at 84% 18%, rgba(23, 178, 106, 0.24), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(30, 107, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--midnight), var(--deep-teal) 58%, #06272d);
  color: var(--ivory);
}

.hero-content {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.button.primary {
  background: var(--gold);
  color: #151007;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.28);
  color: var(--ivory);
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.phone-card {
  width: min(330px, 74vw);
  aspect-ratio: 0.49;
  padding: 18px;
  border-radius: 44px;
  background: linear-gradient(160deg, #061522, #123d3d);
  border: 1px solid rgba(255, 250, 240, 0.16);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  position: relative;
}

.phone-top {
  width: 104px;
  height: 26px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
}

.scan-panel {
  min-height: calc(100% - 48px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.97), rgba(248, 243, 232, 0.92)),
    var(--ivory);
  color: var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.scan-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.scan-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.status-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(23, 178, 106, 0.12);
}

.risk-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.risk-row span {
  height: 8px;
  border-radius: 999px;
}

.risk-row span:nth-child(1) {
  background: var(--green);
}

.risk-row span:nth-child(2) {
  background: var(--amber);
}

.risk-row span:nth-child(3) {
  background: var(--red);
}

.section,
.page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.feature-card,
.content-panel {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 170px;
  padding: 24px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--deep-teal);
  font-size: 1.35rem;
}

.feature-card p,
.page-hero p,
.content-panel p,
.clean-list {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.trust-section {
  padding-top: 24px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-list p {
  margin: 0;
  min-height: 112px;
  padding: 20px;
  border-radius: 8px;
  background: var(--midnight);
  color: var(--ivory);
  border: 1px solid rgba(220, 169, 95, 0.22);
}

.page-main {
  padding: 56px 0 88px;
}

.page-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.content-panel {
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 20px;
}

.content-panel h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--deep-teal);
  font-size: 1.35rem;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.clean-list {
  margin: 0;
  padding: 0 20px 0 0;
}

.clean-list li {
  margin-bottom: 8px;
  padding-inline-start: 2px;
}

.inline-link {
  color: var(--teal);
  font-weight: 800;
}

.notice,
.placeholder-box {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(220, 169, 95, 0.14);
  border: 1px solid rgba(220, 169, 95, 0.38);
  color: #6d4a12;
  font-weight: 700;
}

.placeholder-box {
  background: rgba(16, 96, 93, 0.08);
  border-color: rgba(16, 96, 93, 0.24);
  color: var(--deep-teal);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: var(--midnight);
  color: rgba(255, 250, 240, 0.78);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media (max-width: 860px) {
  .nav-shell,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-shell {
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero-visual {
    justify-content: center;
  }

  .card-grid,
  .trust-list,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .trust-list p {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    width: min(100% - 24px, 1120px);
    min-height: auto;
  }

  .nav-links a,
  .site-footer a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 36px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: clamp(1.72rem, 8.5vw, 2.4rem);
    line-height: 1.24;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .section,
  .page-main {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 58px 0;
  }

  .page-main {
    padding: 38px 0 64px;
  }

  .button {
    width: 100%;
  }

  .phone-card {
    width: min(270px, 72vw);
    padding: 14px;
    border-radius: 36px;
  }

  .phone-top {
    width: 86px;
    height: 20px;
    margin-bottom: 16px;
  }

  .scan-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .scan-panel strong {
    font-size: 1.22rem;
  }

  .feature-card {
    min-height: auto;
    padding: 20px;
  }

  .content-panel {
    padding: 22px;
  }

  .site-footer {
    padding-inline: 16px;
  }
}


/* Aman AI bilingual website and policies — August 2026 */

.language-link {
  white-space: nowrap;
  font-weight: 700;
}

.phone-card {
  overflow: hidden;
}

.app-preview {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.4rem 1.1rem 1.2rem;
  text-align: start;
}

.app-preview-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.app-preview-brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.app-preview-brand div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.app-preview-brand strong {
  color: #031f25;
  font-size: 1rem;
}

.app-preview-brand span {
  color: #67777b;
  font-size: 0.72rem;
}

.app-preview-intro {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-top: 0.35rem;
}

.app-preview-intro span {
  color: #67777b;
  font-size: 0.75rem;
}

.app-preview-intro strong {
  color: #031f25;
  font-size: 1.05rem;
}

.app-preview-actions {
  display: grid;
  gap: 0.44rem;
}

.app-preview-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 66px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #dce7e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 31, 37, 0.06);
}

.app-action-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: #ddf5ef;
  color: #062b2f;
  font-size: 0.85rem;
  font-weight: 800;
}

.app-preview-action div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.app-preview-action strong {
  color: #031f25;
  font-size: 0.92rem;
}

.app-preview-action small {
  color: #67777b;
  font-size: 0.7rem;
}

.app-preview-outcome {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.app-preview-result-title {
  color: #031f25;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.app-preview-indicator {
  display: flex;
  direction: ltr;
  gap: 0.35rem;
}

.app-preview-indicator span {
  height: 10px;
  flex: 1 1 0;
  border-radius: 999px;
}

.risk-red { background: var(--red); }
.risk-amber { background: var(--amber); }
.risk-green { background: var(--green); }

.app-preview-result {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin-top: 5px;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: #062b2f;
}

.app-preview-result small {
  color: #d7e5e6;
  font-size: 0.66rem;
}

.app-preview-result strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.legal-shell {
  display: block;
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 20px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.legal-card h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--deep-teal);
  font-size: 1.35rem;
}

.legal-card:first-child h2 {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.legal-card ul {
  margin-block: 0.8rem 0;
  padding-inline-start: 1.4rem;
}

.policy-updated {
  color: #67777b;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

html[dir="ltr"] .hero-content,
html[dir="ltr"] .page-hero,
html[dir="ltr"] .legal-card {
  text-align: left;
}

.aman-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

html[dir="ltr"] .app-preview {
  direction: ltr;
}

@media (max-width: 760px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-preview {
    min-height: 500px;
  }

  .app-preview-intro {
    padding-top: 0;
  }

  .app-preview-actions {
    gap: 0.3rem;
  }
}

@media (max-width: 520px) {
  .aman-main {
    width: min(100% - 24px, 1120px);
    padding: 38px 0 64px;
  }

  .legal-shell {
    padding: 22px;
  }
}
