:root {
  font-family: "Ubuntu", sans-serif;
  --brand-green: #80d43e;
  --brand-green-dark: #5cad1c;
  --brand-green-soft: rgba(128, 212, 62, 0.16);
  --brand-red: #d34242;
  --brand-red-dark: #b72e2e;
  --page-bg: #ebf2ed;
  --surface-white: rgba(255, 255, 255, 0.94);
  --surface-white-strong: rgba(255, 255, 255, 0.98);
  --surface-border: rgba(255, 255, 255, 0.78);
  --surface-muted: rgba(34, 48, 64, 0.06);
  --text-default: #1f2d3d;
  --text-muted: #556476;
  --text-soft: #6f7d8c;
  --shadow-soft: 0 10px 28px rgba(18, 28, 40, 0.09);
  --shadow-strong: 0 18px 44px rgba(18, 28, 40, 0.16);
  --view-max-width: 1008px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --ui-tag-radius: 6px;
  --ui-tag-border: rgba(35, 47, 62, 0.16);
  --ui-tag-bg: rgba(35, 47, 62, 0.07);
  --ui-info-border: rgba(35, 47, 62, 0.14);
  --ui-info-bg: rgba(255, 255, 255, 0.78);
  --ui-info-radius: 6px;
  --ui-button-radius: 999px;
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Ubuntu-Regular.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/Ubuntu-Bold.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
  background: radial-gradient(circle at 8% 10%, #f6fbf3 0%, var(--page-bg) 36%, #dde9df 100%);
  color: var(--text-default);
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  color: var(--text-default);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  background: url("images/logo-bg.svg");
  background-repeat: no-repeat;
  background-size: min(74vw, 920px) min(74vh, 860px);
  background-position: 20vw 14vh;
  opacity: 0.07;
  inset: 0;
  position: fixed;
  z-index: -2;
  pointer-events: none;
}

/* FIXME: use these variables instead of hardoced colors */
.theme-light {
  --bg-color: "#EBF2ED";
  --primary-green: #80D43E;
  --primary-green-shade: "#80D43E88";
  --white: "#FFFFFF";
  --black: "rgb(34,34,34)";
  --error: "rgb(255, 30, 30)";
  --dark_grey: "#878787";
  --light_grey: "#bbbbbb";
  --light_grey_shade: "#bbbbbb88";
}

html,
body,
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.55rem 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.08rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.2rem, 1.85vw, 1.6rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.02rem, 1.42vw, 1.24rem);
  font-weight: 800;
}

h4,
h5 {
  font-size: 0.98rem;
  font-weight: 700;
}

p {
  margin: 0.28rem 0;
  color: #304154;
  font-size: 0.95rem;
  line-height: 1.52;
}

ul,
ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #2f3e4f;
}

a {
  color: #2b7c31;
  text-underline-offset: 2px;
}

a:hover {
  color: #1f5e26;
}

.root-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.spacer {
  flex-grow: 1;
}

.main-content {
  align-items: flex-start;
  justify-content: center;
  display: flex;
  width: min(var(--view-max-width), calc(100% - 1.4rem));
  margin-top: 0.95rem;
  margin-bottom: 0.95rem;
  padding: 0;
  gap: 1rem;
}

.main-text-content {
  align-items: flex-start;
  display: flex;
  width: min(var(--view-max-width), calc(100% - 1.4rem));
}

.content-card,
.text-card,
.info-card {
  width: 100%;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 243, 0.9));
  border: 1px solid var(--ui-info-border);
  box-shadow: 0 14px 30px rgba(18, 28, 40, 0.11);
  border-radius: 18px;
  padding: 1.12rem 1.16rem;
  backdrop-filter: blur(8px);
}

.content-card> :first-child,
.text-card> :first-child,
.info-card> :first-child {
  margin-top: 0;
}

.text-card p,
.info-card p,
.content-card p {
  color: #334456;
}

.legal-card {
  width: 100%;
  max-width: 100%;
  max-height: min(85vh, 980px);
  overflow-y: auto;
}

.legal-card.popup-container {
  max-width: var(--view-max-width);
}

.main-content .legal-card {
  margin: 0;
}

.visible {
  opacity: 1 !important;
}

.invisible {
  opacity: 0 !important;
}

code {
  font-family: "Ubuntu", sans-serif;
}

label {
  align-self: flex-start;
  color: var(--text-default);
  margin-bottom: 0.42em;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav {
  text-decoration: none;
}

.link {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a7b2f;
  text-decoration: underline;
  text-decoration-color: rgba(42, 123, 47, 0.35);
}

.link:hover {
  color: #1f5e26;
  text-decoration-color: rgba(31, 94, 38, 0.55);
}

.link-inline {
  margin-top: 0;
  display: inline;
}

form {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
}

.auth-login-form {
  gap: 0.55rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(128, 212, 62, 0.24);
  background-color: rgba(128, 212, 62, 0.09);
  color: #253344;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.52rem 0.65rem;
}

textarea {
  padding: 0.62rem 0.68rem;
  line-height: 1.38;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(128, 212, 62, 0.72);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 3px rgba(128, 212, 62, 0.14);
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  min-width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(38, 48, 62, 0.2);
  border: 1px solid rgba(38, 48, 62, 0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

input[type="checkbox"]::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease;
}

input[type="checkbox"]:checked {
  background: linear-gradient(160deg, var(--brand-green), var(--brand-green-dark));
  border-color: rgba(92, 173, 28, 0.6);
}

input[type="checkbox"]:checked::before {
  transform: translateX(19px);
}

input[type="radio"] {
  accent-color: var(--brand-green);
}

.basic-button {
  margin-top: 0.9em;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(160deg, var(--brand-green), var(--brand-green-dark));
  padding: 0.72rem 1.2rem;
  border-radius: var(--ui-button-radius);
  justify-content: center;
  align-items: center;
  display: inline-flex;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid rgba(92, 173, 28, 0.48);
  color: #fff;
  width: 100%;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(92, 173, 28, 0.25);
}

.basic-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(92, 173, 28, 0.32);
}

.basic-button.secondary {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 244, 0.92));
  border: 1px solid rgba(35, 47, 62, 0.2);
  color: #2b3b4c;
  box-shadow: 0 8px 18px rgba(18, 28, 40, 0.12);
}

.basic-button.secondary:hover {
  box-shadow: 0 12px 24px rgba(18, 28, 40, 0.16);
}

.basic-button.ghost {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(35, 47, 62, 0.2);
  color: #2b3b4c;
  box-shadow: none;
}

.basic-button.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
}

.basic-button.danger {
  background: linear-gradient(160deg, var(--brand-red), var(--brand-red-dark));
  border: 1px solid rgba(164, 35, 35, 0.5);
  color: #fff;
  box-shadow: 0 8px 18px rgba(164, 35, 35, 0.24);
}

.basic-button.danger:hover {
  box-shadow: 0 12px 24px rgba(164, 35, 35, 0.32);
}

.basic-button:disabled,
.disabled {
  opacity: 0.48;
  cursor: default;
  box-shadow: none;
  transform: none;
  filter: grayscale(0.15);
}

.circle-button {
  background: linear-gradient(160deg, var(--brand-green), var(--brand-green-dark));
  height: 3.85em;
  width: 3.85em;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  color: #fff;
  border-width: 0;
  box-shadow: 0 8px 18px rgba(92, 173, 28, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.circle-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(92, 173, 28, 0.3);
}

.popup-container {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 243, 0.9));
  border: 1px solid var(--ui-info-border);
  width: 100%;
  max-width: 680px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  margin: 0.7em;
  padding: 1.16rem !important;
  justify-content: flex-start;
  box-shadow: 0 20px 42px rgba(18, 28, 40, 0.16);
  backdrop-filter: blur(8px);
}

.input-container {
  width: 100%;
  padding: 1.06rem 1.08rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 243, 0.9));
  border: 1px solid var(--ui-info-border);
  box-shadow: 0 14px 30px rgba(18, 28, 40, 0.11);
  border-radius: 18px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.42rem;
}

.popup-container.input-container {
  max-width: 680px;
}

.auth-panel {
  width: min(560px, 100%);
}

.container {
  width: min(100%, var(--view-max-width));
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 0px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.checkbox-row label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-content,
.information-content {
  width: 100%;
}

.about-content,
.information-content,
.price-page {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.about-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.86rem;
}

.about-hero {
  position: relative;
  width: 100%;
  padding: clamp(0.96rem, 2.3vw, 1.28rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(140deg, #3f7320 0%, #558f2e 48%, #467b23 100%);
  box-shadow: 0 22px 44px rgba(24, 46, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.1)),
    radial-gradient(44% 58% at 83% 17%, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.about-eyebrow,
.profile-eyebrow,
.price-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.38rem 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
  color: #f4ffe8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.26rem 0.62rem;
}

.about-title,
.profile-title {
  position: relative;
  z-index: 1;
  margin: 0.04rem 0 0.24rem 0;
  color: #f7fff2;
  font-size: clamp(1.48rem, 2.7vw, 2.12rem);
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 4px 12px rgba(21, 43, 15, 0.22);
}

.about-lead,
.profile-lead {
  position: relative;
  z-index: 1;
  margin: 0.12rem 0 0.32rem 0;
  color: rgba(245, 253, 239, 0.92);
  max-width: 74ch;
  font-size: clamp(0.94rem, 1.18vw, 1.03rem);
  line-height: 1.52;
}

.about-quick-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.24rem;
}

.about-quick-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.44rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #f3ffec;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(20, 42, 15, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about-quick-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 11px 20px rgba(20, 42, 15, 0.3);
  color: #f3ffec;
}

.about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.about-panel {
  min-width: 0;
}

.about-grid .about-panel:nth-child(3) {
  grid-column: 1 / -1;
}

.about-section-copy {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  margin-bottom: 0.44rem;
}

.about-contact-link {
  width: fit-content;
  margin-top: 0.06rem;
  margin-bottom: 0.3rem;
  color: #2b7c31;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.about-contact-link:hover {
  color: #1f5e26;
}

.about-socials {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin-top: 0.15rem;
}

.about-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(35, 47, 62, 0.14);
  background: rgba(35, 47, 62, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4e5d6c;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-social-link.facebook {
  color: #1877f2;
}

.about-social-link.instagram {
  color: #d62976;
}

.about-social-link.youtube {
  color: #ff3c30;
}

.about-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(128, 212, 62, 0.38);
  box-shadow: 0 10px 20px rgba(18, 28, 40, 0.14);
}

.about-social-icon {
  width: 21px;
  height: 21px;
}

.about-link-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: 0.2rem;
}

.about-link-item {
  width: fit-content;
  border-radius: var(--ui-button-radius);
  border: 1px solid rgba(35, 47, 62, 0.14);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 244, 0.92));
  box-shadow: 0 8px 18px rgba(18, 28, 40, 0.12);
  padding: 0.4rem 0.78rem;
  color: #2b3b4c;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.about-link-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 28, 40, 0.16);
  color: #1f3142;
  border-color: rgba(128, 212, 62, 0.36);
  background: rgba(255, 255, 255, 0.96);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.25rem 0 0.7rem 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.additional-info-title {
  margin: 0;
}

.additional-info-subtitle {
  margin-top: 1.2rem;
}

.additional-info-subsubtitle {
  margin-top: 0.85rem;
  color: #2a3b4d;
}

.additional-info-description {
  color: #334456;
  line-height: 1.52;
}

.ui-info-box,
.popup-inline-help,
.price-empty-note {
  border-radius: var(--ui-info-radius);
  border: 1px solid var(--ui-info-border);
  background: var(--ui-info-bg);
}

.popup-inline-help {
  width: 100%;
  padding: 0.58rem 0.68rem;
}

.price-empty-note {
  width: fit-content;
  padding: 0.28rem 0.56rem;
}

.section-padding {
  padding-top: 0.15rem;
}

.sub-section-padding {
  padding-top: 0.65rem;
}

.price-page {
  width: 100%;
}

.premium-price-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
}

.price-hero {
  position: relative;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(140deg, #3f7320 0%, #558f2e 48%, #467b23 100%);
  box-shadow: 0 22px 44px rgba(24, 46, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
  padding: clamp(0.94rem, 2.2vw, 1.18rem);
}

.price-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.17), rgba(0, 0, 0, 0.1)),
    radial-gradient(44% 58% at 83% 17%, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.price-now-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-now-title {
  margin: 0;
  color: #f7fff2;
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.18;
}

.price-now-value {
  margin: 0.18rem 0 0 0;
  color: #ffffff;
  font-size: clamp(1.92rem, 4.2vw, 2.68rem);
  line-height: 1;
  font-weight: 900;
}

.price-now-value span {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 700;
  color: rgba(244, 253, 238, 0.92);
}

.price-now-meta {
  margin: 0;
  color: rgba(244, 253, 238, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
}

.price-summary-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.price-summary-card {
  min-width: 0;
}

.price-summary-title {
  margin: 0;
}

.price-summary-card .price-stat-row {
  margin-top: 0.12rem;
}

.price-summary-card .price-stat-chip {
  border-color: rgba(35, 47, 62, 0.14);
  background: rgba(35, 47, 62, 0.05);
}

.price-empty-note {
  margin-top: 0.36rem;
  color: #4a5b6f;
  font-size: 0.9rem;
}

.price-chart-card {
  width: 100%;
}

.price-chart-head {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.price-chart-head h3 {
  margin-bottom: 0;
}

.price-chart-head p {
  color: #4b5f74;
}

.price-graph-wrap-premium {
  margin-top: 0.55rem;
}

.price-loading-card {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-status-line {
  margin-top: 0.2rem;
  color: #2d3f53;
}

.price-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.price-stat-section h3 {
  margin-bottom: 0.35rem;
}

.price-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.price-stat-chip {
  border-radius: var(--ui-tag-radius);
  border: 1px solid rgba(35, 47, 62, 0.15);
  background: rgba(35, 47, 62, 0.06);
  padding: 0.28rem 0.58rem;
  color: #2d3f52;
  font-size: 0.86rem;
  font-weight: 700;
}

.price-graph-wrap {
  margin-top: 0.85rem;
  width: 100%;
}

.profile-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 0.75rem;
}

.profile-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.86rem;
}

.profile-hero {
  position: relative;
  width: 100%;
  padding: clamp(0.96rem, 2.3vw, 1.26rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(140deg, #3f7320 0%, #558f2e 48%, #467b23 100%);
  box-shadow: 0 22px 44px rgba(24, 46, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.1)),
    radial-gradient(44% 58% at 83% 17%, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.profile-hero-copy {
  position: relative;
  z-index: 1;
}

.profile-hero-status {
  position: relative;
  z-index: 1;
  border-radius: var(--ui-tag-radius);
  padding: 0.26rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #f7fff2;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

.profile-hero-status.confirmed {
  border-color: rgba(128, 212, 62, 0.46);
  background: rgba(128, 212, 62, 0.18);
}

.profile-hero-status.unconfirmed {
  border-color: rgba(255, 219, 124, 0.5);
  background: rgba(255, 219, 124, 0.16);
}

.device-online-pill,
.device-role-badge,
.device-type-badge,
.device-mode-badge,
.device-state-pill,
.price-stat-chip,
.landing-eyebrow,
.about-eyebrow,
.profile-eyebrow,
.price-eyebrow,
.profile-hero-status {
  border-radius: var(--ui-tag-radius) !important;
}

.profile-email-card {
  border-left: 4px solid rgba(128, 212, 62, 0.65);
}

.profile-email-value {
  margin: 0.12rem 0;
  color: #1f3040;
  font-size: 1rem;
  font-weight: 800;
}

.profile-email-state {
  margin-top: 0.08rem;
  margin-bottom: 0.26rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-email-state.confirmed {
  color: #2a7d29;
}

.profile-email-state.unconfirmed {
  color: #865f1f;
}

.profile-verify-form {
  margin-top: 0.2rem;
}

.profile-stack .input-container {
  width: 100%;
}

.profile-panel {
  width: 100%;
}

.profile-panel-danger {
  border-left: 4px solid rgba(211, 66, 66, 0.65);
}

#error-page {
  width: min(var(--view-max-width), calc(100% - 1.2rem));
  margin: 1.2rem auto;
  background: var(--surface-white-strong);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
}

#error-page h1 {
  margin-bottom: 0.35rem;
}

#error-page p {
  margin: 0.25rem 0;
}

.footer-bar {
  width: 100%;
  align-items: center;
  display: flex;
  padding: 1.6rem 1rem 1.9rem 1rem;
  justify-content: center;
  color: #516172;
}

.footer-bar h5 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-link {
  font-size: 1em;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid var(--brand-green);
  opacity: 1;
  width: 100%;
  border-radius: 50%;
  animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }

  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

input[type="submit"] {
  font-size: 1em;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}

input[type="number"] {
  font-size: 1em;
}

.selection {
  width: 100%;
}

.selection__value-container {
  padding-left: 17px !important;
  padding-right: 17px !important;
}

.selection__input {
  height: 38px !important;
}

.selection__menu {
  margin: 4px !important;
  z-index: 30 !important;
}

@media screen and (min-width: 1100px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: var(--view-max-width);
  }
}

@media screen and (max-width: 900px) {
  .price-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .price-summary-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-hero-status {
    white-space: normal;
  }
}

@media screen and (max-width: 700px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-content {
    width: 100%;
    margin-top: 0.65rem;
    margin-bottom: 0.7rem;
    padding: 0 0.25rem;
  }

  .about-hero,
  .price-hero,
  .profile-hero {
    border-radius: 16px;
    padding: 0.8rem 0.85rem;
  }

  .about-title,
  .profile-title {
    font-size: 1.34rem;
  }

  .about-lead,
  .profile-lead {
    font-size: 0.9rem;
  }

  .about-quick-link {
    font-size: 0.78rem;
    padding: 0.34rem 0.62rem;
  }

  .price-now-title {
    font-size: 1.12rem;
  }

  .price-now-value {
    font-size: 1.78rem;
  }

  .price-now-meta {
    font-size: 0.8rem;
  }

  .about-social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .about-social-icon {
    width: 18px;
    height: 18px;
  }

  .popup-container {
    margin: 0.45rem;
    padding: 0.92rem !important;
    max-height: 92vh;
    overflow-y: auto;
  }

  .input-container {
    width: 100%;
    margin: 0;
    padding: 0.86rem;
  }

  .basic-button {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .circle-button {
    width: 3.2em;
    height: 3.2em;
  }

  .footer-bar {
    padding: 1.2rem 0.8rem 1.5rem 0.8rem;
    text-align: center;
  }
}
